lizarton
- 13
- 0
Consider a dial having a pointer that is equally likely to point to each of n region numbered 1,2,...,n. When we spin the dial three times, what is the probability that the sum of the selected numbers is n?
I have to use summations, and I'm sure binomial coefficients. I believe that this is a selection; it seems to imitate rolling an n-sided die three times, but I even have trouble computing that problem.
The total number of outcomes is n^3 (I think)
I started counting ordered triples of some n terms...
n=3: There is only one way, {(1,1,1)}
n=4: There are 3 ways, {(1,2,1),(1,1,2),(2,1,1)}
n=5: There are 6 ways, {(1,1,3),(1,2,2),(1,3,1),(2,1,2,),(2,2,1),(3,1,1)}
n=6: There are 10 ways...
n=7: 15 ways...
For arbitrary n, you can start making ordered triples...
(1,1,n-2)<br /> (1,2,n-3)<br /> (1,3,n-4)<br /> \ldots<br /> (1,n-2,1)<br /> (1,n-3,2)<br /> \ldots<br />
A Theorem I believe is relevant:
With repetition allowed, there are \left(\stackrel{n+k-1}{k - 1}\right) ways to select n objects from k types. This also equals the number of nonnegative integer solutions to x_{1} + \ldots + x_{k} = n.
My problem is identifying n and k in these problems. Any help would be greatly appreciated!
I have to use summations, and I'm sure binomial coefficients. I believe that this is a selection; it seems to imitate rolling an n-sided die three times, but I even have trouble computing that problem.
The total number of outcomes is n^3 (I think)
I started counting ordered triples of some n terms...
n=3: There is only one way, {(1,1,1)}
n=4: There are 3 ways, {(1,2,1),(1,1,2),(2,1,1)}
n=5: There are 6 ways, {(1,1,3),(1,2,2),(1,3,1),(2,1,2,),(2,2,1),(3,1,1)}
n=6: There are 10 ways...
n=7: 15 ways...
For arbitrary n, you can start making ordered triples...
(1,1,n-2)<br /> (1,2,n-3)<br /> (1,3,n-4)<br /> \ldots<br /> (1,n-2,1)<br /> (1,n-3,2)<br /> \ldots<br />
A Theorem I believe is relevant:
With repetition allowed, there are \left(\stackrel{n+k-1}{k - 1}\right) ways to select n objects from k types. This also equals the number of nonnegative integer solutions to x_{1} + \ldots + x_{k} = n.
My problem is identifying n and k in these problems. Any help would be greatly appreciated!