- #1
blondii
- 31
- 0
Homework Statement
Consider a die. What is the probability that the 10th number that comes up is the 3rd unique number of the entire throw.
Eg: a throw that could be considered a success is the throw which is represented by the set
{1,2,1,1,1,1,1,1,1,3} Where the 3 unique numbers would be: {1,2,3}
Let
N = Number of attempts (in this case number of throws)
K = Number of items to select from (in this case 6 because its a die).
S = Number of similar or repetitive items (In the eg case the repetitive number is 1).
R = Number of unique items to choose from (In the eg case it is 3, i.e {1,2,3})
NcS = N combination S (Ways of selecting S things from N different things)
Homework Equations
The equations below I just quickly thought up. Don't know if they hold for this case or not but please do correct me.
S = N - R + 1
The Attempt at a Solution
Note: Some formulas below I just quickly thought up. Don't know if I am correct or not but please do let me know otherwise.
I have included explanations of how i am using the formulas in my answers. But the actual numerical answer is at the bottom so please scroll down if you just want to view and confirm if my answer is correct or not.
Number of ways of selecting a sample of N items which contains R unique items:
(NcS)x(K-1)xK
--------------------------------
Explanation for my formula:
NcS - The number of ways of selecting S (repetitive) and N-S (unique) combinations from N things
(NcS)x(K-1) - From the NcS different arrangements a repetitive item can be arranged, there are (K-1) things that are unique. Thus (NcS)x(K-1) gives the total number of ways a particular repetitive item can be arranged with the different (K-1) item combinations.
(NcS)x(K-1)xK - From the (NcS)x(K-1) different ways (which holds for a single case), there is a possibility of K different combinations of items that can be repetitive. Thus (NcS)x(K-1)xK takes into account the K different items.
------------------------------------------
Number of ways of selecting a sample where the Nth item is the R'th Unique item:
-------------------------------------
Variable Declaration
S = (N - 1) - (R - 1) + 1
-------------------------------------
thus
((N - 1)cS)x(K-1)x(K)x(K+1-R)
-------------------------------------
Explanation of Variable S and Formula
S = (N - 1) - (R - 1) + 1 - Number of repetitive items in the (N-1) item list. (N-1) because the list excludes the N'th item.
((N - 1)cS)x(K-1)x(k)x(K+1-R) - Because the N'th item selected is the R'th unique item, we multiply ((N - 1)cS)x(K-1)x(k) by the remaining (K+1-R) different possible unique items that are left to be selected as the N'th item (thus added to the end of the already selected (N-1) items.
-------------------------------------
Solutions
N = 10
K = 6
R = 3
S = (N - 1) - (R - 1) + 1 = 7
((N - 1)cS) = 9c7 = 36
K^N = 6^10 = 60466176
((N - 1)cS)x(K-1)x(K)x(K+1-R) = (36)(5)(6)(4) = 4320
Therefore the probability that the 10th number that comes up is the 3rd unique number of the entire throw is:
((N - 1)cS)x(K-1)x(K)x(K+1-R) / K^N = 4320 / 60466176 = 7.144 x 10^-5
Please can someone confirm this answer or tell me if I'm going in the right direction. I would appreciate any suggestions to another possible solutions if mine is not correct.
Cheers