Recall, with the birthday problem, with 23 people, the odds of a shared birthday is APPROXIMATELY .5 (correct?)
P(no sharing of dates with 23 people) = $$\frac{365}{365}*\frac{364}{365}*\frac{363}{365}*...*\frac{343}{365} $$
$$= \frac{365!}{342!}*\frac{1}{365^{23}} $$
I want to do this multiplication, but nothing I have can handle it. How can I know for sure it actually is around .5 ?
$$\frac{365!}{342!}*\frac{1}{365^{23}} = .5$$
You can certainly do this in Excel, and here's how you would do it:
$$\begin{array}{|c|c|c|c|} \hline & \text{A} & \text{B} & \text{C} \\ \hline 1 & 365 & \text{=A1} & \text{=B1/A1} \\ 2 & \text{=A1} & \text{=B1-1} & \text{=B2/A2} \\ 3 & \text{=A2} & \text{=B2-1} & \text{=B3/A3} \\ 4 & \text{=A3} & \text{=B3-1} & \text{=B4/A4} \\ \vdots & \vdots & \vdots & \vdots \\ 23 & \text{=A22} & \text{=B22-1} & \text{=B23/A23} \\ \hline & & & \text{=PRODUCT(C1:C23)} \\ \hline \end{array}$$ This shows the formulas you need to enter into the respective cells. You start with entering
365into A1, then type in=A1into cells A2 and B1. Next, type in the formula=B1-1into B2, and=B1/A1into C1. Next, copy down all the formulas up to row 23. Column C then computes each ratio in your original expression, and=PRODUCT(C1:C23)computes the product.