Difference between revisions of "2022 AMC 12A Problems/Problem 5"
MRENTHUSIASM (talk | contribs) (→Solution 3 (Sum of Squares)) |
(→Solution 7 (Fast, Cheese)) |
||
(28 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
==Problem== | ==Problem== | ||
− | The < | + | The <em>taxicab distance</em> between points <math>(x_1, y_1)</math> and <math>(x_2, y_2)</math> in the coordinate plane is given by <cmath>|x_1 - x_2| + |y_1 - y_2|.</cmath> |
For how many points <math>P</math> with integer coordinates is the taxicab distance between <math>P</math> and the origin less than or equal to <math>20</math>? | For how many points <math>P</math> with integer coordinates is the taxicab distance between <math>P</math> and the origin less than or equal to <math>20</math>? | ||
Line 70: | Line 70: | ||
for (int y = 20; y >= 0; --y) { | for (int y = 20; y >= 0; --y) { | ||
for (int x = y-20; x <= 20-y; ++x) { | for (int x = y-20; x <= 20-y; ++x) { | ||
− | dot((x,y),linewidth( | + | dot((x,y),linewidth(4)); |
} | } | ||
} | } | ||
Line 76: | Line 76: | ||
for (int y = -1; y >= -20; --y) { | for (int y = -1; y >= -20; --y) { | ||
for (int x = -y-20; x <= y+20; ++x) { | for (int x = -y-20; x <= y+20; ++x) { | ||
− | dot((x,y),linewidth( | + | dot((x,y),linewidth(4)); |
} | } | ||
} | } | ||
Line 102: | Line 102: | ||
Our final answer is <math>760 + 41 + 41 - 1 = \boxed{\textbf{(C)} \, 841}</math>. | Our final answer is <math>760 + 41 + 41 - 1 = \boxed{\textbf{(C)} \, 841}</math>. | ||
− | ==Solution 3 ( | + | ==Solution 3 (Triangular Numbers)== |
+ | This solution refers to the <b>Diagram</b> section. | ||
+ | <asy> | ||
+ | /* Made by MRENTHUSIASM */ | ||
+ | size(350); | ||
+ | |||
+ | for (int y = 20; y >= 1; --y) { | ||
+ | for (int x = 0; x <= 20-y; ++x) { | ||
+ | dot((x,y),green+linewidth(4)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | for (int y = 0; y >= -20; --y) { | ||
+ | for (int x = 1; x <= y+20; ++x) { | ||
+ | dot((x,y),blue+linewidth(4)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | for (int y = 20; y >= 0; --y) { | ||
+ | for (int x = y-20; x <= -1; ++x) { | ||
+ | dot((x,y),purple+linewidth(4)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | for (int y = -1; y >= -20; --y) { | ||
+ | for (int x = -y-20; x <= 0; ++x) { | ||
+ | dot((x,y),red+linewidth(4)); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | dot(origin,black+linewidth(4)); | ||
+ | </asy> | ||
+ | The problem can be visualized as depicted on the right split equally into four "triangular" parts excluding the origin. The "triangular" parts are identical the ones that would be used in a visual proof of the formula for triangular numbers. Becuase of this the number of points in each part is equal to <math>\frac{n(n+1)}{2}</math> where <math>n</math> is the length of a "leg" of the "triangle" which is <math>20</math> for this problem. Substituting and computing, we get <math>210.</math> Multiplying by <math>4</math> and adding <math>1</math> to account for all parts and the origin, we get <math>210\cdot4 + 1 = \boxed{\textbf{(C)} \, 841}.</math> | ||
+ | |||
+ | ~Apersoma | ||
+ | |||
+ | ==Solution 4 (Two Square Arrays)== | ||
This solution refers to the <b>Diagram</b> section. | This solution refers to the <b>Diagram</b> section. | ||
− | As shown below, the red | + | As shown below, the taxicab distance between each red point and the origin is even, and the taxicab distance between each blue point and the origin is odd. |
<asy> | <asy> | ||
/* Made by MRENTHUSIASM */ | /* Made by MRENTHUSIASM */ | ||
Line 113: | Line 149: | ||
for (int y = 20; y >= 0; --y) { | for (int y = 20; y >= 0; --y) { | ||
for (int x = y-20; x <= 20-y; x+=2) { | for (int x = y-20; x <= 20-y; x+=2) { | ||
− | dot((x,y),red+linewidth( | + | dot((x,y),red+linewidth(4)); |
} | } | ||
} | } | ||
Line 119: | Line 155: | ||
for (int y = -1; y >= -20; --y) { | for (int y = -1; y >= -20; --y) { | ||
for (int x = -y-20; x <= y+20; x+=2) { | for (int x = -y-20; x <= y+20; x+=2) { | ||
− | dot((x,y),red+linewidth( | + | dot((x,y),red+linewidth(4)); |
} | } | ||
} | } | ||
Line 125: | Line 161: | ||
for (int y = 19; y >= 0; --y) { | for (int y = 19; y >= 0; --y) { | ||
for (int x = y-19; x <= 19-y; x+=2) { | for (int x = y-19; x <= 19-y; x+=2) { | ||
− | dot((x,y),blue+linewidth( | + | dot((x,y),blue+linewidth(4)); |
} | } | ||
} | } | ||
Line 131: | Line 167: | ||
for (int y = -1; y >= -19; --y) { | for (int y = -1; y >= -19; --y) { | ||
for (int x = -y-19; x <= y+19; x+=2) { | for (int x = -y-19; x <= y+19; x+=2) { | ||
− | dot((x,y),blue+linewidth( | + | dot((x,y),blue+linewidth(4)); |
} | } | ||
} | } | ||
+ | |||
+ | draw((20,0)--(0,20)--(-20,0)--(0,-20)--cycle,red+linewidth(1.25)); | ||
+ | draw((19,0)--(0,19)--(-19,0)--(0,-19)--cycle,blue+linewidth(1.25)); | ||
</asy> | </asy> | ||
+ | Note that the red array consists of <math>21^2=441</math> points, and the blue array consists of <math>20^2=400</math> points. | ||
+ | |||
Together, the answer is <math>441+400=\boxed{\textbf{(C)} \, 841}.</math> | Together, the answer is <math>441+400=\boxed{\textbf{(C)} \, 841}.</math> | ||
~MRENTHUSIASM | ~MRENTHUSIASM | ||
− | ==Solution | + | ==Solution 5 (Pick's Theorem)== |
Let <math>P = (x, y)</math>. Since the problem asks for taxicab distances from the origin, we want <math>|x| + |y| \le 20</math>. The graph of all solutions to this equation on the <math>xy</math>-plane is a square with vertices at <math>(0, \pm 20)</math> and <math>(\pm 20, 0)</math> (In order to prove this, one can divide the sections of this graph into casework on the four quadrants, and tie together the resulting branches.) We want the number of lattice points on the border of the square and inside the square. | Let <math>P = (x, y)</math>. Since the problem asks for taxicab distances from the origin, we want <math>|x| + |y| \le 20</math>. The graph of all solutions to this equation on the <math>xy</math>-plane is a square with vertices at <math>(0, \pm 20)</math> and <math>(\pm 20, 0)</math> (In order to prove this, one can divide the sections of this graph into casework on the four quadrants, and tie together the resulting branches.) We want the number of lattice points on the border of the square and inside the square. | ||
Each side of the square goes through an equal number of lattice points, so if we focus on one side going from <math>(0,20)</math> to <math>(20, 0)</math>, we can see that it goes through <math>21</math> points in total. In addition, each of the vertices gets counted twice, so the total number of border points is <math>21\cdot4 - 4 = 80</math>. Also, the area of the square is <math>800</math>, so when we plug this information inside Pick's theorem, we get <math>800 = i + \frac{80}{2} - 1 \implies i = 761</math>. Then our answer is <math>761+80 = \boxed{\textbf{(C)} \, 841}.</math> | Each side of the square goes through an equal number of lattice points, so if we focus on one side going from <math>(0,20)</math> to <math>(20, 0)</math>, we can see that it goes through <math>21</math> points in total. In addition, each of the vertices gets counted twice, so the total number of border points is <math>21\cdot4 - 4 = 80</math>. Also, the area of the square is <math>800</math>, so when we plug this information inside Pick's theorem, we get <math>800 = i + \frac{80}{2} - 1 \implies i = 761</math>. Then our answer is <math>761+80 = \boxed{\textbf{(C)} \, 841}.</math> | ||
Line 145: | Line 186: | ||
~ Oxymoronic15 | ~ Oxymoronic15 | ||
− | ==Solution | + | ==Solution 6 (Stars and Bars)== |
Instead of considering all points with integer coordinates, first consider points with nonnegative coordinates only. Then, we want <math>x + y \le 20</math> where <math>x</math> and <math>y</math> are nonnegative integers. We can introduce a third variable, say <math>z</math>, such that <math>z = 20 - (x + y)</math>. Note that counting the number of ways to have <math>x + y + z = 20</math> is the same as counting the number of ways to have <math>x + y \le 20</math>. Therefore, by stars and bars, there are <math>\dbinom{20 + 3 - 1}{3 - 1} = 231</math> solutions with nonnegative integer coordinates. | Instead of considering all points with integer coordinates, first consider points with nonnegative coordinates only. Then, we want <math>x + y \le 20</math> where <math>x</math> and <math>y</math> are nonnegative integers. We can introduce a third variable, say <math>z</math>, such that <math>z = 20 - (x + y)</math>. Note that counting the number of ways to have <math>x + y + z = 20</math> is the same as counting the number of ways to have <math>x + y \le 20</math>. Therefore, by stars and bars, there are <math>\dbinom{20 + 3 - 1}{3 - 1} = 231</math> solutions with nonnegative integer coordinates. | ||
Line 151: | Line 192: | ||
~ jamesl123456 | ~ jamesl123456 | ||
+ | |||
+ | ==Solution 7 (Fast, Cheese)== | ||
+ | |||
+ | The number of lattice points is roughly equal to the area of a rhombus with diagonals of length 41. The area of the quadrilateral is <math>41^2/2 = 840.5</math>. The closest answer is <math>\boxed{\textbf{(C)} \, 841}.</math>. | ||
+ | |||
+ | ==Video Solution 1 (HOW TO THINK CREATIVELY!!!)== | ||
+ | https://youtu.be/zTGRlr7eYKM | ||
+ | |||
+ | ~Education, the Study of Everything | ||
+ | |||
+ | ==Video Solution 2 (First Understand the problem)== | ||
+ | https://youtu.be/7yAh4MtJ8a8?si=0CHICdALPhDnrgTx&t=834 | ||
+ | |||
+ | ~Math-X | ||
== See Also == | == See Also == | ||
{{AMC12 box|year=2022|ab=A|num-b=4|num-a=6}} | {{AMC12 box|year=2022|ab=A|num-b=4|num-a=6}} | ||
{{MAA Notice}} | {{MAA Notice}} |
Latest revision as of 19:05, 3 November 2024
Contents
- 1 Problem
- 2 Diagram
- 3 Solution 1 (Arithmetic Series)
- 4 Solution 2 (Arithmetic Series With Symmetry)
- 5 Solution 3 (Triangular Numbers)
- 6 Solution 4 (Two Square Arrays)
- 7 Solution 5 (Pick's Theorem)
- 8 Solution 6 (Stars and Bars)
- 9 Solution 7 (Fast, Cheese)
- 10 Video Solution 1 (HOW TO THINK CREATIVELY!!!)
- 11 Video Solution 2 (First Understand the problem)
- 12 See Also
Problem
The taxicab distance between points and in the coordinate plane is given by For how many points with integer coordinates is the taxicab distance between and the origin less than or equal to ?
Diagram
All possible locations of are lattice points such that whose graph is shown below:
~MRENTHUSIASM
Solution 1 (Arithmetic Series)
Let us consider the number of points for a certain -coordinate. For any , the viable points are in the range . This means that our total sum is equal to ~mathboy100
Solution 2 (Arithmetic Series With Symmetry)
Since the second point is the origin, this is equivalent to finding all points such that . Due to the absolute values, the set of all such points will be symmetric about the origin meaning we can focus on the first quadrant and multiply by .
To avoid overcounts, ignore points on the axes. This means . If , there are solutions for (). If , there are solutions. This pattern repeats until , at which point there is solution for .
So we get points in the first quadrant. Multiplying by gives . Now, the axis has which gives , meaning there are solutions. This is the same with the axis, but we overcounted the origin by .
Our final answer is .
Solution 3 (Triangular Numbers)
This solution refers to the Diagram section. The problem can be visualized as depicted on the right split equally into four "triangular" parts excluding the origin. The "triangular" parts are identical the ones that would be used in a visual proof of the formula for triangular numbers. Becuase of this the number of points in each part is equal to where is the length of a "leg" of the "triangle" which is for this problem. Substituting and computing, we get Multiplying by and adding to account for all parts and the origin, we get
~Apersoma
Solution 4 (Two Square Arrays)
This solution refers to the Diagram section.
As shown below, the taxicab distance between each red point and the origin is even, and the taxicab distance between each blue point and the origin is odd. Note that the red array consists of points, and the blue array consists of points.
Together, the answer is
~MRENTHUSIASM
Solution 5 (Pick's Theorem)
Let . Since the problem asks for taxicab distances from the origin, we want . The graph of all solutions to this equation on the -plane is a square with vertices at and (In order to prove this, one can divide the sections of this graph into casework on the four quadrants, and tie together the resulting branches.) We want the number of lattice points on the border of the square and inside the square. Each side of the square goes through an equal number of lattice points, so if we focus on one side going from to , we can see that it goes through points in total. In addition, each of the vertices gets counted twice, so the total number of border points is . Also, the area of the square is , so when we plug this information inside Pick's theorem, we get . Then our answer is
~ Oxymoronic15
Solution 6 (Stars and Bars)
Instead of considering all points with integer coordinates, first consider points with nonnegative coordinates only. Then, we want where and are nonnegative integers. We can introduce a third variable, say , such that . Note that counting the number of ways to have is the same as counting the number of ways to have . Therefore, by stars and bars, there are solutions with nonnegative integer coordinates.
Then, we can copy our solutions over to the other four quadrants. First, so as not to overcount, we remove all points on the axes. There are such points with nonnegative integer coordinates. We multiply the remaining points by to get points that are not on the axes. Then, we can add back the nonnegative points on the axes, as well as the other points on the negative axes to get
~ jamesl123456
Solution 7 (Fast, Cheese)
The number of lattice points is roughly equal to the area of a rhombus with diagonals of length 41. The area of the quadrilateral is . The closest answer is .
Video Solution 1 (HOW TO THINK CREATIVELY!!!)
~Education, the Study of Everything
Video Solution 2 (First Understand the problem)
https://youtu.be/7yAh4MtJ8a8?si=0CHICdALPhDnrgTx&t=834
~Math-X
See Also
2022 AMC 12A (Problems • Answer Key • Resources) | |
Preceded by Problem 4 |
Followed by Problem 6 |
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 12 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.