Here's the problem:- We are given 3 alike dice and (this problem had multiple parts when I tried it, Here I am taking only one scenario) it is said that we will win the game if the sum of numbers appearing on the dice is less than 11(strictly).We are given only a single throw(in which you throw all 3 alike dice together). We are required to find the probability that we win.
Here is how I approached the problem.Lets 1st of all assume that the dice arn't alike but distinct so the 3 dice can show numbers like (113),(131),(311)
Then I thought that "simply because you cant distinguish between the dice doesn't mean that occuring of of the sum 5 should include only 113 and 122. ie the probability that the sum 5 occurs shouldn't be simply 2/216"
That made me realize that I should treat the dice as distinct
So I went ahead with this idea of treating dice as distinct. This follows that I should calculate all possible combinations of nubers on 3 dices with sum less than 11. hence only possilibilties of sum is {3,4,5...10}
to calculate this i used beggars method:-
$$x_1+ x_2+x_3 =y$$ where $y\subset{3,4,5...10}$ and $x_1,x_2,x_3$ are all greater than 1
solving this for all y in the set yeilds:-
$${9\choose2}+{8\choose2}+{7\choose2}+{6\choose2}+{5\choose2}+{4\choose2}+{3\choose2}+{2\choose2}$$
Ok so this yeilds${10\choose3}$=120 ie the total no of ways =120 hence probability =120/216. But it comes out be 1/2. Kindly tell where am i wrong.
I don’t understand where you’re getting the various $\binom k2$ components of your summand, but there are a couple of different ways to approach the problem. The easiest is to use symmetry. Note that for each die, $n_i$ and $7-n_i$ are equally likely. Thus, $\sum n_i$ and $21-\sum n_i$ are equally likely. That means the numbers $3$ through $10$ and the numbers $11$ through $18$ are equally likely, and those two cases exhaust the sample space, so your probability must be $\frac 12$.
Alternatively, the number of solutions in positive integers of $n_1+n_2+n_3 \leq 10$ with each $1 \leq n_i \leq 6$ is the same as the number of solutions in non-negative integers of $m_1+m_2+m_3 \leq 7$ with each $m_i \leq 5$, which is the same as the number of solutions with $m_i \leq 5$ of $m_1+m_2+m_3+z=7$. Use stars-and-bars to see that there are $\binom{10}{3}=120$ unconstrained solutions to this equation.
From this, you have to subtract the number of solutions for which $m_i \geq 6$ for some $i$. It’s easy to see that for each $i$ there are $4$ “forbidden” solutions, for a total of $4 \cdot 3=12$. Thus, the total number of permissible solutions is $120-12=108$, which is exactly half of $216$.
It looks like you may have overlooked the constraint that no single die can give a result greater than $6$.