February 2020
Beginner
621 pages
19h 34m
English
Suppose there are 23 people in a room. What is the probability that at least two have the same birthday?
SOLUTION
The probability that no two have the same birthday is (note that the product stops at , not ). Subtracting from 1 gives the probability that at least two have the same birthday:
>> 1-prod( 1 - (1:22)/365)ans =0.5073
Suppose a lazy phone company employee assigns telephone numbers by choosing random seven-digit numbers. In a town with 10,000 phones, what is the probability that two people receive the same number?
>> 1-prod( 1 - (1:9999)/10^7)ans =0.9933
Note that the number of phones is about three times the square root of the number of possibilities. ...
Read now
Unlock full access