The question I am working through states:
Three digits are selected at random from the digits 1 through 10, without replacement. Find the probability that at least 2 digits are prime.
I feel as though I am close, but not quite hitting the mark with my solution:
My total number of selections would be $10C3$, and there are 4 prime numbers to pick from $\{2,3,5,7\}$.
Since I'm looking for at least 2 prime numbers, that means I am looking for the probability that I select 2, or 3 prime numbers.
So, I have \begin{align*} \textrm{P(2 prime numbers)} & \ or\ \textrm{P(3 prime numbers)}\\ \frac{4C2}{10C3} & + \frac{4C3}{10C3}\\ &= \frac{1}{12} \end{align*}
Should I instead be looking for the compliment? I feel as though it would be just as complex and not really save me any time [1-P(0 or 1 primes)].
Edit to add new solution (looks better!): \begin{align*} \textrm{P(2 prime numbers)} & \ or\ \textrm{P(3 prime numbers)}\\ \frac{4C2 \times 6C1}{10C3} & + \frac{4C3}{10C3}\\ &= \frac{1}{3} \end{align*}