Difference between revisions of "2024 AMC 12A Problems/Problem 18"
Sandcanyon (talk | contribs) |
m (→Solution 3 (Inscribing in Circle)) |
||
(31 intermediate revisions by the same user not shown) | |||
Line 53: | Line 53: | ||
~[https://artofproblemsolving.com/wiki/index.php/User:Cyantist luckuso] | ~[https://artofproblemsolving.com/wiki/index.php/User:Cyantist luckuso] | ||
− | ==Solution 3(In case you have no time and that's what I did) == | + | ==Solution 3 (Inscribing in Circle)== |
+ | |||
+ | By the Pythagorean Theorem, <math>AC = \sqrt{(2 + \sqrt{3})^2 + 1} = \sqrt{8 + 4\sqrt{3}}</math>. So we have | ||
+ | <cmath>\arcsin \angle BCA = \frac{1}{\sqrt{8 + 4\sqrt{3}}} = \frac{1}{\sqrt{(\sqrt{6} + \sqrt{2})^2}} = \frac{\sqrt{6} - \sqrt{2}}{4}.</cmath> | ||
+ | |||
+ | We note that <cmath>\sin 15^\circ = \cos 75^\circ = \cos(30^\circ + 45^\circ) = \cos30^\circ \cos45^\circ - \sin45^\circ \sin30^\circ = \frac{\sqrt{6} - \sqrt{2}}{4}.</cmath> | ||
+ | |||
+ | Therefore, <math>\angle BCA = 15^\circ.</math> | ||
+ | |||
+ | Call the rotated rectangle given in the problem's diagram <math>AB'CD.</math> Since <math>\angle ACB' = \angle BCA = 15^\circ,</math> we have <math>\angle BCB' = 30^\circ.</math> So the angle formed between <math>B</math> and <math>B'</math> is <math>30^\circ \cdot 2 = 60^\circ</math>. | ||
+ | |||
+ | In general, when the rectangle is rotated, the angle formed between the left vertex of the original rectangle and the right vertex of the new rectangle is <math>60^\circ.</math> So we can inscribe the rectangles in a circle with <math>2 \cdot 360/60 = 12</math> equally spaced points, and the rotated rectangles will have vertices on these points. | ||
+ | <asy> | ||
+ | size(150); | ||
+ | defaultpen(fontsize(10pt)); | ||
+ | |||
+ | pair O = (0,0); | ||
+ | pair[] pts; | ||
+ | for (int i = 0; i < 12; ++i) { | ||
+ | pts[i] = dir(30 * i); | ||
+ | } | ||
+ | |||
+ | fill(pts[9]--pts[10]--pts[3]--pts[4]--cycle, paleblue); | ||
+ | fill(pts[8]--pts[9]--pts[2]--pts[3]--cycle, palegreen); | ||
+ | fill(pts[7]--pts[8]--pts[1]--pts[2]--cycle, palered); | ||
+ | |||
+ | draw(Circle(O,1)); | ||
+ | |||
+ | |||
+ | draw(O--pts[4], blue+1.5); | ||
+ | draw(O--pts[2], blue+1.5); | ||
+ | |||
+ | |||
+ | |||
+ | for (int i = 0; i < 12; ++i) { | ||
+ | dot(pts[i], black + 3); | ||
+ | } | ||
+ | |||
+ | dot(O, black + 3); | ||
+ | |||
+ | |||
+ | label("$O$", O, SW); | ||
+ | label("$B$", pts[4], dir(30 * 4)); | ||
+ | label("$A$", pts[3], dir(30 * 3)); | ||
+ | label("$B'$", pts[2], dir(30 * 2)); | ||
+ | label("$C$", pts[9], dir(30 * 9)); | ||
+ | label("$D$", pts[8], dir(30 * 8)); | ||
+ | |||
+ | |||
+ | |||
+ | real r = 0.2; | ||
+ | draw(arc(O, r, 120, 60), red+1.5); | ||
+ | |||
+ | label("$60^\circ$", O + r*dir(90) + (0,0.05), red); | ||
+ | </asy> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | We get the equation <math>P = 2(R + 1),</math> where <math>R</math> is the number of rectangles used and <math>P</math> is the number of points used on the circle for those rectangles (for example, 1 rectangle uses <math>4</math> points, <math>2</math> rectangles use <math>6</math>, etc). The vertex will land on <math>B</math> after we have used all <math>12</math> points on the circle plus the additional <math>2</math> points we get from creating a new rotated rectangle, so <math>P = 12 + 2 = 14.</math> Then <math>R = \boxed{\textbf{(A) }6}</math>. | ||
+ | |||
+ | ~[[User:grogg007|grogg007]] | ||
+ | |||
+ | ==Solution 4(In case you have no time and that's what I did) == | ||
<math>\tan{15}=\frac{\sin{15}}{\cos{15}}=\frac{1}{2+\sqrt3}</math> and it eliminates all options except <math>6</math> and <math>12</math>. After one rotation it has turned <math>30^{\circ}</math>, so to satisfy the problem, divide <math>\frac{180}{30}</math> and get <math>\boxed{\textbf{A. }6}</math>. | <math>\tan{15}=\frac{\sin{15}}{\cos{15}}=\frac{1}{2+\sqrt3}</math> and it eliminates all options except <math>6</math> and <math>12</math>. After one rotation it has turned <math>30^{\circ}</math>, so to satisfy the problem, divide <math>\frac{180}{30}</math> and get <math>\boxed{\textbf{A. }6}</math>. | ||
− | ==Solution 4== | + | ==Solution 4.5== |
Memorize that in a 15-75-90 right triangle, the ratios of the side lengths are <math>1</math>, <math>2+\sqrt3</math>, and <math>\sqrt2+\sqrt6</math>. So, we have that the diagonal of the rectangle forms a 15 degree angle. Drawing it out we see the answer is <math>\boxed{\textbf{(A) }6}</math>, and this makes sense because 15 times 6 is 90, thus rotating a vertex back to B. | Memorize that in a 15-75-90 right triangle, the ratios of the side lengths are <math>1</math>, <math>2+\sqrt3</math>, and <math>\sqrt2+\sqrt6</math>. So, we have that the diagonal of the rectangle forms a 15 degree angle. Drawing it out we see the answer is <math>\boxed{\textbf{(A) }6}</math>, and this makes sense because 15 times 6 is 90, thus rotating a vertex back to B. | ||
+ | |||
==Solution 5 (the simplest solution ever)== | ==Solution 5 (the simplest solution ever)== | ||
Look at the picture and draw the next one and continue draw down the line and then when you first hit B, count how many rectangles you’ve drawn (excluding the first which hasn’t been rotated), and you should get <math>\boxed{\textbf{(A) or 6}}</math> as the answer. | Look at the picture and draw the next one and continue draw down the line and then when you first hit B, count how many rectangles you’ve drawn (excluding the first which hasn’t been rotated), and you should get <math>\boxed{\textbf{(A) or 6}}</math> as the answer. |
Latest revision as of 07:17, 13 August 2025
Contents
Problem
On top of a rectangular card with sides of length and
, an identical card is placed so that two of their diagonals line up, as shown (
, in this case).
Continue the process, adding a third card to the second, and so on, lining up successive diagonals after rotating clockwise. In total, how many cards must be used until a vertex of a new card lands exactly on the vertex labeled in the figure?
Solution 1
Let the midpoint of be
.
We see that no matter how many moves we do, stays where it is.
Now we can find the angle of rotation () per move with the following steps:
Since Vertex
is the closest one and
Vertex C will land on Vertex B when cards are placed.
(someone insert diagram maybe)
~lptoggled, minor Latex edits by eevee9406
Solution 2
Let AC intersect BD at O,
We want to find
Since ,
So each time we rotate BD to AC for
, and we need to rotate
times to overlap a point with B
Therefore, the answer is
Note: If you don't remember
Solution 3 (Inscribing in Circle)
By the Pythagorean Theorem, . So we have
We note that
Therefore,
Call the rotated rectangle given in the problem's diagram Since
we have
So the angle formed between
and
is
.
In general, when the rectangle is rotated, the angle formed between the left vertex of the original rectangle and the right vertex of the new rectangle is So we can inscribe the rectangles in a circle with
equally spaced points, and the rotated rectangles will have vertices on these points.
We get the equation where
is the number of rectangles used and
is the number of points used on the circle for those rectangles (for example, 1 rectangle uses
points,
rectangles use
, etc). The vertex will land on
after we have used all
points on the circle plus the additional
points we get from creating a new rotated rectangle, so
Then
.
Solution 4(In case you have no time and that's what I did)
and it eliminates all options except
and
. After one rotation it has turned
, so to satisfy the problem, divide
and get
.
Solution 4.5
Memorize that in a 15-75-90 right triangle, the ratios of the side lengths are ,
, and
. So, we have that the diagonal of the rectangle forms a 15 degree angle. Drawing it out we see the answer is
, and this makes sense because 15 times 6 is 90, thus rotating a vertex back to B.
Solution 5 (the simplest solution ever)
Look at the picture and draw the next one and continue draw down the line and then when you first hit B, count how many rectangles you’ve drawn (excluding the first which hasn’t been rotated), and you should get as the answer.
~EaZ_Shadow
Solution 6
Process is the rotation around the center of the card point at the angle
By applying the Law of Cosines, we get
vladimir.shelomovskii@gmail.com, vvsss
Solution 7 (No Trig needed)
Let E and P be the intersection points, by symmetry axis of (since two rectangles are identical), we get:
Now assume there exists a point on
, where
Thus:
Connecting , we see that:
So F must collide with P, and triangle is a
-
-
triangle, so:
and external angle would be
~D3rrr
Solution 8 (Similar to Solution 1)
Let the vertex of the second rectangular card closest to be
and the unnamed vertex of the first card be
.
First, notice how the second rectangular card is a reflection of the first rectangular card about rotated about
. This means that the diagonal
from the second rectangular card would have been rotated an angle
clockwise. This also means that side
would have also been rotated an angle
clockwise, so the angle external to
would equal
. When this process is repeated, a regular polygon is formed with half the number of sides of the polygon being the answer.
To find , we can reflect triangle
about
to form an isosceles triangle. Then
By law of cosine:
Simplifying:
The resulting polygon from repeating the process would have sides and
cards would have to have been placed.
~SandCanyon
See also
2024 AMC 12A (Problems • Answer Key • Resources) | |
Preceded by Problem 17 |
Followed by Problem 19 |
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 |
These problems are copyrighted © by the Mathematical Association of America, as part of the American Mathematics Competitions.