Difference between revisions of "2008 AMC 12B Problems/Problem 25"
m |
Virjoy2001 (talk | contribs) m (→Solution 6) |
||
(28 intermediate revisions by 12 users not shown) | |||
Line 1: | Line 1: | ||
− | ==Problem | + | ==Problem== |
Let <math>ABCD</math> be a trapezoid with <math>AB||CD, AB=11, BC=5, CD=19,</math> and <math>DA=7</math>. Bisectors of <math>\angle A</math> and <math>\angle D</math> meet at <math>P</math>, and bisectors of <math>\angle B</math> and <math>\angle C</math> meet at <math>Q</math>. What is the area of hexagon <math>ABQCDP</math>? | Let <math>ABCD</math> be a trapezoid with <math>AB||CD, AB=11, BC=5, CD=19,</math> and <math>DA=7</math>. Bisectors of <math>\angle A</math> and <math>\angle D</math> meet at <math>P</math>, and bisectors of <math>\angle B</math> and <math>\angle C</math> meet at <math>Q</math>. What is the area of hexagon <math>ABQCDP</math>? | ||
Line 7: | Line 7: | ||
<center>[[File:2008_AMC_12B_25.jpg]]</center> | <center>[[File:2008_AMC_12B_25.jpg]]</center> | ||
+ | |||
+ | Note: In the image AB and CD have been swapped from their given lengths in the problem. However, this doesn't affect any of the solving. | ||
Drop perpendiculars to <math>CD</math> from <math>A</math> and <math>B</math>, and call the intersections <math>X,Y</math> respectively. Now, <math>DA^2-BC^2=(7-5)(7+5)=DX^2-CY^2</math> and <math>DX+CY=19-11=8</math>. Thus, <math>DX-CY=3</math>. | Drop perpendiculars to <math>CD</math> from <math>A</math> and <math>B</math>, and call the intersections <math>X,Y</math> respectively. Now, <math>DA^2-BC^2=(7-5)(7+5)=DX^2-CY^2</math> and <math>DX+CY=19-11=8</math>. Thus, <math>DX-CY=3</math>. | ||
Line 17: | Line 19: | ||
Over to the other side: <math>\triangle BCY</math> is <math>30-60-90</math>, and is therefore congruent to <math>\triangle BCQ</math>. So <math>[BCQ]=\frac{5\cdot5\sqrt{3}}{8}</math>. | Over to the other side: <math>\triangle BCY</math> is <math>30-60-90</math>, and is therefore congruent to <math>\triangle BCQ</math>. So <math>[BCQ]=\frac{5\cdot5\sqrt{3}}{8}</math>. | ||
− | The area of the hexagon is clearly < | + | The area of the hexagon is clearly |
+ | <cmath>\begin{align*} | ||
+ | [ABCD]-([BCQ]+[APD]) &=\frac{15\cdot5\sqrt{3}}{2}-\frac{60\sqrt{3}}{8}\\ | ||
+ | &=30\sqrt{3}\implies\boxed{\mathrm{B}} \end{align*}</cmath> | ||
− | == | + | Note: Once <math>DY</math> is found, there is no need to do the trig. Notice that the hexagon consists of two trapezoids, <math>ABPQ</math> and <math>CDPQ</math>. <math>PQ = \frac{19-7-5 +11}{2} = 9</math>. The height is one half of <math>BY</math> which is <math>\frac{5\sqrt{3}}{4}</math>. So the area is |
+ | <cmath>\frac{1}{2} \cdot \frac{5\sqrt{3}}{4}(19+9+11+9)=30\sqrt{3}</cmath> | ||
+ | |||
+ | ==Solution 2== | ||
<center>[[File:2008_AMC_12B_25_II.JPG]]</center> | <center>[[File:2008_AMC_12B_25_II.JPG]]</center> | ||
Line 41: | Line 49: | ||
Multiplying this by 12, we find that the area of hexagon <math>ABQCDP</math> is <math>30\sqrt{3}</math>, which corresponds to answer choice <math>\boxed{B}</math>. | Multiplying this by 12, we find that the area of hexagon <math>ABQCDP</math> is <math>30\sqrt{3}</math>, which corresponds to answer choice <math>\boxed{B}</math>. | ||
+ | |||
+ | ==Solution 3== | ||
+ | <asy> | ||
+ | unitsize(0.6cm); | ||
+ | import olympiad; | ||
+ | pair A,B,C,D,P,Q,M,N,W,X,Y,Z; | ||
+ | A=(11/2,5sqrt(3)/2); | ||
+ | B=(33/2,5sqrt(3)/2); | ||
+ | C=(19,0); | ||
+ | D=(0,0); | ||
+ | P=incenter(A,D,(99999,5sqrt(3)/4)); | ||
+ | Q=incenter(B,C,(-99999,5sqrt(3)/4)); | ||
+ | W=P+(0,5sqrt(3)/4); | ||
+ | X=P-(0,5sqrt(3)/4); | ||
+ | Y=Q+(0,5sqrt(3)/4); | ||
+ | Z=Q-(0,5sqrt(3)/4); | ||
+ | M=reflect(A,P)*W; | ||
+ | N=reflect(B,Q)*Y; | ||
+ | draw(A--B--C--D--cycle); | ||
+ | draw(A--P--D); | ||
+ | draw(B--Q--C); | ||
+ | label("$A$",A,dir(135)); | ||
+ | label("$B$",B,dir(45)); | ||
+ | label("$C$",C,dir(315)); | ||
+ | label("$D$",D,dir(225)); | ||
+ | dot("$P$",P,dir(0)); | ||
+ | dot("$Q$",Q,dir(180)); | ||
+ | draw(W--X); | ||
+ | draw(Y--Z); | ||
+ | draw(M--P); | ||
+ | draw(N--Q); | ||
+ | label("$11$",midpoint(A--B),dir(90)); | ||
+ | label("$5$",midpoint(B--C),dir(45)); | ||
+ | label("$19$",midpoint(C--D),dir(270)); | ||
+ | label("$7$",midpoint(D--A),dir(135)); | ||
+ | label("$x$",midpoint(P--W),dir(0)); | ||
+ | label("$x$",midpoint(P--X),dir(0)); | ||
+ | label("$x$",midpoint(P--M),dir(225)); | ||
+ | label("$x$",midpoint(Q--Y),dir(180)); | ||
+ | label("$x$",midpoint(Q--Z),dir(180)); | ||
+ | label("$x$",midpoint(Q--N),dir(315)); | ||
+ | draw(rightanglemark(P,W,B,12.5)); | ||
+ | draw(rightanglemark(P,X,C,12.5)); | ||
+ | draw(rightanglemark(P,M,D,12.5)); | ||
+ | draw(rightanglemark(Q,Y,A,12.5)); | ||
+ | draw(rightanglemark(Q,Z,D,12.5)); | ||
+ | draw(rightanglemark(Q,N,C,12.5)); | ||
+ | </asy> | ||
+ | |||
+ | <math>P</math> is the intersection of the angle bisectors of <math>\angle A</math> and <math>\angle D</math>. By definition, angle bisectors are always equidistant from the sides of the angle, so <math>P</math> is equidistant from <math>\overline{AB}</math>, <math>\overline{AD}</math>, and <math>\overline{CD}</math>. Likewise, point <math>Q</math> is equidistant from <math>\overline{AB}</math>, <math>\overline{BC}</math>, and <math>\overline{CD}</math>. Because both points <math>P</math> and <math>Q</math> are equidistant from <math>\overline{AB}</math> and <math>\overline{CD}</math> and the distance between <math>\overline{AB}</math> and <math>\overline{CD}</math> is constant, the common distances from each of the points to the mentioned segments is equal for <math>P</math> and <math>Q</math>. Call this distance <math>x</math>. | ||
+ | |||
+ | The distance between a point and a line is the length of the segment perpendicular to the line with one endpoint on the line and the other on the point. This means the altitude from <math>P</math> to <math>\overline{AD}</math> is <math>x</math>, so the area of <math>\triangle ADP</math> is equal to <math>\frac12\cdot AD\cdot x=\frac72x</math>. Similarly, the area of <math>\triangle BCQ</math> is <math>\frac12\cdot BC\cdot x=\frac52x</math>. The altitude of the trapezoid is <math>2x</math>, because it is the sum of the distances from either <math>P</math> or <math>Q</math> to <math>\overline{AB}</math> and <math>\overline{CD}</math>. This means the area of trapezoid <math>ABCD</math> is <math>\frac12(AB+CD)\cdot2x=\frac12(11+19)\cdot2x=30x</math>. Now, the area of hexagon <math>ABQCDP</math> is the area of trapezoid <math>ABCD</math>, minus the areas of triangles <math>ADP</math> and <math>BCQ</math>. This is <math>30x-\frac72x-\frac52x=24x</math>. Now it remains to find <math>x</math>. | ||
+ | |||
+ | <asy> | ||
+ | unitsize(0.6cm); | ||
+ | import olympiad; | ||
+ | pair A,B,C,D,R,S; | ||
+ | A=(11/2,5sqrt(3)/2); | ||
+ | B=(33/2,5sqrt(3)/2); | ||
+ | C=(19,0); | ||
+ | D=(0,0); | ||
+ | R=(11/2,0); | ||
+ | S=(33/2,0); | ||
+ | draw(A--B--C--D--cycle); | ||
+ | draw(A--R); | ||
+ | draw(B--S); | ||
+ | label("$A$",A,dir(135)); | ||
+ | label("$B$",B,dir(45)); | ||
+ | label("$C$",C,dir(315)); | ||
+ | label("$D$",D,dir(225)); | ||
+ | label("$R$",R,dir(270)); | ||
+ | label("$S$",S,dir(270)); | ||
+ | label("$11$",midpoint(A--B),dir(90)); | ||
+ | label("$5$",midpoint(B--C),dir(45)); | ||
+ | label("$11$",midpoint(R--S),dir(270)); | ||
+ | label("$7$",midpoint(D--A),dir(135)); | ||
+ | label("$r$",midpoint(R--D),dir(270)); | ||
+ | label("$s$",midpoint(C--S),dir(270)); | ||
+ | label("$19$",midpoint(C--D),5*dir(270)); | ||
+ | label("$2x$",midpoint(A--R),dir(0)); | ||
+ | label("$2x$",midpoint(B--S),dir(180)); | ||
+ | draw(rightanglemark(A,R,D,15)); | ||
+ | draw(rightanglemark(B,S,C,15)); | ||
+ | </asy> | ||
+ | |||
+ | We let <math>R</math> and <math>S</math> be the feet of the altitudes of <math>A</math> and <math>B</math>, respectively, to <math>\overline{CD}</math>. We define <math>r=RD</math> and <math>s=SC</math>. We know that <math>AB=RS</math>, so <math>RS=11</math> and <math>r+s=19-11=8</math>. By the Pythagorean Theorem on <math>\triangle ADR</math> and <math>\triangle BCS</math>, we get <math>r^2+(2x)^2=7^2</math> and <math>s^2+(2x)^2=5^2</math>, respectively. Subtracting the second equation from the first gives us <math>r^2-s^2=49-25=24</math>. The left hand side of this equation is a difference of squares and factors to <math>(r+s)(r-s)</math>. We know that <math>r+s=8</math>, so <math>r-s=\frac{24}8=3</math>. Now we can solve for <math>r</math> by adding the two equations we just got to see that <math>2r=11</math>, or <math>r=\frac{11}2</math>. | ||
+ | |||
+ | We now solve for <math>x</math>. We know that <math>r^2+(2x)^2=49</math>, so <math>(2x)^2=49-\left(\frac{11}2\right)^2=\frac{75}4</math> and <math>2x=\frac{5\sqrt3}2</math>. We multiply both sides of this equation by <math>12</math> to get <math>24x=30\sqrt3</math>. However, the area of hexagon <math>ABQCDP</math> is <math>24x</math>, so the answer is <math>30\sqrt 3</math>, or answer choice <math>\boxed{B}</math>. | ||
+ | |||
+ | ==Solution 4== | ||
+ | <asy> | ||
+ | import olympiad; | ||
+ | unitsize(0.5cm); | ||
+ | |||
+ | pair A, B, C, D; | ||
+ | A = 5*(Cos(120), Sin(120)); | ||
+ | B = A + (-11, 0); | ||
+ | C = origin + (-19, 0); | ||
+ | D = origin; | ||
+ | |||
+ | label("$A$", A, dir(30)); | ||
+ | label("$B$", B, dir(150)); | ||
+ | label("$C$", C, dir(150)); | ||
+ | label("$D$", D, dir(30)); | ||
+ | |||
+ | pair E, F, G, H; | ||
+ | E = bisectorpoint(B, A, D); | ||
+ | F = bisectorpoint(A, B, C); | ||
+ | G = bisectorpoint(B, C, D); | ||
+ | H = bisectorpoint(C, D, A); | ||
+ | |||
+ | pair P, Q; | ||
+ | P = extension(A, E, D, H); | ||
+ | Q = extension(B, F, C, G); | ||
+ | |||
+ | dot("$P$", P, dir(20)); | ||
+ | dot("$Q$", Q, dir(150)); | ||
+ | |||
+ | pair W, X, Y, Z; | ||
+ | W = extension(A, P, D, C); | ||
+ | X = extension(B, Q, C, D); | ||
+ | Y = extension(C, Q, A, B); | ||
+ | Z = extension(D, P, A, B); | ||
+ | |||
+ | label("$W$", W, dir(100)); | ||
+ | label("$X$", X, dir(60)); | ||
+ | label("$Y$", Y, dir(50)); | ||
+ | label("$Z$", Z, dir(140)); | ||
+ | |||
+ | draw(A--W--X--B--Y--C--D--Z--B--C--Y--A--D); | ||
+ | </asy> | ||
+ | |||
+ | Let <math>W, X, Y, Z = \overline{AP} \cap \overline{CD}, \overline{BQ} \cap \overline{CD}, \overline{CQ} \cap \overline{AB}, \overline{DP} \cap \overline{AB}</math> respectively. Since <math>\angle{DCQ} = \angle{BCQ}, \angle{CBQ} = \angle{ABQ}</math> we have <math>\angle{QCB} + \angle{CBQ} = 90 \iff \overline{BX} \perp \overline{CY};</math> similarly we get <math>\overline{AW} \perp \overline{DZ}.</math> Thus, <math>\overline{BQ}</math> is both an angle bisector and altitude of <math>\triangle{CBY}</math> so <math>BC = BY.</math> Using the same logic on <math>\triangle{BCX}</math> gives <math>BC = BX \iff BYXC</math> is a rhombus; similarly, <math>ADWZ</math> is a rhombus. Then, <math>[ABQCDP] = [ABCD] - \frac{1}{4}\left([BYXC] + [ADWZ]\right) = 15h - \frac{1}{4}(7h + 12h) = 12h</math> where <math>h</math> is the height of trapezoid <math>ABCD.</math> Finding <math>h</math> is the same as finding the altitude to the side of length <math>8</math> in a <math>5-7-8</math> triangle, and using Heron's, the area of such a triangle is <math>\sqrt{10(5)(3)(2)} = 10 \sqrt{3} = 4h \iff h = \frac{5\sqrt{3}}{2}.</math> Multiply to get our answer is <math>\boxed{\mathrm{B}}.</math> | ||
+ | |||
+ | ==Solution 5== | ||
+ | |||
+ | Like above solutions, find out the height of <math>ABCD</math> is <math>\frac{5 \sqrt{3}}{2}.</math> Let <math>M</math> be the intersection of the line through <math>Q</math> and parallel to <math>AB,</math> and <math>N</math> the intersection of the line through <math>P</math> and parallel to <math>AB.</math> Angle chasing shows that <math>M</math> is the midpoint of <math>BC</math> and <math>N</math> midpoint of <math>AD.</math> Then from midline theorem, <math>M, Q, N</math> are collinear, and likewise for <math>N, P, M.</math> Thus, the line through <math>PQ</math> is in fact the midline of <math>ABCD.</math> | ||
+ | |||
+ | |||
+ | Let <math>BQ \cap CD = X, AP \cap CD = Y.</math> Then, angle chasing shows that <math>CQ</math> not only bisects <math>BX,</math> but is also perpendicular to it. This makes it a perpendicular bisector. The same is true for <math>DP</math> and <math>AY.</math> Thus, <math>CX = CB = 5,</math> and <math>DY = DA = 7.</math> This means <math>XY = 19 - 5 - 7 = 7.</math> We can now find <math>PQ</math> as the midline of <math>ABXY.</math> Thus, <math>PQ = \frac{1}{2} (11+7) = 9.</math> | ||
+ | |||
+ | Now, the answer is simply finding the area of <math>ABQP</math> plus area of <math>CDPQ.</math> This is <math>\frac{1}{2} \cdot \frac{5 \sqrt{3}}{2} \cdot \frac{11+9}{2} + \frac{1}{2} \cdot \frac{5 \sqrt{3}}{2} \cdot \frac{19+9}{2} = \boxed{30 \sqrt{3}}.</math> | ||
+ | |||
+ | ~ MelonGirl | ||
+ | |||
+ | ==Solution 6== | ||
+ | Observe that if we reduce the lengths of the parallel sides by the length <math>PQ</math>, <math>P</math> and <math>Q</math> will coincide because <math>PQ \parallel AB.</math> When they coincide, they happen to be the incenter of <math>ABCD</math> because all four angle bisectors intersect there. | ||
+ | |||
+ | Let the shortened trapezoid be <math>AB'C'D.</math> | ||
+ | |||
+ | To determine the length of <math>PQ,</math> we can use the two tangent theorem to get <math>AB' + C'D = AD + B'C',</math> or <math>7+5=19-PQ+11-PQ,</math> so <math>PQ = 9.</math> | ||
+ | |||
+ | The distance from <math>P</math> to both <math>AB</math> and <math>CD</math> is the same because it is the incenter. To find the height <math>r</math> of both trapezoids, translate <math>BC</math> to <math>B''C''</math> such that <math>C''</math> maps to <math>D.</math> By using Heron's formula and the known base of <math>19-11=8,</math> we get that the altitude of <math>ABCD</math> is <math>\frac{5\sqrt{3}}{2}.</math> Therefore each of the altitudes of <math>ABQP</math> and <math>CDOQ</math> are <math>\frac{5\sqrt{3}}{4}.</math> | ||
+ | |||
+ | Therefore, the area of the hexagon is the sum of the area of the two trapezoids, which is just <cmath>\frac{5\sqrt{3}}{4} \left( \dfrac{19+9}{2}\right) + \frac{5\sqrt{3}}{4} \left( \dfrac{11+9}{2}\right) = \boxed{\text{(B) }30\sqrt{3}}.</cmath> | ||
+ | |||
+ | - [https://artofproblemsolving.com/wiki/index.php/User:Spectraldragon8 spectraldragon8] | ||
==See Also== | ==See Also== | ||
+ | Video Solution: | ||
+ | |||
+ | https://www.youtube.com/watch?v=pwDV9p9eFQQ | ||
+ | |||
+ | https://www.youtube.com/watch?v=4HoQudqlCLU (by Challenge 25) | ||
+ | |||
+ | |||
{{AMC12 box|year=2008|ab=B|num-b=24|after=Last Question}} | {{AMC12 box|year=2008|ab=B|num-b=24|after=Last Question}} | ||
Latest revision as of 13:44, 5 January 2025
Contents
Problem
Let be a trapezoid with
and
. Bisectors of
and
meet at
, and bisectors of
and
meet at
. What is the area of hexagon
?
Solution
![2008 AMC 12B 25.jpg](https://wiki-images.artofproblemsolving.com//2/28/2008_AMC_12B_25.jpg)
Note: In the image AB and CD have been swapped from their given lengths in the problem. However, this doesn't affect any of the solving.
Drop perpendiculars to from
and
, and call the intersections
respectively. Now,
and
. Thus,
.
We conclude
and
.
To simplify things even more, notice that
, so
.
Also,
So the area of
is:
Over to the other side: is
, and is therefore congruent to
. So
.
The area of the hexagon is clearly
Note: Once is found, there is no need to do the trig. Notice that the hexagon consists of two trapezoids,
and
.
. The height is one half of
which is
. So the area is
Solution 2
Let and
meet
at
and
, respectively.
Since ,
, and they share
, triangles
and
are congruent.
By the same reasoning, we also have that triangles and
are congruent.
Hence, we have .
If we let the height of the trapezoid be , we have
.
Thusly, if we find the height of the trapezoid and multiply it by 12, we will be done.
Let the projections of and
to
be
and
, respectively.
We have ,
, and
.
Therefore, . Solving this, we easily get that
.
Multiplying this by 12, we find that the area of hexagon is
, which corresponds to answer choice
.
Solution 3
is the intersection of the angle bisectors of
and
. By definition, angle bisectors are always equidistant from the sides of the angle, so
is equidistant from
,
, and
. Likewise, point
is equidistant from
,
, and
. Because both points
and
are equidistant from
and
and the distance between
and
is constant, the common distances from each of the points to the mentioned segments is equal for
and
. Call this distance
.
The distance between a point and a line is the length of the segment perpendicular to the line with one endpoint on the line and the other on the point. This means the altitude from to
is
, so the area of
is equal to
. Similarly, the area of
is
. The altitude of the trapezoid is
, because it is the sum of the distances from either
or
to
and
. This means the area of trapezoid
is
. Now, the area of hexagon
is the area of trapezoid
, minus the areas of triangles
and
. This is
. Now it remains to find
.
We let and
be the feet of the altitudes of
and
, respectively, to
. We define
and
. We know that
, so
and
. By the Pythagorean Theorem on
and
, we get
and
, respectively. Subtracting the second equation from the first gives us
. The left hand side of this equation is a difference of squares and factors to
. We know that
, so
. Now we can solve for
by adding the two equations we just got to see that
, or
.
We now solve for . We know that
, so
and
. We multiply both sides of this equation by
to get
. However, the area of hexagon
is
, so the answer is
, or answer choice
.
Solution 4
Let respectively. Since
we have
similarly we get
Thus,
is both an angle bisector and altitude of
so
Using the same logic on
gives
is a rhombus; similarly,
is a rhombus. Then,
where
is the height of trapezoid
Finding
is the same as finding the altitude to the side of length
in a
triangle, and using Heron's, the area of such a triangle is
Multiply to get our answer is
Solution 5
Like above solutions, find out the height of is
Let
be the intersection of the line through
and parallel to
and
the intersection of the line through
and parallel to
Angle chasing shows that
is the midpoint of
and
midpoint of
Then from midline theorem,
are collinear, and likewise for
Thus, the line through
is in fact the midline of
Let Then, angle chasing shows that
not only bisects
but is also perpendicular to it. This makes it a perpendicular bisector. The same is true for
and
Thus,
and
This means
We can now find
as the midline of
Thus,
Now, the answer is simply finding the area of plus area of
This is
~ MelonGirl
Solution 6
Observe that if we reduce the lengths of the parallel sides by the length ,
and
will coincide because
When they coincide, they happen to be the incenter of
because all four angle bisectors intersect there.
Let the shortened trapezoid be
To determine the length of we can use the two tangent theorem to get
or
so
The distance from to both
and
is the same because it is the incenter. To find the height
of both trapezoids, translate
to
such that
maps to
By using Heron's formula and the known base of
we get that the altitude of
is
Therefore each of the altitudes of
and
are
Therefore, the area of the hexagon is the sum of the area of the two trapezoids, which is just
See Also
Video Solution:
https://www.youtube.com/watch?v=pwDV9p9eFQQ
https://www.youtube.com/watch?v=4HoQudqlCLU (by Challenge 25)
2008 AMC 12B (Problems • Answer Key • Resources) | |
Preceded by Problem 24 |
Followed by Last Question |
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.