Difference between revisions of "2001 AMC 12 Problems/Problem 22"
m (→Solution 1) |
(→See also) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 37: | Line 37: | ||
draw(H--D, dashed); | draw(H--D, dashed); | ||
</asy> | </asy> | ||
− | Note that the triangles <math>AFH</math> and <math>CEH</math> are similar, as they have the same angles. Hence <math>\frac {AH}{HC} = \frac{AF}{EC} = \frac | + | Note that the triangles <math>AFH</math> and <math>CEH</math> are similar, as they have the same angles. Hence <math>\frac {AH}{HC} = \frac{AF}{EC} = \frac 23</math>. |
Also, triangles <math>AGJ</math> and <math>CEJ</math> are similar, hence <math>\frac {AJ}{JC} = \frac {AG}{EC} = \frac 43</math>. | Also, triangles <math>AGJ</math> and <math>CEJ</math> are similar, hence <math>\frac {AJ}{JC} = \frac {AG}{EC} = \frac 43</math>. | ||
Line 83: | Line 83: | ||
~[https://artofproblemsolving.com/wiki/index.php/User:Isabelchen isabelchen] | ~[https://artofproblemsolving.com/wiki/index.php/User:Isabelchen isabelchen] | ||
+ | |||
+ | == Solution 6 (Mass Points) == | ||
+ | |||
+ | We need one more pair of ratios to fully define our mass point system. Let's use <math>\triangle AFH \sim \triangle CEH\implies EH:HF = 3:2</math> and now do mass points on <math>\triangle AEG</math>: | ||
+ | |||
+ | <asy> | ||
+ | size(250); | ||
+ | pair A = (0,0), B = (10,0), C = (10,7), D = (0,7); | ||
+ | pair F = (10/3,0), G = (20/3,0), E = (5,7); | ||
+ | pair H = intersectionpoint(A--C, E--F); | ||
+ | pair J = intersectionpoint(A--C, E--G); | ||
+ | filldraw(A--E--G--cycle, rgb(1,1,1)+opacity(0.3), red+2bp); | ||
+ | draw(A--B--C--D--cycle); | ||
+ | draw(A--C); | ||
+ | draw(E--F); | ||
+ | draw(E--G); | ||
+ | draw(A--E, dashed); | ||
+ | draw(E--B, dashed); | ||
+ | dot("$A$", A, SW); | ||
+ | dot("$B$", B, SE); | ||
+ | dot("$C$", C, NE); | ||
+ | dot("$D$", D, NW); | ||
+ | dot("$E$", E, N); | ||
+ | dot("$F$", F, S); | ||
+ | dot("$G$", G, S); | ||
+ | dot("$H$", H, ESE); | ||
+ | dot("$J$", J, W); | ||
+ | |||
+ | // mass point labels | ||
+ | pair mass = A + SW; | ||
+ | label(scale(0.8)*"$3$", mass, UnFill); | ||
+ | draw(circle(mass, .4), linewidth(1)); | ||
+ | pair mass = F + S; | ||
+ | label(scale(0.8)*"$6$", mass, UnFill); | ||
+ | draw(circle(mass, .4), linewidth(1)); | ||
+ | pair mass = G + SE; | ||
+ | label(scale(0.8)*"$3$", mass, UnFill); | ||
+ | draw(circle(mass, .4), linewidth(1)); | ||
+ | pair mass = J + .7*ESE; | ||
+ | label(scale(0.8)*"$7$", mass, UnFill); | ||
+ | draw(circle(mass, .4), linewidth(1)); | ||
+ | pair mass = E + N; | ||
+ | label(scale(0.8)*"$4$", mass, UnFill); | ||
+ | draw(circle(mass, .4), linewidth(1)); | ||
+ | pair mass = H + .7*WNW; | ||
+ | label(scale(0.8)*"$10$", mass, UnFill); | ||
+ | draw(circle(mass, .4), linewidth(1)); | ||
+ | </asy> | ||
+ | |||
+ | Now it's just a standard "Area Reduction by Ratios"™ problem going from: | ||
+ | |||
+ | <cmath>[ABCD]\xrightarrow[]{\frac{1}{2}}[AEB]\xrightarrow[]{\frac{2}{3}}[AEG]\xrightarrow[]{\frac{3}{7}}[AEJ]\xrightarrow[]{\frac{3}{10}}[HEJ]</cmath> | ||
+ | |||
+ | or, | ||
+ | |||
+ | <cmath>70 \cdot \frac{1}{2}\cdot \frac{2}{3}\cdot \frac{3}{7}\cdot \frac{3}{10} = \boxed{\textbf{(C) }3}</cmath> | ||
+ | |||
+ | ~ proloto | ||
==See also== | ==See also== | ||
− | {{AMC12 box|year= | + | {{AMC12 box|year=2001|num-b=21|num-a=23}} |
− | |||
{{MAA Notice}} | {{MAA Notice}} |
Latest revision as of 01:27, 29 August 2023
Contents
[hide]Problem
In rectangle , points
and
lie on
so that
and
is the midpoint of
. Also,
intersects
at
and
at
. The area of the rectangle
is
. Find the area of triangle
.
Solution 1
Note that the triangles
and
are similar, as they have the same angles. Hence
.
Also, triangles and
are similar, hence
.
We can now compute as
. We have:
.
is
of
, as these two triangles have the same base
, and
is
of
, therefore also the height from
onto
is
of the height from
. Hence
.
is
of
, as the base
is
of the base
, and the height from
is
of the height from
. Hence
.
is
of
for similar reasons, hence
.
Therefore .
Solution 2
As in the previous solution, we note the similar triangles and prove that is in
and
in
of
.
We can then compute that .
As is the midpoint of
, the height from
onto
is
of the height from
onto
. Therefore we have
.
Solution 3
Because we see that there are only lines and there is a rectangle, we can coordbash (place this figure on coordinates). Because this is a general figure, we can assume the sides are and
(or any other two positive real numbers that multiply to 70). We can find
and
by intersecting lines, and then we calculate the area of
using shoelace formula. This yields
.
Solution 4
Note that triangle is similar to triangle
with ratio
. Similarly, triangle
is similar to triangle
with ratio
. Thus, if
then we know that
and
meaning
and thus the ratio of
to
is
which equals the ratio of the areas of
to
. If
, then we know that
and since
and we want to find
of this, we get our answer is
. -SuperJJ
Solution 5
,
,
,
,
,
,
,
Solution 6 (Mass Points)
We need one more pair of ratios to fully define our mass point system. Let's use and now do mass points on
:
Now it's just a standard "Area Reduction by Ratios"™ problem going from:
or,
~ proloto
See also
2001 AMC 12 (Problems • Answer Key • Resources) | |
Preceded by Problem 21 |
Followed by Problem 23 |
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.