Solutions#

Let’s get our combinations formula:

combin <- function(n, k) {
    return(factorial(n) / ( factorial(k)*factorial(n-k) )) }
  1. A raffle is held by the UNG student government association to draw for a horseback riding trip in the mountains worth a 1,000 dollars. Two thousand tickets are sold at 1 dollar each. Find the expected value and standard deviation of purchasing one ticket.

Solution. If 2,000 tickets are sold and one winner is drawn, the probability of winning is given by:

\[P(\text{win})=\frac{1}{2000}\]

We must pay a dollar whether we lose or win, so the expected value calculation is as follows:

\[\begin{split}\begin{align}E(X) &= (-1)\left(\frac{1999}{2000}\right) + (1000)\left(\frac{1}{2000}\right)\\\\&=\frac{-1999+1000}{2000}\\\\&=-\frac{999}{2000}\end{align}\end{split}\]

For the standard deviation, note that:

\[\begin{split}\begin{align}V(X) = E(X^2) - E(X)^2 &= \left[(-1)^2\left(\frac{1999}{2000}\right) + (1000)^2\left(\frac{1}{2000}\right)\right] - \left(\frac{99801}{4000000}\right)\\\\&=\frac{1999+1000000-99801}{4000000}\\\\&=\frac{902198}{4000000} \approx 0.22555\end{align}\end{split}\]

Then, we have:

\[\sigma_X = \sqrt{\frac{902198}{4000000}}\approx 0.47492\]
  1. You draw 1 card from a standard, well-shuffled deck of playing cards. If you pick a heart, you win 10 dollars. If you pick a face card which is not a heart, you win 8 dollars. If you pick any other cards, you lose 6 dollars. Do you want to play this game?

  2. A game consists of flipping two coins. If both coins turn up heads, you win $1.00. What is a “fair” price to pay to play?

  3. A game consists of rolling a colored die with three green sides, two red sides, and one blue side. A roll of a red loses. A roll of blue pays 6 dollars. A roll of green pays 2 dollars. What is a fair price to pay to play?

  4. At the racetrack, Daryl to enter his horse in a stakes race. He believes that the horse has a 1/20 chance of winning, a 1/10 chance of finishing second, and a 1/4 chance of finishing third. If first pays 5 thousand dollars, second pays 3,500 dollars and third pays 2,500 dollars, should Daryl enter his horse in the race?

  5. A raffle sells 847 tickets at five dollars per ticket for five prizes of 50 dollars, 1oo dollars, 150 dollars, 200 dollars and 500 dollars. What is the expected value of buying tickets, in dollars?

  6. A game consists of rolling a colored die with two red sides, one blue side, and three green sides. A roll of red loses, a roll of blue wins 6 dollars, and a roll of green allows another roll. A player is allowed no more than three rolls. What is a fair price to pay to play?

  7. Assume a person pays 1 dollar to play the following game. Four coins are tossed. If all coins show the same (e.g. all 4 heads or all 4 tails), the player wins 6 dollars. Otherwise, the player loses. Find the expected value for this game.