Assume the Earth is a perfect sphere with a radius of exactly 4,000 miles. 100 points are randomly selected on the surface. What is the probability that no two points are within 100 miles of each other?
2007-06-13
16:21:41
·
4 answers
·
asked by
Anonymous
in
Science & Mathematics
➔ Mathematics
You all have hit on the twist in this question: It sounds like the birthday problem, but the complication is that areas will overlap whenever two points are less than 200 miles apart. I don't know how to get the answer when you factor that in - wanted to see if someone here did.
A question I could pose that sounds more like the birthday problem but has the same wrinkle: in a classroom with 10 students, what are the odds no two students have a birthday within two days of each other? Again, there is that packing issue: two students born on June 1 and June 4 are three days apart, but two days overlap.
2007-06-14
00:47:01 ·
update #1
Zanti in Math Land: The Adventure Continues...
So anyway, as I was thinking about this problem, I suddenly got a revelation on how to factor in overlapping areas: Do the "birthday problem" calculation again, except double the radius. If there are no points within 200 miles of each other, there can be no overlap. More importantly, the Poisson distribution I was using can be applied to find the approximate odds of exactly n pairs of points within 200 miles of each other. Then, for example, once I have calculated the odds of there being exactly one set of points within 200 miles of each other, I can get the odds that these same two points are within 100 miles of each other by multiplying the answer by 3/4 -- given a circle with radius = 2n, then the outer ring of the circle from n to 2n makes up 3/4 of the area. So, this is the formula I came up with
P(0) + P(1) * 3/4 + P(2) * (3/4)² + P(3) * (3/4)³ + ...
= ∑ P(n) * (3/4)^n for n = 0 → ∞
(cont.)
2007-06-14
12:17:07 ·
update #2
... where P(k) is the probability of exactly k points within 200 miles of each other.
As previously said, the P(k) formula I was using came from an application of Poisson distribution for the birthday problem. That formula is:
P(k) = λ^k / e^λ * k!, where k is the number of hits and λ is the ratio calculated for any Poisson distribution. In this case, λ = (100 * 99 / 2 ) * 200² / (4 * 4000²) = 3.09375. (Notes: 100 * 99 / 2 is the combination of 2 items from a group of 100; 200² = radius of the circles; 4 * 4000² = surface area of the Earth.) So, we can rewrite the summation as:
= (1/e^λ) * ∑ ((λ^n) / n! * (3/4)^n) for n = 0 → ∞
Finally, substituting the 3.09375 value calculated for λ and simplifying, we end up with
.0453 * ∑ (2.3203)^n / n! for n = 0 → ∞
2007-06-14
12:18:11 ·
update #3
So, I think I have the answer and do the calculation -- and, to my astonishment, I get 46%, essentially the same value blahb calculated WITHOUT considering overlaps! So, now I am trying to figure out where I messed up, and then it occurs to me: with only 100 relatively small circles on a relatively large sphere, the amount of overlapping areas will be a small fraction of the total area occupied by the 100 circles. In other words, factoring in the overlapping area does not change the answer significantly, just a fraction of 1%. My correction to Blahb's "primitive" approach doesn't change the answer significantly. It still comes out 46%.
2007-06-14
12:18:40 ·
update #4