Folks,
When I started this blog, my intent was that it be “friendly.” However, being a person who is concerned with math literacy, I feel obliged to point out what I believe are math mistakes, in media articles where the writer should know better or the editor should check the work.
Some time ago I pointed out an error in Discover Magazine and even one from Marilyn Vos Savant, who is claimed to have the world’s highest IQ.
Well, this time Discover seems to have an error that is “not even wrong.” This is a moniker given by Wolfgang Pauli to something that is worse than wrong.
So on to the error. On page 12 of Discover’s November 2007 issue, under the title “Fuzzy Math,” author Dickinson talks about how long one could expect to live if all disease and aging were eliminated. He argues that one would still be subject to accidents and since the chance is 1/1743 (0.0005737 or 0.05737%) of dying in accidents each year, that on average one would live to 1743 years old.
Many people would assume that if 0.05737% of these immortal folks would die each year in accidents, that in two years 2 × 0.05737% = 0.11475% would be dead, and 0.1721% in three years etc. For the average age, one would need to calculate in how many years 50% be dead: X years x 0.05737% = 0.50 => X years = 871.5. While this approach is quite accurate for a few years, the answer is wrong when calculated out to 871.5 years. It is also one half of Dickinson’s answer. Dickinson’s answer is “not even wrong.” It appears he just inverted the 1/1743.
How do we know the 871.5 year answer is wrong? Well, we could ask the question, “What percent of people will be dead in 2000 years and we find that the approach above would say 2000 × 0.05737 = 114.74%!
The correct approach is to first ask: “What fraction of people will survive each year? Answer: 1-0.0005737 = 0.9994263. In two years 0.9994263^2 =0.998853 survive, etc. To find the average (actually the median) life we need to solve for X: 0.9994236^X = 0.5. By taking the logarithm of both sides, we find X is 1207.86 years.
The graph above shows that fraction surviving as a function of age. Note that even at 3000 years, almost 20% survive.
Cheers,
Dr. Ron


Mr Mean:
Dr Lasky,
As stated in your post, you’ve computed the median. This is one possible interpretation of the word “average.” I would argue, though, that a more common interpretation of the word “average” is “mean.” For example, what if I asked you for the average of the following numbers: 1, 2, 3, 4, 100? Would you answer 3, which is the median? Or, would you answer 22, which is the mean?
Dickenson has, in fact, correctly stated the mean (or expected value). To compute the expected value of a random variable, we multiply each possible outcome by the probability
of that outcome and take the sum of the products. For example, if we have a population in which 20% of the people make $10/hr, 70% make $20/hr, and 10% make $30/hr, the mean
income for the population is:
0.2*10 + 0.7*20 + 0.1*30
So to compute the mean age at which someone would die, we have to figure out all of the possible ages at which they could die, multiply each age by the probability of dying
at that age, and add up the products.
Year 1 is easy enough. There’s a 1/1743 chance that the person dies, so we multiply that
by 1 and get:
1/1743 * 1
Year 2 isn’t so bad. To die in year 2, first they have to survive year 1. The probability of that is 1742/1743. Then, they have a 1/1743 chance of dying. So for year 2, we have
(1742/1743) * (1/1743) * 2
For year 3, they have to survive years 1 and 2, and die in year 3. So we have:
(1742/1743)^2 * (1/743) * 3
And in year 4:
(1742/1743)^3 * (1/1743) * 4
In general, the probability of dying in year y is:
(1742/1743)^(y-1) * 1/1743
multiplying by the year gives us:
(1742/1743)^(y-1) * 1/1743 * y
So, now we just have to add all of products. This gets a little ugly, because there are an infinite number of things to add. We have:
sum[y=1->inf] ( (1742/1743)^(y-1) * (1/1743) * y )
Assuming you don’t do binomial expansions every day, it might be easier to estimate the solution to this rather than solve it exactly. Here is some perl code do do that. It only considers the people who live less than 1000000 years. Since only 0.<247 zeros go here>580511580314418 percent of the people are still alive at 1000000 years, this is a pretty good estimate.
————————————- #!/usr/bin/perl
$tot=1000000;
$base=1743;
$avg=0;
$stillalive=1;
for($i=1; $i<$tot; $i++) { $avg+=(1/$base)*$stillalive*$i; $stillalive*=($base-1)/$base;
}
print “avg $avgn”;
————————————-
For the sake of completeness, we can use the following:
1/(1-1/x)^2=1+2/x+3/x^2+4/x^3+5/x^4+...
which I found here:
http://www.jimloy.com/algebra/series.htm
to solve the equation exactly.
So we rewrite:
sum[y=1->inf] ( (1742/1743)^(y-1) * (1/1743) * y )
as
(1/1743) * ( sum[y=1->inf] ( (1742/1743)^(y-1) * y ) ) )
let x=1743/1742:
(1/1743) * ( sum[y=1->inf] ( y/x^(y-1) ) )
or
(1/1743) * (1+2/x+3/x^2….)
The equation from jimloy.com tells us the sum of the series, so we have:
(1/1743) * 1/(1-1/x)^2
plugging 1743/1742 back in for x:
(1/1743) * 1/(1-1/(1743/1742))^2
(1/1743) * 1/(1-1742/1743)^2
(1/1743) * 1/(1/1743)^2
(1/1743) * 1743^2
1743
I was going to comment that this seems like a bit more work than your statement “It appears he just inverted the 1/1743.” implies. However, if we went back through the math and used 1/p instead of 1/1743, we’d get a mean of p. So, in this type of problem, you can just invert the probability to get the mean. You won’t get many points for showing your work, though.
So, assuming Dickinson means mean, then the solution is not only not not even wrong, but also not wrong.
Mr Mean:
It looks like I am a failure at pasting. This line of his perl code:
print “avg $avgn”;
is missing a character. If you make it:
print “avg $avgn”;
the script will work a lot better.
Ron Lasky:
Mr. Mean,
You are correct. I solve the problem folling your lead for 50,000 years using Excel.
I will print a correction soon, after I clean the egg off of my face and let my recent posting have time to be read.
Thanks for your time and effort. My assumption that the author simply took the inverse of 1/1743 was wrong and unfair to him. I also assumed (wrongly) that the median and mean would be close in value.
Well, my hope is that we all learned something.
Thanks again,
Dr. Ron
Mr Mean:
I noticed this in the post:
“Some time ago I pointed out an error in Discover Magazine and even one from Marilyn Vos Savant, who is claimed to have the world’s highest IQ.”
Actually, I believe both the earlier Discover article, and Marilyn Vos Savant are correct. I posted comments at:
http://www.indium.com/drlasky/entry.php?mode=add&id=506
and
http://www.indium.com/drlasky/entry.php?mode=add&id=510
describing why I believe this.