Difference between revisions of "2025 AIME II Problems/Problem 3"

(Solution)
 
Line 5: Line 5:
 
Let red edges be "used" edges. In the digarams below, dashed lines are uncolored  lines yet to be decided. Since all four edges of the center are common to both squares, we consider five distinct cases:
 
Let red edges be "used" edges. In the digarams below, dashed lines are uncolored  lines yet to be decided. Since all four edges of the center are common to both squares, we consider five distinct cases:
  
Case 1: All center edges are used. There is only one way to do this.
+
<math>\textbf{Case 1:}</math> All center edges are used. There is only one way to do this.
  
 
<asy>
 
<asy>
Line 13: Line 13:
 
</asy>
 
</asy>
  
Case 2: Three center edges are used, meaning two squares are missing an edge. For each square, there are 2 ways to choose an edge, resulting in <math>2 \times 2 = 4</math> ways. Additionally, considering the rotational symmetry of the arrangement, there are 4 possible rotations, giving a total of <math>4 \times 4 = 16</math> configurations.
+
<math>\textbf{Case 2:}</math> Three center edges are used, meaning two squares are missing an edge. For each square, there are 2 ways to choose an edge, resulting in <math>2 \times 2 = 4</math> ways. Additionally, considering the rotational symmetry of the arrangement, there are 4 possible rotations, giving a total of <math>4 \times 4 = 16</math> configurations.
  
 
<asy>
 
<asy>
Line 21: Line 21:
 
</asy>
 
</asy>
  
Case 3: Two center edges are used. There are two sub-cases:
+
<math>\textbf{Case 3:}</math> Two center edges are used. There are two sub-cases:
  
Scenario 1: The two selected sides are perpendicular to each other. The square diagonally opposite its adjacent square has only one choice, while the other two squares each have two choices. This gives a total of <math>1 \times 2 \times 2 = 4</math> choices. Considering the 4 possible rotations, the total number of configurations is <math>4 \times 4 = 16</math>.
+
<math>\textbf{Scenario 1:}</math> The two selected sides are perpendicular to each other. The square diagonally opposite its adjacent square has only one choice, while the other two squares each have two choices. This gives a total of <math>1 \times 2 \times 2 = 4</math> choices. Considering the 4 possible rotations, the total number of configurations is <math>4 \times 4 = 16</math>.
  
 
<asy>
 
<asy>
Line 31: Line 31:
 
</asy>
 
</asy>
  
Scenario 2: The two selected sides are aligned along the same straight line. Each of the four squares has 2 choices, yielding <math>2^4 = 16</math> possible choices. Taking into account the 2 possible rotations, the total number of configurations is <math>16 \times 2 = 32</math>.
+
<math>\textbf{Scenario 2:}</math> The two selected sides are aligned along the same straight line. Each of the four squares has 2 choices, yielding <math>2^4 = 16</math> possible choices. Taking into account the 2 possible rotations, the total number of configurations is <math>16 \times 2 = 32</math>.
  
 
<asy>
 
<asy>
Line 39: Line 39:
 
</asy>
 
</asy>
  
Case 4: Only one center edge is used. This case is similar to Case 2, yielding 16 possible configurations.
+
<math>\textbf{Case 4:}</math> Only one center edge is used. This case is similar to Case 2, yielding 16 possible configurations.
  
 
<asy>
 
<asy>
Line 47: Line 47:
 
</asy>
 
</asy>
  
Case 5: No center edge is used. This is similar to Case 1, with only 1 possible configuration.
+
<math>\textbf{Case 5:}</math> No center edge is used. This is similar to Case 1, with only 1 possible configuration.
  
 
<asy>
 
<asy>
Line 58: Line 58:
  
 
<cmath>
 
<cmath>
1 + 16 + 16 + 32 + 16 + 1 = \boxed{082}
+
1 + 16 + 16 + 32 + 16 + 1 = \boxed{\textbf{082}}
 
</cmath>
 
</cmath>
  
~[https://artofproblemsolving.com/wiki/index.php/User:Athmyx Athmyx]
+
~ [https://artofproblemsolving.com/wiki/index.php/User:Athmyx Athmyx]
  
~LaTeX by [https://artofproblemsolving.com/wiki/index.php/User:eevee9406 eevee9406]
+
~ LaTeX by [https://artofproblemsolving.com/wiki/index.php/User:eevee9406 eevee9406]
 +
 
 +
~ Additional edits by [https://artofproblemsolving.com/wiki/index.php/User:Aoum aoum]
  
 
==See also==
 
==See also==

Latest revision as of 13:34, 14 February 2025

Problem

Four unit squares form a $2 \times 2$ grid. Each of the $12$ unit line segments forming the sides of the squares is colored either red or blue in such a say that each unit square has $2$ red sides and $2$ blue sides. One example is shown below (red is solid, blue is dashed). Find the number of such colorings.

Solution

Let red edges be "used" edges. In the digarams below, dashed lines are uncolored lines yet to be decided. Since all four edges of the center are common to both squares, we consider five distinct cases:

$\textbf{Case 1:}$ All center edges are used. There is only one way to do this.

[asy] pair A,B,C,D,E,F,G,H,I; A=(-1,-1);B=(-1,0);C=(-1,1);D=(0,-1);E=(0,0);F=(0,1);G=(1,-1);H=(1,0);I=(1,1); draw(A--C--I--G--cycle,dashed); draw(B--H,red); draw(D--F,red); [/asy]

$\textbf{Case 2:}$ Three center edges are used, meaning two squares are missing an edge. For each square, there are 2 ways to choose an edge, resulting in $2 \times 2 = 4$ ways. Additionally, considering the rotational symmetry of the arrangement, there are 4 possible rotations, giving a total of $4 \times 4 = 16$ configurations.

[asy] pair A,B,C,D,E,F,G,H,I; A=(-1,-1);B=(-1,0);C=(-1,1);D=(0,-1);E=(0,0);F=(0,1);G=(1,-1);H=(1,0);I=(1,1); draw(A--C--I--G--cycle,dashed); draw(B--H,red); draw(D--E,red);draw(E--F,dashed); [/asy]

$\textbf{Case 3:}$ Two center edges are used. There are two sub-cases:

$\textbf{Scenario 1:}$ The two selected sides are perpendicular to each other. The square diagonally opposite its adjacent square has only one choice, while the other two squares each have two choices. This gives a total of $1 \times 2 \times 2 = 4$ choices. Considering the 4 possible rotations, the total number of configurations is $4 \times 4 = 16$.

[asy] pair A,B,C,D,E,F,G,H,I; A=(-1,-1);B=(-1,0);C=(-1,1);D=(0,-1);E=(0,0);F=(0,1);G=(1,-1);H=(1,0);I=(1,1); draw(A--C--I--G--cycle,dashed); draw(B--E,red); draw(E--D,red);draw(E--F,dashed);draw(E--H,dashed); [/asy]

$\textbf{Scenario 2:}$ The two selected sides are aligned along the same straight line. Each of the four squares has 2 choices, yielding $2^4 = 16$ possible choices. Taking into account the 2 possible rotations, the total number of configurations is $16 \times 2 = 32$.

[asy] pair A,B,C,D,E,F,G,H,I; A=(-1,-1);B=(-1,0);C=(-1,1);D=(0,-1);E=(0,0);F=(0,1);G=(1,-1);H=(1,0);I=(1,1); draw(A--C--I--G--cycle,dashed); draw(B--H,red); draw(D--F,dashed); [/asy]

$\textbf{Case 4:}$ Only one center edge is used. This case is similar to Case 2, yielding 16 possible configurations.

[asy] pair A,B,C,D,E,F,G,H,I; A=(-1,-1);B=(-1,0);C=(-1,1);D=(0,-1);E=(0,0);F=(0,1);G=(1,-1);H=(1,0);I=(1,1); draw(A--C--I--G--cycle,dashed); draw(B--E,red); draw(E--D,dashed);draw(E--F,dashed);draw(E--H,dashed); [/asy]

$\textbf{Case 5:}$ No center edge is used. This is similar to Case 1, with only 1 possible configuration.

[asy] pair A,B,C,D,E,F,G,H,I; A=(-1,-1);B=(-1,0);C=(-1,1);D=(0,-1);E=(0,0);F=(0,1);G=(1,-1);H=(1,0);I=(1,1); draw(A--C--I--G--cycle,dashed); draw(B--E,dashed); draw(E--D,dashed);draw(E--F,dashed);draw(E--H,dashed); [/asy]

In conclusion, the total number of configurations is:

\[1 + 16 + 16 + 32 + 16 + 1 = \boxed{\textbf{082}}\]

~ Athmyx

~ LaTeX by eevee9406

~ Additional edits by aoum

See also

2025 AIME II (ProblemsAnswer KeyResources)
Preceded by
Problem 2
Followed by
Problem 4
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