2023 AMC 12B Problems/Problem 5

Revision as of 20:19, 15 November 2023 by Gabew1234 (talk | contribs) (Solution)

Problem

You are playing a game. A $2 \times 1$ rectangle covers two adjacent squares (oriented either horizontally or vertically) of a $3 \times 3$ grid of squares, but you are not told which two squares are covered. Your goal is to find at least one square that is covered by the rectangle. A "turn" consists of you guessing a square, after which you are told whether that square is covered by the hidden rectangle. What is the minimum number of turns you need to ensure that at least one of your guessed squares is covered by the rectangle?

$\textbf{(A)}~3\qquad\textbf{(B)}~5\qquad\textbf{(C)}~4\qquad\textbf{(D)}~8\qquad\textbf{(E)}~6$

Solution

First, we notice that there are a total of $12 \text{ } 2\times1$ rectangles in a $3\times3$ grid.

Next, if we choose one of the corners, and the corner is not covered by a $2 \times 1$ rectangle, we can eliminate a maximum of 2 rectangles.

draw((0,0)--(3,0));
draw((3,0)--(3,3));
draw((3,3)--(0,3));
draw((0,3)--(0,0));
draw((1,0)--(1,3));
draw((2,0)--(2,3));
draw((0,1)--(3,1));
draw((0,2)--(3,2));
text{};
 (Error making remote request. Unknown error_msg)

If we choose one of the side squares, we can eliminate a maximum of $3$ rectangles.

Finally, if we choose the center square, we can eliminate a maximum of $4$ rectangles, but doing so means that if we choose a side square, we only eliminate 2 rectangles.

The answer is $\boxed{(C) 4}$