Difference between revisions of "2023 AIME I Problems/Problem 6"

(Clarified solution (thanks to spencerdanese).)
(Solution 5 (Pseudo-recursion))
 
(14 intermediate revisions by 8 users not shown)
Line 1: Line 1:
== Problem 6 ==
+
== Problem ==
 
Alice knows that <math>3</math> red cards and <math>3</math> black cards will be revealed to her one at a time in random order. Before each card is revealed, Alice must guess its color. If Alice plays optimally, the expected number of cards she will guess correctly is <math>\frac{m}{n},</math> where <math>m</math> and <math>n</math> are relatively prime positive integers. Find <math>m+n.</math>
 
Alice knows that <math>3</math> red cards and <math>3</math> black cards will be revealed to her one at a time in random order. Before each card is revealed, Alice must guess its color. If Alice plays optimally, the expected number of cards she will guess correctly is <math>\frac{m}{n},</math> where <math>m</math> and <math>n</math> are relatively prime positive integers. Find <math>m+n.</math>
  
==Solution==
+
== Solution 1 (Casework) ==
We break the problem into stages, one for each card revealed, then further into cases based on the number of remaining unrevealed cards of each color. Since [[expected value]] is linear, the expected value of the total number of correct card color guesses across all stages is the sum of the expected values of the number of correct card color guesses at each stage; that is, we add the probabilities of correctly guessing the color at each stage to get the final answer.
+
We break the problem into stages, one for each card revealed, then further into cases based on the number of remaining unrevealed cards of each color. Since [[expected value]] is linear, the expected value of the total number of correct card color guesses across all stages is the sum of the expected values of the number of correct card color guesses at each stage; that is, we add the probabilities of correctly guessing the color at each stage to get the final answer (See https://brilliant.org/wiki/linearity-of-expectation/)
  
 
At any stage, if there are <math>a</math> unrevealed cards of one color and <math>b</math> of the other color, and <math>a \geq b</math>, then the optimal strategy is to guess the color with <math>a</math> unrevealed cards, which succeeds with probability <math>\frac{a}{a+b}.</math>
 
At any stage, if there are <math>a</math> unrevealed cards of one color and <math>b</math> of the other color, and <math>a \geq b</math>, then the optimal strategy is to guess the color with <math>a</math> unrevealed cards, which succeeds with probability <math>\frac{a}{a+b}.</math>
Line 49: Line 49:
 
At this point, only <math>1</math> card remains, so the probability of guessing its color correctly is <math>1</math>.
 
At this point, only <math>1</math> card remains, so the probability of guessing its color correctly is <math>1</math>.
  
 +
In conclusion, the expected value of the number of cards guessed correctly is <cmath>\frac{1}{2} + \frac{3}{5} + \frac{3}{5} + \frac{7}{10} + \frac{7}{10} + 1 = \frac{5+6+6+7+7+10}{10} = \frac{41}{10},</cmath> so the answer is <math>41 + 10 = \boxed{051}.</math>
  
 +
~OrangeQuail9
  
 +
== Solution 2 (Casework) ==
  
 +
At any point in the game, Alice should guess whichever color has come up less frequently thus far (although if both colors have come up equally often, she may guess whichever she likes); using this strategy, her probability of guessing correctly is at least <math>\frac{1}{2}</math> on any given card, as desired.
  
In conclusion, the expected value of the number of cards guessed correctly is <cmath>\frac{1}{2} + \frac{3}{5} + \frac{3}{5} + \frac{7}{10} + \frac{7}{10} + 1 = \frac{5+6+6+7+7+10}{10} = \frac{41}{10},</cmath> so the answer is <math>41 + 10 = \boxed{051}.</math>
+
There are <math>{6 \choose 3} = 20</math> possible orderings of cards, all equally likely (since any of the <math>6! = 720</math> permutations of the cards is equally likely, and each ordering covers <math>3!^2 = 6^2 = 36</math> permutations).
 +
 
 +
Each of the <math>10</math> orderings that start with red cards corresponds with one that starts with a black card; the problem is symmetrical with respect to red and black cards, so we can, without loss of generality, consider only the orderings that start with red cards.
 +
 
 +
We then generate a tally table showing whether Alice's guesses are correct for each ordering; for a given card, she guesses correctly if fewer than half the previously shown cards were the same color, guesses incorrectly if more than half were the same color, and guesses correctly with probability <math>\frac{1}{2}</math> if exactly half were the same color.
 +
 
 +
In this table, <math>\mid</math> denotes a correct guess, <math>\--</math> denotes an incorrect guess, and <math>/</math> denotes a guess with <math>\frac{1}{2}</math> probability of being correct.
 +
 
 +
[[Image:Alice's_Tally_Table_(2023_AIME_I_Problem_6).png|center|250px]]
 +
 
 +
Now we sum the tallies across orderings, obtaining <math>41</math>, and finally divide by the number of orderings (<math>10</math>) to obtain the expected number of correct guesses, <math>\frac{41}{10}</math>, which yields an answer of <math>41 + 10 = \boxed{051}.</math>
 +
 
 +
~IndigoEagle108
 +
 
 +
==Solution 3 (Dynamic Programming)==
 +
 
 +
Denote by <math>N \left( a, b \right)</math> the optimal expected number of cards that Alice guesses correctly, where the number of red and black cards are <math>a</math> and <math>b</math>, respectively.
 +
 
 +
Thus, for <math>a, b \geq 1</math>, we have
 +
<cmath>
 +
\begin{align*}
 +
N \left( a, b \right)
 +
& = \max \left\{
 +
\frac{a}{a+b} \left( 1 + N \left( a - 1 , b \right) \right)
 +
+ \frac{b}{a+b} N \left( a , b - 1 \right) , \right. \\
 +
& \hspace{1cm}
 +
\left.
 +
\frac{a}{a+b} N \left( a - 1 , b \right)
 +
+ \frac{b}{a+b} \left( 1 + N \left( a , b - 1 \right) \right)
 +
\right\} .
 +
\end{align*}
 +
</cmath>
 +
 
 +
For <math>a = 0</math>, Alice always guesses black. So <math>N \left( 0 , b \right) = b</math>.
 +
 
 +
For <math>b = 0</math>, Alice always guesses red. So <math>N \left( a , 0 \right) = a</math>.
 +
 
 +
To solve this dynamic program, we can also exploit its symmetry that <math>N \left( a , b \right) = N \left( b , a \right)</math>.
 +
 
 +
By solving this dynamic program, we get
 +
<math>N \left( 1, 1 \right) = \frac{3}{2}</math>, <math>N \left( 1, 2 \right) = \frac{7}{3}</math>, <math>N \left( 1 , 3 \right) = \frac{13}{4}</math>, <math>N \left( 2 , 2 \right) = \frac{17}{6}</math>, <math>N \left( 2 , 3 \right) = \frac{18}{5}</math>, <math>N \left( 3, 3 \right) = \frac{41}{10}</math>.
 +
 
 +
Therefore, the answer is <math>41 + 10 = \boxed{\textbf{(051) }}</math>.
 +
 
 +
~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)
 +
 
 +
==Solution 4 (Simplification of Solution 3)==
 +
Denote by <math>N_{i,j}</math> the optimal expected number of cards that Alice guesses correctly, where the number of cards are <math>i</math> and <math>j \ge i.</math>
 +
 
 +
If <math>i = 0</math> then Alice guesses correctly all cards, so <math>N_{0,j} = j.</math>
 +
 
 +
If <math>j = i</math> then Alice guesses next card with probability  <math>\frac {1}{2} \implies N_{i,i} = \frac {1}{2} + N_{i-1,i}.</math>
 +
 
 +
If <math>j = i+1</math> then Alice guesses next card with probability <math>\frac {i+1}{2i+1} \implies N_{i,i+1} = \frac {i+1}{2i+1} (1+ N_{i,i}) + \frac{i}{2i+1}  N_{i-1,i+1}.</math>
 +
 
 +
If <math>j = i+2</math> then Alice guesses next card with probability  <math>\frac {i+2}{2i+2} \implies N_{i,i+2} = \frac {i+2}{2i+2} (1+ N_{i,i+1}) + \frac{i}{2i+2}  N_{i-1,i+2}.</math>
 +
 
 +
One can find consistently: <math>N_{1,1} = \frac {1}{2} + N_{0,1} = \frac {3}{2},</math>
 +
<cmath>N_{1,2} = \frac {2}{3} (1 + N_{1,1}) + \frac {1}{3} N_{0,2} = \frac {7}{3}.</cmath>
 +
<cmath>N_{2,2} = \frac {1}{2} + N_{1,2} = \frac {17}{6}.</cmath>
 +
<cmath>N_{1,3} = \frac {3}{4} (1 + N_{1,2}) + \frac {1}{4} N_{0,3} = \frac {13}{4}.</cmath>
 +
<cmath>N_{2,3} = \frac {3}{5} (1 + N_{2,2}) + \frac {2}{5} N_{1,3} = \frac {18}{5}.</cmath>
 +
<cmath>N_{3,3} = \frac {1}{2} + N_{2,3} = \frac {41}{10}.</cmath>
 +
Therefore, the answer is <math>41 + 10 = \boxed{\textbf{(051) }}</math>.
 +
 
 +
'''vladimir.shelomovskii@gmail.com, vvsss'''
 +
 
 +
==Solution 5 (Pseudo-recursion)==
 +
Denote <math>E_n</math> the expected number of cards Alice guesses correctly given <math>n</math> red cards and <math>n</math> black cards. We want to find <math>E_3</math>.
 +
 
 +
Alice has a <math>\frac{1}{2}</math> chance of guessing the first card. WLOG assume the first card color is red. For the next card, Alice has a <math>\frac{3}{5}</math> chance of guessing the card if she chooses black; if they guess right, there's one less red and black card, so the expected number of cards Alice guesses from here is <math>E_2</math>. If Alice does not guess correctly (which occurs with probability <math>\frac{2}{5}</math>), this means that there's 3 black cards and 1 red card left, so Alice should guess black next with a <math>\frac{3}{4}</math> chance of being right. If Alice is wrong (with probability <math>\frac{1}{4}</math>), there are only 3 black cards left, so Alice can guess these with certainty; if Alice is right, there are 2 blacks and 1 red left, so Alice should again guess black. If Alice is right (with probability <math>\frac{2}{3}</math>), there is now 1 black and red card each, so the expected number of cards guessed is <math>E_1</math>; if she is wrong (with probability <math>\frac{1}{3}</math>), there are 2 black cards left, so Alice can guess these with certainty.
 +
 
 +
Summing this up into a formula:
 +
<cmath>
 +
E_3 = \frac{1}{2} + \frac{3}{5} \left(1 + E_2 \right) + \frac{2}{5} \left( \frac{1}{4}(3) + \frac{3}{4}\left(1 + \frac{2}{3}\left(1 + E_1 \right) + \frac{1}{3}(2)\right) \right)
 +
</cmath>
 +
 
 +
We can apply similar logic to compute <math>E_2</math> and get
 +
<cmath>
 +
E_2 = \frac{1}{2} + \frac{2}{3}(1 + E_1) + \frac{1}{3}(2)
 +
</cmath>
 +
 
 +
To compute <math>E_1</math>, we know that Alice can guess the last card with certainty, and there's a <math>\frac{1}{2}</math> chance they get the first card as well, so <math>E_1 = \frac{3}{2}</math>.
 +
 
 +
Thus, <math>E_2 = \frac{17}{6}</math>, and after long computation, we get <math>E_3 = \frac{41}{10}</math>. The requested answer is <math>41 + 10 = \boxed{51}</math>.
 +
 
 +
~ adam_zheng
  
~OrangeQuail9
+
==Video Solution 1 by TheBeautyofMath==
 +
https://youtu.be/ITjbRKWbQeI
  
 +
~IceMatrix
 
==See also==
 
==See also==
 
{{AIME box|year=2023|num-b=5|num-a=7|n=I}}
 
{{AIME box|year=2023|num-b=5|num-a=7|n=I}}

Latest revision as of 17:28, 31 January 2024

Problem

Alice knows that $3$ red cards and $3$ black cards will be revealed to her one at a time in random order. Before each card is revealed, Alice must guess its color. If Alice plays optimally, the expected number of cards she will guess correctly is $\frac{m}{n},$ where $m$ and $n$ are relatively prime positive integers. Find $m+n.$

Solution 1 (Casework)

We break the problem into stages, one for each card revealed, then further into cases based on the number of remaining unrevealed cards of each color. Since expected value is linear, the expected value of the total number of correct card color guesses across all stages is the sum of the expected values of the number of correct card color guesses at each stage; that is, we add the probabilities of correctly guessing the color at each stage to get the final answer (See https://brilliant.org/wiki/linearity-of-expectation/)

At any stage, if there are $a$ unrevealed cards of one color and $b$ of the other color, and $a \geq b$, then the optimal strategy is to guess the color with $a$ unrevealed cards, which succeeds with probability $\frac{a}{a+b}.$

Stage 1:

There are always $3$ unrevealed cards of each color, so the probability of guessing correctly is $\frac{1}{2}$.

Stage 2:

There is always a $3$-$2$ split ($3$ unrevealed cards of one color and $2$ of the other color), so the probability of guessing correctly is $\frac{3}{5}$.

Stage 3:

There are now $2$ cases:

  • The guess from Stage 2 was correct, so there is now a $2$-$2$ split of cards and a $\frac{1}{2}$ probability of guessing the color of the third card correctly.
  • The guess from Stage 2 was incorrect, so the split is $3$-$1$ and the probability of guessing correctly is $\frac{3}{4}$.

Thus, the overall probability of guessing correctly is $\frac{3}{5} \cdot \frac{1}{2} + \frac{2}{5} \cdot \frac{3}{4} = \frac{3}{5}$.

Stage 4:

This stage has $2$ cases as well:

  • The guesses from both Stage 2 and Stage 3 were incorrect. This occurs with probability $\frac{2}{5} \cdot \frac{1}{4} = \frac{1}{10}$ and results in a $3$-$0$ split and a certain correct guess at this stage.
  • Otherwise, there must be a $2$-$1$ split and a $\frac{2}{3}$ probability of guessing correctly.

The probability of guessing the fourth card correctly is therefore $\frac{1}{10} \cdot 1 + \frac{9}{10} \cdot \frac{2}{3} = \frac{7}{10}$.

Stage 5:

Yet again, there are $2$ cases:

  • In Stage 4, there was a $2$-$1$ split and the guess was correct. This occurs with probability $\frac{9}{10} \cdot \frac{2}{3} = \frac{3}{5}$ and results in a $1$-$1$ split with a $\frac{1}{2}$ chance of a correct guess here.
  • Otherwise, there must be a $2$-$0$ split, making a correct guess certain.

In total, the fifth card can be guessed correctly with probability $\frac{3}{5} \cdot \frac{1}{2} + \frac{2}{5} \cdot 1 = \frac{7}{10}$.

Stage 6:

At this point, only $1$ card remains, so the probability of guessing its color correctly is $1$.

In conclusion, the expected value of the number of cards guessed correctly is \[\frac{1}{2} + \frac{3}{5} + \frac{3}{5} + \frac{7}{10} + \frac{7}{10} + 1 = \frac{5+6+6+7+7+10}{10} = \frac{41}{10},\] so the answer is $41 + 10 = \boxed{051}.$

~OrangeQuail9

Solution 2 (Casework)

At any point in the game, Alice should guess whichever color has come up less frequently thus far (although if both colors have come up equally often, she may guess whichever she likes); using this strategy, her probability of guessing correctly is at least $\frac{1}{2}$ on any given card, as desired.

There are ${6 \choose 3} = 20$ possible orderings of cards, all equally likely (since any of the $6! = 720$ permutations of the cards is equally likely, and each ordering covers $3!^2 = 6^2 = 36$ permutations).

Each of the $10$ orderings that start with red cards corresponds with one that starts with a black card; the problem is symmetrical with respect to red and black cards, so we can, without loss of generality, consider only the orderings that start with red cards.

We then generate a tally table showing whether Alice's guesses are correct for each ordering; for a given card, she guesses correctly if fewer than half the previously shown cards were the same color, guesses incorrectly if more than half were the same color, and guesses correctly with probability $\frac{1}{2}$ if exactly half were the same color.

In this table, $\mid$ denotes a correct guess, $\--$ denotes an incorrect guess, and $/$ denotes a guess with $\frac{1}{2}$ probability of being correct.

Alice's Tally Table (2023 AIME I Problem 6).png

Now we sum the tallies across orderings, obtaining $41$, and finally divide by the number of orderings ($10$) to obtain the expected number of correct guesses, $\frac{41}{10}$, which yields an answer of $41 + 10 = \boxed{051}.$

~IndigoEagle108

Solution 3 (Dynamic Programming)

Denote by $N \left( a, b \right)$ the optimal expected number of cards that Alice guesses correctly, where the number of red and black cards are $a$ and $b$, respectively.

Thus, for $a, b \geq 1$, we have \begin{align*} N \left( a, b \right) & = \max \left\{ \frac{a}{a+b} \left( 1 + N \left( a - 1 , b \right) \right) + \frac{b}{a+b} N \left( a , b - 1 \right) , \right. \\ & \hspace{1cm} \left. \frac{a}{a+b} N \left( a - 1 , b \right) + \frac{b}{a+b} \left( 1 + N \left( a , b - 1 \right) \right) \right\} . \end{align*}

For $a = 0$, Alice always guesses black. So $N \left( 0 , b \right) = b$.

For $b = 0$, Alice always guesses red. So $N \left( a , 0 \right) = a$.

To solve this dynamic program, we can also exploit its symmetry that $N \left( a , b \right) = N \left( b , a \right)$.

By solving this dynamic program, we get $N \left( 1, 1 \right) = \frac{3}{2}$, $N \left( 1, 2 \right) = \frac{7}{3}$, $N \left( 1 , 3 \right) = \frac{13}{4}$, $N \left( 2 , 2 \right) = \frac{17}{6}$, $N \left( 2 , 3 \right) = \frac{18}{5}$, $N \left( 3, 3 \right) = \frac{41}{10}$.

Therefore, the answer is $41 + 10 = \boxed{\textbf{(051) }}$.

~Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)

Solution 4 (Simplification of Solution 3)

Denote by $N_{i,j}$ the optimal expected number of cards that Alice guesses correctly, where the number of cards are $i$ and $j \ge i.$

If $i = 0$ then Alice guesses correctly all cards, so $N_{0,j} = j.$

If $j = i$ then Alice guesses next card with probability $\frac {1}{2} \implies N_{i,i} = \frac {1}{2} + N_{i-1,i}.$

If $j = i+1$ then Alice guesses next card with probability $\frac {i+1}{2i+1} \implies N_{i,i+1} = \frac {i+1}{2i+1} (1+ N_{i,i}) + \frac{i}{2i+1}  N_{i-1,i+1}.$

If $j = i+2$ then Alice guesses next card with probability $\frac {i+2}{2i+2} \implies N_{i,i+2} = \frac {i+2}{2i+2} (1+ N_{i,i+1}) + \frac{i}{2i+2}  N_{i-1,i+2}.$

One can find consistently: $N_{1,1} = \frac {1}{2} + N_{0,1} = \frac {3}{2},$ \[N_{1,2} = \frac {2}{3} (1 + N_{1,1}) + \frac {1}{3} N_{0,2} = \frac {7}{3}.\] \[N_{2,2} = \frac {1}{2} + N_{1,2} = \frac {17}{6}.\] \[N_{1,3} = \frac {3}{4} (1 + N_{1,2}) + \frac {1}{4} N_{0,3} = \frac {13}{4}.\] \[N_{2,3} = \frac {3}{5} (1 + N_{2,2}) + \frac {2}{5} N_{1,3} = \frac {18}{5}.\] \[N_{3,3} = \frac {1}{2} + N_{2,3} = \frac {41}{10}.\] Therefore, the answer is $41 + 10 = \boxed{\textbf{(051) }}$.

vladimir.shelomovskii@gmail.com, vvsss

Solution 5 (Pseudo-recursion)

Denote $E_n$ the expected number of cards Alice guesses correctly given $n$ red cards and $n$ black cards. We want to find $E_3$.

Alice has a $\frac{1}{2}$ chance of guessing the first card. WLOG assume the first card color is red. For the next card, Alice has a $\frac{3}{5}$ chance of guessing the card if she chooses black; if they guess right, there's one less red and black card, so the expected number of cards Alice guesses from here is $E_2$. If Alice does not guess correctly (which occurs with probability $\frac{2}{5}$), this means that there's 3 black cards and 1 red card left, so Alice should guess black next with a $\frac{3}{4}$ chance of being right. If Alice is wrong (with probability $\frac{1}{4}$), there are only 3 black cards left, so Alice can guess these with certainty; if Alice is right, there are 2 blacks and 1 red left, so Alice should again guess black. If Alice is right (with probability $\frac{2}{3}$), there is now 1 black and red card each, so the expected number of cards guessed is $E_1$; if she is wrong (with probability $\frac{1}{3}$), there are 2 black cards left, so Alice can guess these with certainty.

Summing this up into a formula: \[E_3 = \frac{1}{2} + \frac{3}{5} \left(1 + E_2 \right) + \frac{2}{5} \left( \frac{1}{4}(3) + \frac{3}{4}\left(1 + \frac{2}{3}\left(1 + E_1 \right) + \frac{1}{3}(2)\right) \right)\]

We can apply similar logic to compute $E_2$ and get \[E_2 = \frac{1}{2} + \frac{2}{3}(1 + E_1) + \frac{1}{3}(2)\]

To compute $E_1$, we know that Alice can guess the last card with certainty, and there's a $\frac{1}{2}$ chance they get the first card as well, so $E_1 = \frac{3}{2}$.

Thus, $E_2 = \frac{17}{6}$, and after long computation, we get $E_3 = \frac{41}{10}$. The requested answer is $41 + 10 = \boxed{51}$.

~ adam_zheng

Video Solution 1 by TheBeautyofMath

https://youtu.be/ITjbRKWbQeI

~IceMatrix

See also

2023 AIME I (ProblemsAnswer KeyResources)
Preceded by
Problem 5
Followed by
Problem 7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
All AIME Problems and Solutions

The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions. AMC logo.png