Difference between revisions of "2006 AMC 10B Problems/Problem 23"
m (added category) |
|||
Line 2: | Line 2: | ||
A triangle is partitioned into three triangles and a quadrilateral by drawing two lines from vertices to their opposite sides. The areas of the three triangles are 3, 7, and 7 as shown. What is the area of the shaded quadrilateral? | A triangle is partitioned into three triangles and a quadrilateral by drawing two lines from vertices to their opposite sides. The areas of the three triangles are 3, 7, and 7 as shown. What is the area of the shaded quadrilateral? | ||
− | + | <asy> | |
+ | unitsize(1.5cm); | ||
+ | defaultpen(.8); | ||
− | + | pair A = (0,0), B = (3,0), C = (1.4, 2), D = B + 0.4*(C-B), Ep = A + 0.3*(C-A); | |
+ | pair F = intersectionpoint( A--D, B--Ep ); | ||
− | + | draw( A -- B -- C -- cycle ); | |
− | + | draw( A -- D ); | |
+ | draw( B -- Ep ); | ||
+ | filldraw( D -- F -- Ep -- C -- cycle, mediumgray, black ); | ||
− | + | label("$7$",(1.25,0.2)); | |
+ | label("$7$",(2.2,0.45)); | ||
+ | label("$3$",(0.45,0.35)); | ||
+ | </asy> | ||
− | + | <math> \mathrm{(A) \ } 15\qquad \mathrm{(B) \ } 17\qquad \mathrm{(C) \ } \frac{35}{2}\qquad \mathrm{(D) \ } 18\qquad \mathrm{(E) \ } \frac{55}{3} </math> | |
− | + | == Solution == | |
− | + | Label the points in the figure as shown below, and draw the segment <math>CF</math>. This segment divides the quadrilateral into two triangles, let their areas be <math>x</math> and <math>y</math>. | |
− | + | <asy> | |
+ | unitsize(2cm); | ||
+ | defaultpen(.8); | ||
− | + | pair A = (0,0), B = (3,0), C = (1.4, 2), D = B + 0.4*(C-B), Ep = A + 0.3*(C-A); | |
+ | pair F = intersectionpoint( A--D, B--Ep ); | ||
− | + | draw( A -- B -- C -- cycle ); | |
+ | draw( A -- D ); | ||
+ | draw( B -- Ep ); | ||
+ | filldraw( D -- F -- Ep -- C -- cycle, mediumgray, black ); | ||
− | + | label("$7$",(1.45,0.15)); | |
+ | label("$7$",(2.2,0.45)); | ||
+ | label("$3$",(0.45,0.35)); | ||
− | + | draw( C -- F, dashed ); | |
− | + | label("$A$",A,SW); | |
+ | label("$B$",B,SE); | ||
+ | label("$C$",C,N); | ||
+ | label("$D$",D,NE); | ||
+ | label("$E$",Ep,NW); | ||
+ | label("$F$",F,S); | ||
− | + | label("$x$",(1,1)); | |
+ | label("$y$",(1.6,1)); | ||
+ | </asy> | ||
− | <math> | + | Since [[triangle]]s <math>AFB</math> and <math>DFB</math> share an [[altitude]] from <math>B</math> and have equal area, their bases must be equal, hence <math>AF=DF</math>. |
− | <math> | + | Since triangles <math>AFC</math> and <math>DFC</math> share an altitude from <math>C</math> and their respective bases are equal, their areas must be equal, hence <math>x+3=y</math>. |
− | <math> | + | Since triangles <math>EFA</math> and <math>BFA</math> share an altitude from <math>A</math> and their respective areas are in the ratio <math>3:7</math>, their bases must be in the same ratio, hence <math>DF:CF = 3:7</math>. |
− | <math> | + | Since triangles <math>EFC</math> and <math>BFC</math> share an altitude from <math>B</math> and their respective bases are in the ratio <math>3:7</math>, their areas must be in the same ratio, hence <math>x:(y+7) = 3:7</math>, which gives us <math>7x = 3(y+7)</math>. |
− | <math>x=\frac{15}{2}</math> | + | Substituting <math>y=x+3</math> into the second equation we get <math>7x = 3(x+10)</math>, which solves to <math>x=\frac{15}{2}</math>. Then <math>y=x+3 = \frac{15}{2}+3 = \frac{21}{2}</math>, and the total area of the quadrilateral is <math>x+y = \frac{15}{2}+\frac{21}{2} = \boxed{18}</math>. |
− | + | == See Also == | |
− | |||
− | |||
− | |||
*[[2006 AMC 10B Problems]] | *[[2006 AMC 10B Problems]] | ||
Revision as of 16:44, 15 March 2009
Problem
A triangle is partitioned into three triangles and a quadrilateral by drawing two lines from vertices to their opposite sides. The areas of the three triangles are 3, 7, and 7 as shown. What is the area of the shaded quadrilateral?
Solution
Label the points in the figure as shown below, and draw the segment . This segment divides the quadrilateral into two triangles, let their areas be and .
Since triangles and share an altitude from and have equal area, their bases must be equal, hence .
Since triangles and share an altitude from and their respective bases are equal, their areas must be equal, hence .
Since triangles and share an altitude from and their respective areas are in the ratio , their bases must be in the same ratio, hence .
Since triangles and share an altitude from and their respective bases are in the ratio , their areas must be in the same ratio, hence , which gives us .
Substituting into the second equation we get , which solves to . Then , and the total area of the quadrilateral is .