PUZZLE #3930: Birthday Paradox (diff 1)
The Birthday Paradox: in a group of N = 16 people, what is the probability that at least two share a birthday? P = 1 - (365/365) × (364/365) × ... × ((365-N+1)/365). Round to integer percentage. Percentage mod 26 → letter.
DATA
| N |
16
|
| Days In Year |
365
|
| Hint |
Compute P(no match) = ∏ (365-i)/365 for i=0..15 = 0.716396. P(match) = 1 - 0.716396 = 0.283604 = 28%. 28 % 26 = 2 → 'c'.
|
| Answer Format |
single lowercase letter
|
author's note: Pool fill: birthday-paradox diff 1
— website sponsored —
[ ad space ]