Difference between revisions of "2025 AIME I Problems/Problem 9"
m (→Solution 2 (Polar Coordinates)) |
m (→Graph) |
||
(49 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
==Graph== | ==Graph== | ||
− | + | https://www.desmos.com/calculator/ci3vodl4vs | |
− | + | ==Solution 1== | |
− | + | We need to relate the rotation to something simpler because substituting the equation of the rotated parabola into the original will give us a quartic. | |
− | + | <asy> | |
+ | size(300); | ||
+ | import graph; | ||
− | = | + | // View window |
− | + | real L = 6; | |
+ | |||
+ | // Original parabola y = x^2 - 4 | ||
+ | real f(real x){ return x^2 - 4; } | ||
+ | |||
+ | // Rotation by +60 degrees about the origin | ||
+ | pair rot60(pair P){ | ||
+ | real ang = pi/3; | ||
+ | return (P.x*cos(ang) - P.y*sin(ang), P.x*sin(ang) + P.y*cos(ang)); | ||
+ | } | ||
+ | |||
+ | // Axes | ||
+ | draw((-L,0)--(L,0), gray(0.65), Arrows(4)); | ||
+ | draw((0,-L)--(0,L), gray(0.65), Arrows(4)); | ||
+ | |||
+ | // Plot original parabola | ||
+ | real xmin=-3.5, xmax=3.5; | ||
+ | path parab = graph(f, xmin, xmax); | ||
+ | draw(parab, blue+1.2bp); | ||
+ | |||
+ | // Build rotated parabola by sampling, then connecting smoothly | ||
+ | int N=220; | ||
+ | pair[] pts; | ||
+ | for(int i=0; i<=N; ++i){ | ||
+ | real x = xmin + (xmax - xmin)*i/N; | ||
+ | pts.push(rot60((x, f(x)))); | ||
+ | } | ||
+ | path rpar = pts[0]; | ||
+ | for(int i=1; i<=N; ++i) rpar = rpar..pts[i]; | ||
+ | draw(rpar, red+1.2bp); | ||
+ | |||
+ | // Line y = -sqrt(3) x | ||
+ | draw((-L, sqrt(3)*L)--(L, -sqrt(3)*L), rgb(0,0.45,0)+1.2bp); | ||
+ | |||
+ | // Vertices | ||
+ | pair v1 = (0,-4); // original vertex | ||
+ | pair v2 = rot60(v1); // rotated vertex | ||
+ | dot(v1, blue+4bp); | ||
+ | dot(v2, red+4bp); | ||
+ | </asy> | ||
− | + | Notice that the vertices of the original parabola and its image are symmetrical about the angle bisector of the 60 degree rotation (shown in green). | |
+ | |||
+ | The equation of this line is <math>y = -\tan60^\circ \cdot x = -\sqrt{3}x.</math> This means that the point lying on this line and the original parabola must be the intersection of the new and original images since it won't change position with the rotation. | ||
− | |||
− | We | + | We substitute <math>y = x^2 - 4:</math> |
+ | <cmath>x^2 - 4 = -\sqrt{3}x</cmath> | ||
+ | <cmath>x = \frac{-\sqrt{3} + \sqrt{19}}{2}.</cmath> | ||
− | + | Then <math>y = (\frac{-\sqrt{3} + \sqrt{19}}{2})^2 - 4 = \frac{3 - \sqrt{57}}{2}.</math> <math>57 + 3 + 2 = \boxed{62}.</math> | |
− | + | ~[[User:grogg007|grogg007]], ~[[User:Mathkiddus|mathkiddus]] | |
− | ==Solution | + | ==Solution 2 (Similar to Solution 1)== |
Note that this question is equivalent to finding a point <math>B</math> in the fourth quadrant, such that when a point <math>A</math> on the graph of <math>y = x^2 - 4</math> is rotated <math>60^\circ</math> counterclockwise around the origin, it lands on <math>B</math>, which is also on the graph. | Note that this question is equivalent to finding a point <math>B</math> in the fourth quadrant, such that when a point <math>A</math> on the graph of <math>y = x^2 - 4</math> is rotated <math>60^\circ</math> counterclockwise around the origin, it lands on <math>B</math>, which is also on the graph. | ||
Line 57: | Line 101: | ||
~[[User:IDKHowtoaddsolution|IDKHowtoaddsolution]] | ~[[User:IDKHowtoaddsolution|IDKHowtoaddsolution]] | ||
− | The last part of this solution is essentially Solution 1. | + | The last part of this solution is essentially Solution 1. |
== Video Solution == | == Video Solution == |
Latest revision as of 23:00, 17 August 2025
Contents
Problem
The parabola with equation is rotated
counterclockwise around the origin. The unique point in the fourth quadrant where the original parabola and its image intersect has
-coordinate
, where
,
, and
are positive integers, and
and
are relatively prime. Find
.
Graph
https://www.desmos.com/calculator/ci3vodl4vs
Solution 1
We need to relate the rotation to something simpler because substituting the equation of the rotated parabola into the original will give us a quartic.
Notice that the vertices of the original parabola and its image are symmetrical about the angle bisector of the 60 degree rotation (shown in green).
The equation of this line is This means that the point lying on this line and the original parabola must be the intersection of the new and original images since it won't change position with the rotation.
We substitute
Then
Solution 2 (Similar to Solution 1)
Note that this question is equivalent to finding a point in the fourth quadrant, such that when a point
on the graph of
is rotated
counterclockwise around the origin, it lands on
, which is also on the graph.
The first thing to note is that point and
must be equidistant to the origin. If we express the coordinates of
as \((a, b)\), and the coordinates of
as \((x, y)\), we have:
\(\|OA\|\) = \(\|OB\|\)
Which means that:
\(\sqrt{a^2 + b^2} = \sqrt{x^2 + y^2}\)
Since and
, we have
and
, substituting this into the previous equation and squaring both sides yields:
\(2a^2 + 4 = 2x^2 + 4\)
Meaning that \(a^2 = x^2\), since and
clearly cannot coincide, we must have \(a = -x\), since
is an even function, this means that point
and
are just reflections of each other over the y axis. The angle between \(\overline{OA}\) and \(\overline{OB}\) is
and
and
is symmetrical, the y axis should bisect the angle \angle AOB, i.e., the angle between \(\overline{OB}\) and the y axis is:
Therefore the point must lie on the line
We have:
\(x^2 - 4 = -\sqrt{3}x\)
Using the quadratic formula and keeping in mind that the x value is positive (since is in the fourth quadrant) yields \( x = \frac{\sqrt{19} - \sqrt{3}}{2} \).
Substituting into We get
The last part of this solution is essentially Solution 1.
Video Solution
See also
2025 AIME I (Problems • Answer Key • Resources) | ||
Preceded by Problem 8 |
Followed by Problem 10 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |
These problems are copyrighted © by the Mathematical Association of America, as part of the American Mathematics Competitions.