Gravitational Attraction
What would happen if two people out in space a few meters apart, abandoned by their spacecraft, decided to wait until gravity pulled them together? My initial thought was that …
In a [previous post][] I described the Monty Hall problem, and noted that a simulation can often lead to clarity of thinking on tough probability problems. I take another example here, in two steps, and throw analysis and simulation at it and possibly a bit of intuition.
I was first introduced to this problem from Leonard Mlodinow's "The Drunkard's Walk: How Randomness Rules Our Lives" and immediately "fell for the trap". The problem exists in two parts, the first (easy) part followed by the second (hard) part. The easy part is as follows:
Say you know a family has two children, and further that at least one of them is a girl. What is the probability that they have two girls?
An easy way to do this is to list out the possibilities:
so you end up with 1 chance out of 3, or p=0.33. The hard part is the following: > Say you know a family has two children, and further that at least one > of them is a girl named Florida. What is the probability that they > have two girls? >
At first I didn't think it would make any difference. How could knowing the name of the child change the chances for two girls? So I didn't believe the author (at first) that the chances were even, p=0.5, for the family to have two girls. Again we can list off the possibilities:
Since the last point is very rare (two girls named the same rare name?) we can ignore it, and we can also see that there are now two Girl-Girl possibilities with one named Florida, rather than just one, so it essentially gets two votes. Thus, we get p=0.5. Now, when I see something like this I worry. Yes, it's intuitive (once you see it) but I've seen slight-of-hand counting of the possibilities before. I don't trust it unless I can do two things:
As for the simulation (I post the code below) I get:
Probability for a girl to be named Florida: 0.01Total number of families with two children: 1000000999862 girls (0.499931 of children)249745 both girls (0.249745)750117 families with girls (0.750117)249745 both girls (0.332941) given families with girls10084 families with a girls named florida4997 both girls (0.495537) given families with girl named florida
The formal analysis gets interesting, because I want to understand how
the frequency, *f*, of the name affects the probability of having two
girls. If it is a rare name (*f* \~ 0) then I should get p=0.5. For a
common name (*f* \~ 1) then I should get p=1/3. Not that with *f*=1 then
the word "name" is a little odd because all girls have it, so one might
think of it as a label (like "has a nose"). First some notation:
![8C429ED4-C97A-42F4-B427-4FCE878E249D.jpg][]
Applying Bayes theorem to the easy problem, we get:
![EA082732-B226-4D70-B9B0-5B88943EA579.jpg][]
The hard problem is set up like:
![D99FFC2B-0B77-4F3A-8B6D-C8640CA94738.jpg][]
It is clear that *p({L1g}|2g)=1* whereas *p({L1g},F|2g)=1* is not: given
that we have 2 girls, we definitely have at least one girl, but we need
not have at least one girl named Florida. Breaking the second term up we
get
![5B40FEDB-02C8-4803-93E3-E05B4D8E42A5.jpg][]
Now we have
![BB5BFD58-9E43-44C4-B3F1-B075AC680225.jpg][]
It is easy to check that it has the right limits:
![A4B10902-407C-4BDE-9AC4-A565F17E0FB6.jpg][]
I'm not sure if there is a better way to address this problem, but the
analysis and simulation agree, and further we have a very simple form
for how the probability depends on the frequency of the known label
(e.g. Florida).
Code for simulation
-------------------
from pylab import *
from numpy import *
# 2 daughter problem
num_families=1000000
num_children_per_family=2
f_girls=0.5
f_florida=0.01
print "Probability for a girl to be named Florida: ",f_florida
print "Total number of families with two children: ",num_families
child_types=['boy','girl']
families=[ (child_types[randint(2)],child_types[randint(2)]) for x in range(num_families)]
names=[]
for f in families:
if f[0]=='boy':
name1='Bob'
else:
name1='Florida' if rand()