Skip to main content

Healthcare: How much does that test cost?

I recently had some blood tests ordered by a doctor. She sent me across the street to the "lab" to have blood drawn and sent off. But before they took the blood, I was curious how much the tests were going to cost me. Here is a slightly paraphrased version of the inane conversation I had:

Me: "Will my insurance cover this?"
Phlebotomist/Receptionist: "I don't know."
Me: "Umm.... Could you check please?"
Phlebotomist/Receptionist: "Well, I won't know if it's covered until I send it off to the insurance company."
Me: "Okay. Could you call them and ask?"
Phlebotomist/Receptionist: "No."
Me: (trying to get an upper bound) "Uhh.... Okay. How much would they cost out of pocket?"
Phlebotomist/Receptionist: "I don't know. We'll see when the insurance company gets back to me."
Me: "So you're saying that I might have to pay an infinite amount of money out of pocket for these blood tests?"
Phlebotomist/Receptionist: "Well, no, some of it is probably covered."

I eventually got her to go through her papers and find the actual cost of the blood tests so I could determine an upper bound on what I'd have to pay.

The moral of the story is that it's extremely unclear how much medical procedures cost in America (and even more unclear what your insurance company is going to cover, which you often don't know until after you've already had the procedure done and incurred the liability for the expense). The fact that it takes so much trouble and effort to figure out how much you've paid for healthcare is one of the reasons why healthcare sucks so much in this country. If it were easy to see how much things cost before you had them done, with a comparison chart for how much that same test/procedure costs in other practices, hospitals, states, and even countries, then maybe we'd be a bit more adamant about demanding cheaper health care. This data, in addition to the comparative outcomes data that Orszag is pushing, seem to be prerequisites for any meaningful reforms.

Addendum: The receptionist, after prodding, said the maximum I would possibly pay was about $228, which was the cost of the tests. I just got the statements from my insurance company. The tests came to over $700, of which I had to pay about $100 or so. Basically, the incentive here is for the lab to maximize what they can get from the insurance company. The end result is that the lab company makes a fortune, the doctor who prescribes the tests probably also gets paid a lot, the consumer (me) has to pay way more than necessary, and the cost to the health care system as a whole is ginormous.

Comments

Popular posts from this blog

Why Korean Is Hard For Native English Speakers

A couple of days ago, as an experiment, I wrote my first blog post ever in a non-English language . It was an attempt to explain some of the reasons that Korean is hard to learn for native English speakers, so I figured I might as well try to write it in Korean. Those of you who actually read Korean can see how awkward the attempt was =). In any case, the post came from an email conversation I had with The Korean from  Ask a Korean , a fantastically well-written blog about all things Korea from the perspective of a Korean who moved to the United States during high school. Since I tend to geek out on language things, I figured I might as well post part of that conversation. An edited version follows. --------- Out of the languages that I've attempted to learn so far, Korean has been the hardest. I've done a lot of meta thinking about learning Korean, and I think there are a number of reasons it's difficult for non-Koreans (and especially Westerners) to learn: 1) Obvi...

10 other things South Korea does better than anywhere else

Recently this article about 10 things that South Korea does better than anywhere else  has been making the rounds on social media, but when I first read it, I couldn't tell if it was sincere or satire. A few of the items on the list are not very positive, such as "overworking" and "using credit cards". So, I thought I would try to put together a better list. Here are 10 other things South Korea does better than anywhere else: 1) Small side dishes, a.k.a. " banchan " (반찬) Banchan are by far my favorite aspect of Korean cuisine. Rather than the "appetizer and main dish" approach of the West, a Korean meal is essentially built around small dishes. Even a 5,000 won (about $5 USD) meal at a mall food court will come with two to four banchan in addition to the "main", and often people will actually choose restaurants based  on the banchan (e.g., seolleongtang , or beef bone broth soup, places tend to have the tastiest kimchi). Ther...

Pushing Python Performance With Parallelization

TL;DR: For certain types of programs, you can take advantage of idiosyncrasies in the Python interpreter and the host operating system to create real shared memory between processes and get some pretty good parallelization. Premature optimization is the root of all evil. As a developer, you've probably heard this before, and what it means basically is that you shouldn't waste time optimizing code unless it's already doing what you want it to do. We also live in an era of seemingly unlimited resources with AWS/Google Compute, and often the easiest way to get higher throughput in your programs or service is just to pay for more instances. But sometimes it's fun to see what sort of performance we can get on a simple laptop (and save some cash at the same time). So anyway ... I've been working on this thing, and it took too damn long to run, and I needed to run it lots and lots of times ... so, it was time to optimize. Basic optimization has two main steps: 1) P...