2025 AMC 10A Problems/Problem 20
A silo (right circular cylinder) with diameter 20 meters stands in a field. MacDonald is located 20 meters west and 15 meters south of the center of the silo. McGregor is located 20 meters east and
meters south of the center of the silo. The line of sight between MacDonald and McGregor is tangent to the silo. The value of g can be written as
, where
and
are positive integers,
is not divisible by the square of any prime, and
is relatively prime to the greatest common divisor of
and
. What is
?
Solution 1
import olympiad;
size(350);
// scale: 1 unit = 1 meter
pair O = (0,0);
real R = 10;
// Points per problem statement
pair B = (-20,0);
pair A = (-20,-15);
pair C = (20,0);
// exact g and point D
real g = (20*sqrt(21)-75)/3; // exact expression used for positioning
pair D = (20, -g);
// circle (silo)
draw(circle(O,R), heavyblue);
// ground line (BC, extended)
draw((-60,0)--(60,0), gray+0.6);
// tangent line AD and its extension
path lineAD = A--D;
draw(lineAD, black);
// tangent point T = intersection of line AD with circle
pair[] inters = intersectionpoints(lineAD, circle(O,R));
pair T;
if (length(inters) > 0) {
// choose the intersection closer to A (tangent gives one point but numerical returns one)
T = inters[0];
} else {
T = projection(O, A--D);
}
// intersection with ground line (y=0)
pair F = intersectionpoint(lineAD, (-100,0)--(100,0));
// draw segments and helper lines
draw(A--B, dashed+gray); // vertical from A to B
draw(B--O, dashed+gray); // B to center O
// mark points
dot(O); label("$O$", O, NE);
dot(A); label("$A$", A, SW);
dot(B); label("$B$", B, N);
dot(C); label("$C$", C, N);
dot(D); label("$D$", D, SE);
dot(T); label("$T$", T, NE);
dot(F); label("$F$", F, S);
// right-angle marker at B for triangle A-B-O
draw(rightanglemark(A,B,O,8));
// annotate radius and small helper
draw(O--T, medium+darkblue); label("$10$", (O+T)/2 + (0.7,0.2));
// annotate x = CF
real xdist = F.x - C.x;
pair xm = (C + F)/2;
draw(C--F, Arrow(size=5));
label("$x =", xm + (0,-0.5));
label(string(xdist), xm + (0,-1.0)); // numeric for quick reference
// show algebraic g near D (use LaTeX in label)
label("$g=<br />dfrac{20<br />sqrt{21}-75}{3}$", D + (6,0));
// small view adjustments
xlimits(-40, 60);
ylimits(-20, 6);
shipout(bbox(5mm));
(Error making remote request. Unknown error_msg)
Let the silo center be
, let the point MacDonald is situated at be
, and let the point
meters west of the silo center be
.
is then a right triangle with side lengths
and
.
Let the point
meters east of the silo center be
, and let the point McGregor is at be
with
. Also let
be tangent to circle
at
.
Extend
and
to meet at point
. This creates
similar triangles,
. Let the distance between point
and
be
. The similarity ratio between triangles
and
is then
This is currently unsolvable so we bring in triangle
. The hypotenuse of triangle
is
and its shorter leg is the radius of the silo
. We can then establish a second similarity relationship between triangles
and
with
Now we find the hypotenuse of
in terms of x using the Pythagorean theorem.
. Which simplifies to
So
Plugging back in we get
. Now we can begin to break this down by multiplying both sides by both denominators.
Dividing both sides by
then squaring yields,
This furthermore simplifies to
At which point we can divide off a
and then apply the quadratic formula on
which we take the positive root of.
Simplifying yields that
Then to solve for
we simply plug
back into the first similarity ratio to get
Multiply both sides by
and dividing by
will let us solve for
and after rationalizing the denominator we get
.
Neoronean
Video Solution (In 5 Mins)
https://youtu.be/1Xc1blWnWSo?si=pBd85mIZwYjbOEdG ~ Pi Academy
Video Solution
~MK
See Also
| 2025 AMC 10A (Problems • Answer Key • Resources) | ||
| Preceded by Problem 19 |
Followed by Problem 21 | |
| 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 | ||
These problems are copyrighted © by the Mathematical Association of America.