Difference between revisions of "2004 AMC 10A Problems/Problem 16"
Pi is 3.14 (talk | contribs) (→Video Solutions) |
m (→Problem) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
The <math>5\times 5</math> grid shown contains a collection of squares with sizes from <math>1\times 1</math> to <math>5\times 5</math>. How many of these squares contain the black center square? | The <math>5\times 5</math> grid shown contains a collection of squares with sizes from <math>1\times 1</math> to <math>5\times 5</math>. How many of these squares contain the black center square? | ||
− | + | <asy> | |
+ | for (int i=0; i<5; ++i) { | ||
+ | for (int j=0; j<5; ++j) { | ||
+ | draw((-2.5+i, -2.5+j)--(-1.5+i, -2.5+j) -- (-1.5+i, -1.5+j) -- (-2.5+i, -1.5+j)--cycle); | ||
+ | } | ||
+ | fill((-0.5,-0.5)--(-0.5, 0.5)--(0.5,0.5) -- (0.5,-0.5)--cycle, black); | ||
+ | } | ||
+ | </asy> | ||
<math> \mathrm{(A) \ } 12 \qquad \mathrm{(B) \ } 15 \qquad \mathrm{(C) \ } 17 \qquad \mathrm{(D) \ } 19\qquad \mathrm{(E) \ } 20 </math> | <math> \mathrm{(A) \ } 12 \qquad \mathrm{(B) \ } 15 \qquad \mathrm{(C) \ } 17 \qquad \mathrm{(D) \ } 19\qquad \mathrm{(E) \ } 20 </math> | ||
Line 27: | Line 34: | ||
~ pi_is_3.14 | ~ pi_is_3.14 | ||
+ | ~VictorZhang | ||
== Video Solutions == | == Video Solutions == |
Latest revision as of 00:37, 14 August 2024
Contents
Problem
The grid shown contains a collection of squares with sizes from to . How many of these squares contain the black center square?
Solution
Solution 1
Since there are five types of squares: and We must find how many of each square contain the black shaded square in the center.
If we list them, we get that
- There is of all squares, containing the black square
- There are of all squares, containing the black square
- There are of all squares, containing the black square
- There are of all squares, containing the black square
- There is of all squares, containing the black square
Thus, the answer is .
Solution 2
We use complementary counting. There are only and squares that do not contain the black square. Counting, there are - squares, and squares that do not contain the black square. That gives squares that don't contain it. There are a total of squares possible - squares - squares - squares - squares and - square), therefore there are squares that contain the black square, which is .
Video Solution by OmegaLearn
https://youtu.be/HhdpuJt78Hg?t=168
~ pi_is_3.14 ~VictorZhang
Video Solutions
See also
2004 AMC 10A (Problems • Answer Key • Resources) | ||
Preceded by Problem 15 |
Followed by Problem 17 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | ||
All AMC 10 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.