I came upon a problem where you're asked the probability of scoring 10 or higher in three dice(fair, six-sided) rolls.
The solution I found was 2/9, which was correct according to the source of the problem, but getting that answer required me to work through all possible cases. I hoped the solution provided by my resource would show how to get the answer in a simpler way but it did the same thing(and so did several other resources I've found online). But that brute force method of solving this problem is unsatisfying to me, and inelegant insofar as it can't be extended to intractably large numbers of rolls.
I've been enjoying taking my probability problems and writing python scripts that can calculate them for more general cases. In this case, I'd be calculating the probability of a total score S after n rolls. I want to learn how one would solve this problem without using brute force.
Thanks in advance, been learning a ton from perusing this website!
Edit: Every answer provided has been tremendously useful to me and I am very grateful for everyone's effort. I realize now that I have reworded the original problem incorrectly.
The exact wording of the original problem is: "Your game piece is on the starting space, and the finish is 10 more spaces away. During each of your turns, you roll a fair six-sided die, and move that many spaces forward. However, if the result would put you past the finish, you do not move. What is the probability that you will reach the finish in 3 or fewer turns?"
In addition to still puzzling over the problem that I intended to ask about, I am now very interested in studying the problem I've inadvertently asked about, and I'm also now trying to work out exactly why my rephrasing was incorrect.
Again, thanks to everyone who responded, I cannot adequately express how much I appreciate the collective knowledge and generosity of this community.
Let us consider the expansion of $(x^6 + x^5 + x^4 + x^3 + x^2 + x)^3$. When I calculate this I get
$$x^{18}+3x^{17}+6x^{16}+10x^{15}+15x^{14}+21x^{13}+25x^{12}+27x^{11}+27x^{10}+25x^{9}+21x^{8}+15x^{7}+10x^{6}+6x^{5}+3x^{4}+x^{3}$$
This says to me there are 10 ways to choose three items in $(1,2,3,4,5,6)$ which sum to 15, since the coefficient $10$ is the number of ways to form the product $x^{15}$ from the product of $x^a x^b x^c = x^{a+b+c}$ where $a, b, c \in [1,6]$.
Is this brute force?
This expression tells us that there is a $\frac{1 + 3 + 6 + 10 + 15 + 21 + 25 + 27}{6^3} = \frac{5}{8}$ chance of getting a sum of 10 or more.