Re: Harold plays a game in which he starts with $2. Each game has 2 rounds
[#permalink]
12 Jun 2021, 01:20
The starting amount is 2$. At the beginning of round 1, there are 4 cases possible as the amount gets added or multiplied by 1 or 0.
Adding by 1: 3$
Adding by 0: 2$
Multiplying by 1: 2$
Multiplying by 0: 0$
The amount at the beginning of round 1 would be {3, 2, 2, 0}.
At the beginning of round 2, each of the above 4 cases would have its own 4 cases.
When the amount is 3$,
Adding by 1: 4$
Adding by 0: 3$
Multiplying by 1: 3$
Multiplying by 0: 0$
So, the array is {4, 3, 3, 0}
Repeating the steps for the other 3 cases, the respective arrays would be:
{3, 2, 2, 0}
{3, 2, 2, 0}
(1, 0, 0, 0}
Now, we take the average of all these cases. There would be 16 elements.
\(\frac{(4+3+3+0+3+2+2+0+3+2+2+0+1+0+0+0)}{16}\) = \(\frac{25}{16}\) = 1.5625
So, the answer is (D) 1.50$ and 2$
P.S. This solution is very lengthy and I can't think of any shortcut to solve this.