2025 AMC 12A Problems/Problem 16: Difference between revisions
| Line 34: | Line 34: | ||
When we have a problem as such, involving a simple diagram with minimal instructions, I use a method I named "rulerbash". Rulerbash should only be used in specific cases and as a last resort, mainly in the event of a time crunch or a difficult problem. Start with the longest side, drawing a line with a length of <imath>8</imath> cm (<imath>AB</imath>). Then, using a compass, draw 2 circles centered around points <imath>A</imath> and <imath>B</imath>, <imath>7.5</imath> and <imath>4.5 cm</imath> radiuses respectfully. At the point of intersection of these 2 circles, we have point <imath>C</imath>, completing a perfectly scaled drawing of <imath>\triangle ABC</imath>. (Note the circles are not necessary with a bit of trial and error with the side lengths, they simply offer a way to get it done first try). | When we have a problem as such, involving a simple diagram with minimal instructions, I use a method I named "rulerbash". Rulerbash should only be used in specific cases and as a last resort, mainly in the event of a time crunch or a difficult problem. Start with the longest side, drawing a line with a length of <imath>8</imath> cm (<imath>AB</imath>). Then, using a compass, draw 2 circles centered around points <imath>A</imath> and <imath>B</imath>, <imath>7.5</imath> and <imath>4.5 cm</imath> radiuses respectfully. At the point of intersection of these 2 circles, we have point <imath>C</imath>, completing a perfectly scaled drawing of <imath>\triangle ABC</imath>. (Note the circles are not necessary with a bit of trial and error with the side lengths, they simply offer a way to get it done first try). | ||
<asy> | |||
unitsize(1cm); | unitsize(1cm); | ||
pair A=(0,0), B=(8,0); | pair A=(0,0), B=(8,0); | ||
real rA=7.5, rB=4.5; | real rA=7.5, rB=4.5; | ||
path cA=circle(A,rA), cB=circle(B,rB); | path cA=circle(A,rA), cB=circle(B,rB); | ||
pair[] pts = intersectionpoints(cA,cB); | pair[] pts = intersectionpoints(cA,cB); | ||
pair C = pts[0]; | pair C = pts[0]; | ||
draw(A--B); | draw(A--B); | ||
| Line 52: | Line 49: | ||
dot(A); dot(B); dot(C); | dot(A); dot(B); dot(C); | ||
label(" | label("$A$",A,S); | ||
label(" | label("$B$",B,S); | ||
label(" | label("$C$",C,N); | ||
label(" | label("$8\text{ cm}$",(A+B)/2,S); | ||
label(" | label("$7.5\text{ cm}$",A--C,NE,fontsize(9)); | ||
label(" | label("$4.5\text{ cm}$",B--C,NW,fontsize(9)); | ||
</asy> | |||
Revision as of 18:17, 8 November 2025
- The following problem is from both the 2025 AMC 10A #23 and 2025 AMC 12A #16, so both problems redirect to this page.
Problem
Triangle
has side lengths
,
, and
. The bisector
and the altitude to side
intersect at point
. What is
?
Solution 1
Let
with foot
. Right triangles
and
give
,
,
.
Since
and
, substituting we get
,
,
.
,
.
By Angle Bisector Theorem,
,
thus,
,
,
.
, thus
~pigwash
Solution 2 (Law of Cosines)
Scale this down to a
triangle (we will multiply the result by
in the end).
Note that
, so
, which simplifies to
. Then
(positive root since the angle is acute). Therefore, we have
, assuming that
is the foot of the altitude.
There are many ways to proceed from here to find
. Note that by Heron's formula, the area of the scaled-down triangle is
. Therefore,
. Using Pythagorean Theorem, we get
. Therefore, we get
, so
, and we scale up by
to get
.
~ScoutViolet
Solution 3 (Stewarts)
Let the foot of the altitude coming from
on segment
be
. Using the fact that
is a common leg in right triangles
and
, we have
Expanding gives
so
Let the foot of the angle bisector from
to
be point
. Since
is the angle bisector of
, we can use the angle bisector theorem. This gives
so
and
. Now we can use Stewart’s Theorem to find
. We have
To simplify this expression, just divide by the greatest common divisor and solve from there. In the end, we get
. Let
, so
. Draw the altitude from
down to
. Let the foot of this altitude be
. Since
, we have
. Hence, we can write the equation
Solving gives
, so
. Since
, we also have
, so we have
Solving for
gives
or
~evanhliu2009
Solution 4 (Rulerbash)
When we have a problem as such, involving a simple diagram with minimal instructions, I use a method I named "rulerbash". Rulerbash should only be used in specific cases and as a last resort, mainly in the event of a time crunch or a difficult problem. Start with the longest side, drawing a line with a length of
cm (
). Then, using a compass, draw 2 circles centered around points
and
,
and
radiuses respectfully. At the point of intersection of these 2 circles, we have point
, completing a perfectly scaled drawing of
. (Note the circles are not necessary with a bit of trial and error with the side lengths, they simply offer a way to get it done first try).
unitsize(1cm);
pair A=(0,0), B=(8,0);
real rA=7.5, rB=4.5;
path cA=circle(A,rA), cB=circle(B,rB);
pair[] pts = intersectionpoints(cA,cB);
pair C = pts[0];
draw(A--B);
draw(cA);
draw(cB);
draw(A--C--B--cycle);
dot(A); dot(B); dot(C);
label("$A$",A,S);
label("$B$",B,S);
label("$C$",C,N);
label("$8\text{ cm}$",(A+B)/2,S);
label("$7.5\text{ cm}$",A--C,NE,fontsize(9));
label("$4.5\text{ cm}$",B--C,NW,fontsize(9));
(Error making remote request. Unknown error_msg)
~curryswish, shreyan.chethan
Video Solution 1 by OmegaLearn
See Also
| 2025 AMC 10A (Problems • Answer Key • Resources) | ||
| Preceded by Problem 22 |
Followed by Problem 24 | |
| 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 | ||
| 2025 AMC 12A (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 12 Problems and Solutions | |
These problems are copyrighted © by the Mathematical Association of America.