A fair die is tossed twice. We want to find the probability of getting a sum of at least 10.
2025/4/11
1. Problem Description
A fair die is tossed twice. We want to find the probability of getting a sum of at least
1
0.
2. Solution Steps
Let the outcome of the two tosses be , where and are integers from 1 to
6. The total number of possible outcomes is $6 \times 6 = 36$. We want to find the number of outcomes where $x + y \ge 10$. We can enumerate the possible outcomes:
\begin{itemize}
\item If , then , so . The outcome is .
\item If , then , so . The outcomes are .
\item If , then , so . The outcomes are .
\end{itemize}
These are all the possible outcomes where the sum is at least
1
0. The total number of such outcomes is $1 + 2 + 3 = 6$.
The probability of the sum being at least 10 is the number of favorable outcomes divided by the total number of possible outcomes:
.
3. Final Answer
D.