Maybe related to this question
In the comments of this question they say that it gets easier if the variables are identically and independently distributed.
But i don't see how because in my case the variable is discrete
Here is my problem :
I toss 4 dice and keep the 3 best results. What is the expected value of the result ?
I think tossing 4 dice and keep the 3 best is like tossing 4 dice and removing the minimum.
- Let X be the result of a standard die.
- Let Y be tossing 4 dice and keeping the 3 best
Is that correct : E(Y)=4∗E(X)−E(min) ?
So how calculate E(min) ?
I know if the variable was uniform on [0,1] I could have started with FY=1−(1−FX)p where p is the number of dice I toss, but here the variable is discrete so i don't know where to start.
Generalization :
How to calculate the expected value of k realizations of a discrete random variable in [0-n]?
It's been a while since i studied probability, so my basic calculation may be wrong. Also,
English is not my mother tongue, so please forgive my mistakes.
edit : spelling mistakes
Answer
For clarity, suppose that the dice have ID numbers 1,2,3,4. Let Xi be the result on die i. Let Y be the sum of the three largest of the Xi, and let W be the minimum of the Xi.
Then Y=X1+X2+X3+X4−W. By the linearity of expectation, it follows that
E(Y)=E(X1)+E(X2)+E(X3)+E(X4)−E(W).
The linearity of expectation is a very useful result. Note that linearity always holds: independence is not required.
The expectation of the minimum can be calculated by first finding the distribution of the minimum W.
The minimum is 1 unless the dice all show a number ≥2. The probability of this is 1−(56)4. We rewrite this as 64−5464.
The minimum is 2 if all the dice are ≥2 but not all are ≥3. The probability of this is 54−4464/
The minimum is 3 if all results are ≥3 but not all are ≥4. This has probability 44−3464.
And so on. Now use the ordinary formula for expectation. We get that the expectation of W is
164(1(64−54)+2(54−44)+3(44−34)+4(34−24)+5(24−14)+6(14−04)).
We leave you the task of computing. Before computing, simplify!
Generalization: Suppose we toss k "fair" (n+1)-sided dice, with the numbers 0 to n written on them. For i=1 to k, let Xi be the number showing on the i-th die. Let S be the sum of the dice. Then S=X1+⋯+Xk. The expectation of Xi is 0+1+⋯+nn+1. By the usual expression for the sum of consecutive integers, E(Xi)=n2 and therefore E(S)=kn2.
The analysis of the minimum W goes along the same lines as the earlier one. The probability that the minimum is j is (n+1−j)k−(n−j)k(n+1)k. If we use the ordinary formula for expectation, and simplify, we find that
E(W)=1k+2k+⋯+nk(n+1)k.
A nice way to find E(W): The following is a useful general result. Let X be a random variable that only takes non-negative integer values. Then
E(X)=∞∑i=1Pr(X≥i).
We apply that to the case of the random variable W which is the minimum of X1,…,X4. The probability that W≥i in that case is (7−i)k6k.
The same procedure works for the more general situation you asked about.
No comments:
Post a Comment