Difference between revisions of "2025 AMC 8 Problems/Problem 11"
(→Problem 11) |
(→Problem 11) |
||
Line 7: | Line 7: | ||
==Solution 1== | ==Solution 1== | ||
− | The <math>3\times4</math> rectangle allows for | + | The <math>3\times4</math> rectangle allows for <math>7</math> possible places to put the S piece, with each possible placement having an inverted version. |
+ | One of the cases looks like this: | ||
<asy> | <asy> | ||
+ | path x = (0,0)--(0,2)--(1,2)--(1,3)--(2,3)--(2,1)--(1,1)--(1,0)--cycle; | ||
+ | fill(x, rgb(0,30,0)); | ||
+ | add(grid(4,3)); | ||
+ | </asy> | ||
+ | Now, as you can see, there's a hole in the top left corner of the board, which would be impossible to fill using the tetrominos. | ||
+ | There are <math>3</math> cases in which one of these holes isn't created; the S lies flat in the bottom left corner, it lies flat in the top right corner, or it stands upright in the center. In all three cases, two L's can be used to fill the remaining empty spaces in the rectangle, shown below. | ||
+ | <asy> | ||
+ | path z1 = (2,0)--(3,0)--(3,2)--(2,2)--(2,3)--(1,3)--(1,1)--(2,1)--cycle; | ||
+ | path z2 = (0,0)--(2,0)--(2,1)--(1,1)--(1,3)--(0,3)--cycle; | ||
+ | path z3 = (2,3)--(4,3)--(4,0)--(3,0)--(3,2)--(2,2)--cycle; | ||
+ | fill(z1, rgb(0,30,0)); | ||
+ | fill(z2, rgb(127,80,0)); | ||
+ | fill(z3, rgb(127,100,0)); | ||
+ | add(grid(4,3)); | ||
+ | </asy> | ||
+ | |||
+ | <asy> | ||
+ | path y1 = (0,0)--(2,0)--(2,1)--(3,1)--(3,2)--(1,2)--(1,1)--(0,1)--cycle; | ||
+ | path y2 = (0,1)--(1,1)--(1,2)--(3,2)--(3,3)--(0,3)--cycle; | ||
+ | path y3 = (2,0)--(4,0)--(4,3)--(3,3)--(3,1)--(2,1)--cycle; | ||
+ | fill(y1, rgb(0,30,0)); | ||
+ | fill(y2, rgb(127,80,0)); | ||
+ | fill(y3, rgb(127,100,0)); | ||
+ | add(grid(4,3)); | ||
+ | </asy> | ||
− | path | + | <asy> |
+ | path w1 = (1,1)--(3,1)--(3,2)--(4,2)--(4,3)--(2,3)--(2,2)--(1,2)--cycle; | ||
+ | path w2 = (0,0)--(0,3)--(2,3)--(2,2)--(1,2)--(1,0)--cycle; | ||
+ | path w3 = (1,0)--(4,0)--(4,2)--(3,2)--(3,1)--(1,1)--cycle; | ||
+ | fill(w1, rgb(0,30,0)); | ||
+ | fill(w2, rgb(127,80,0)); | ||
+ | fill(w3, rgb(127,100,0)); | ||
add(grid(4,3)); | add(grid(4,3)); | ||
− | |||
</asy> | </asy> | ||
+ | For each of the inverted cases, the L pieces can be inverted along with the S piece. Therefore, because the only cases that fill the rectangle after the S is placed are the ones that use two L pieces, the answer must be <math>\boxed{\textbf{(C)}~L \ and \ L}</math>. ~bubby617 |
Revision as of 12:41, 30 January 2025
Problem 11
A consists of four squares connected along their edges. There are five possible tetromino shapes, , , , , and , shown below, which can be rotated or flipped over. Three tetrominoes are used to completely cover a rectangle. At least one of the tiles is an tile. What are the other two tiles?
and and and and and
Solution 1
The rectangle allows for possible places to put the S piece, with each possible placement having an inverted version. One of the cases looks like this: Now, as you can see, there's a hole in the top left corner of the board, which would be impossible to fill using the tetrominos. There are cases in which one of these holes isn't created; the S lies flat in the bottom left corner, it lies flat in the top right corner, or it stands upright in the center. In all three cases, two L's can be used to fill the remaining empty spaces in the rectangle, shown below.
For each of the inverted cases, the L pieces can be inverted along with the S piece. Therefore, because the only cases that fill the rectangle after the S is placed are the ones that use two L pieces, the answer must be . ~bubby617