I here will first describe my approach.
Approach:
As the question asks for the computation of the probability for a win- to get a perfect 100 by rolling a fair die ‘n’ no of times, my approach is to start the computation of the two factors: win and loss, from the points where it begins to matter- and becomes countable, and this point is when the value of the sum becomes 94.
When the sum is 94, the probability to win is 1/6 by getting a 6Φ; the probability to lose is 0. When the sum is 95, then the probability to win is 1/6, again by getting a 5Φ (I am excluding the redundant counts- as the sum of smaller value, like (‘1’,’1’,’1’,’1’,’1’), (‘2’,’1’,’2’), (‘4’,’1’), etcetera.), and the probability to lose is 1/6, by getting a ‘6’. Similarly, for sum equivalent to 96, the probability to win is also 1/6, by getting a 4Φ, and the probability to lose is 2/6 (by getting a ‘5’ or ‘6’); for 97, the probability to win is again 1/6 by getting a 3 Φ, and the probability to lose is 3/6 (by getting any one among ‘4’,’5’,’6’); for 98, the probability to win is 1/6 as well by getting a 2Φ, and that to lose is 4/6 (be it with either of ‘3’,’4’,’5’,’6’). When the sum is 99, there is just one value which can assure a win- by getting a ‘1’ in the next roll, and thus the probability for a win is 1/6; any other resultant leads to a disappointing defeat, be it with ‘2’,’3’,’4’,’5’ or ’6’, and thus, the probability to lose is 5/6.
When accumulated and calculated, the probability for a win is as follows.
Total chances for a win= 1/6 + 1/6 + 1/6 + 1/6 + 1/6 + 1/6= 1 = P(w)
Total chances for a loss= 0 + 1/6 + 2/6 + 3/6 + 4/6 + 5/6 = 15/6 = P(l)
Thus probability is = (P(w))/(P(w)+ P(l)) = 1/(1+15/6 ) = 1/(21/6) = 6/21 = 2/7 = 0.2857142857142857
Legends:
Φ: individually or as a sum of smaller numbers in any permutation.
Any feedback is welcome. Thanks.