Difference between revisions of "1984 AIME Problems/Problem 3"

m (+img)
(6 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 
== Problem ==
 
== Problem ==
A [[point]] <math>\displaystyle P</math> is chosen in the interior of <math>\displaystyle \triangle ABC</math> such that when [[line]]s are drawn through <math>\displaystyle P</math> [[parallel]] to the sides of <math>\displaystyle \triangle ABC</math>, the resulting smaller [[triangle]]s <math>\displaystyle t_{1}</math>, <math>\displaystyle t_{2}</math>, and <math>\displaystyle t_{3}</math> in the figure, have [[area]]s <math>\displaystyle 4</math>, <math>\displaystyle 9</math>, and <math>\displaystyle 49</math>, respectively. Find the area of <math>\displaystyle \triangle ABC</math>.
+
A [[point]] <math>P</math> is chosen in the interior of <math>\triangle ABC</math> such that when [[line]]s are drawn through <math>P</math> [[parallel]] to the sides of <math>\triangle ABC</math>, the resulting smaller [[triangle]]s <math>t_{1}</math>, <math>t_{2}</math>, and <math>t_{3}</math> in the figure, have [[area]]s <math>4</math>, <math>9</math>, and <math>49</math>, respectively. Find the area of <math>\triangle ABC</math>.
[[Image:1984_AIME-3.png]]
+
<center><asy>
 +
size(200);
 +
pathpen=black;pointpen=black;
 +
pair A=(0,0),B=(12,0),C=(4,5);
 +
D(A--B--C--cycle); D(A+(B-A)*3/4--A+(C-A)*3/4); D(B+(C-B)*5/6--B+(A-B)*5/6);D(C+(B-C)*5/12--C+(A-C)*5/12);
 +
MP("A",C,N);MP("B",A,SW);MP("C",B,SE); /* sorry mixed up points according to resources diagram. */
 +
MP("t_3",(A+B+(B-A)*3/4+(A-B)*5/6)/2+(-1,0.8),N);
 +
MP("t_2",(B+C+(B-C)*5/12+(C-B)*5/6)/2+(-0.3,0.1),WSW);
 +
MP("t_1",(A+C+(C-A)*3/4+(A-C)*5/12)/2+(0,0.15),ESE);
 +
</asy></center>
  
== Solution ==
+
== Solution 1 ==
Notice that all four triangles are [[similar triangles|similar]] to each other. Also, note that the length of any one side of the larger triangle is equation to the sum of the sides of each of the corresponding sides on the smaller triangles. Since the squares of the lengths of the sides are in proportion with the area, we can write the lengths of corresponding sides of the triangle as <math>2x,\ 3x,\ 7x</math>. Thus, the corresponding side on the large triangle is <math>12x</math>, and the area of the triangle is <math>12^2 = 144</math>.
+
By the transversals that go through <math>P</math>, all four triangles are [[similar triangles|similar]] to each other by the <math>AA</math> postulate. Also, note that the length of any one side of the larger triangle is equal to the sum of the sides of each of the corresponding sides on the smaller triangles. We use the identity <math>K = \dfrac{ab\sin C}{2}</math> to show that the areas are proportional (the sides are proportional and the angles are equal) Hence, we can write the lengths of corresponding sides of the triangle as <math>2x,\ 3x,\ 7x</math>. Thus, the corresponding side on the large triangle is <math>12x</math>, and the area of the triangle is <math>12^2 = \boxed{144}</math>.
 +
 
 +
== Solution 2 ==
 +
Alternatively, since the triangles are similar by <math>AA</math>, then the ratios between the bases and the heights of each of the three triangles would all be equal. The areas of each of the triangles are all perfect squares, so we could assume <math>\dfrac{base}{height} = \dfrac{2}{1}.</math> That means that the base of <math>t_{1}</math> is 4, the base of <math>t_{2}</math> is 6, and the base of <math>t_{3}</math> is 14. Since the quadrilaterals underneath <math>t_{1}</math> and <math>t_{2}</math> are both parallelograms, and opposite sides of a parallelogram are congruent, the base of the large triangle is <math>4 + 14 + 6 = 24</math>. Therefore, the height of the entire triangle would be twelve, so therefore, the area of the large triangle is <math>\dfrac{1}{2} \cdot 24 \cdot 12 = \boxed{144}</math>.
 +
 
 +
== Solution 3 ==
 +
The base of <math>\triangle{ABC}</math> is <math>BC</math>. Let the base of <math>t_1</math> be <math>x</math>, the base of <math>t_2</math> be <math>y</math>, and the base of <math>t_3</math> be <math>z</math>. Since <math>\triangle{ABC}, t_1, t_2,</math> and <math>t_3</math> are all similar, the sections in <math>\triangle{ABC}</math> that aren't <math>t_1,t_2,</math> or <math>t_3</math> are all parallelograms. Hence, <math>BC=x+z+y</math>. We can relate <math>t_1,t_2,</math> and <math>t_3</math> by the square root of the ratio of their areas. <math>\sqrt{\frac{4}{9}}=\frac{2}{3}</math> and <math>\sqrt{\frac{4}{49}}=\frac{2}{7}</math> so <math>y=\frac{3x}{2}</math> and <math>z=\frac{7x}{2}</math>. <math>x+\frac{7x}{2}+\frac{3x}{2}=6x</math>, so <math>\triangle{ABC}</math> has a base that is <math>6</math> times <math>t_1</math>. <math>[\triangle{ABC}]=36[t_1]=36 \cdot 4=\boxed{144}</math>.
 +
 
 +
-PhunsukhWangdu
  
 
== See also ==
 
== See also ==
 
{{AIME box|year=1984|num-b=2|num-a=4}}
 
{{AIME box|year=1984|num-b=2|num-a=4}}
* [[AIME Problems and Solutions]]
 
* [[American Invitational Mathematics Examination]]
 
* [[Mathematics competition resources]]
 
  
 
[[Category:Intermediate Geometry Problems]]
 
[[Category:Intermediate Geometry Problems]]

Revision as of 11:52, 12 August 2021

Problem

A point $P$ is chosen in the interior of $\triangle ABC$ such that when lines are drawn through $P$ parallel to the sides of $\triangle ABC$, the resulting smaller triangles $t_{1}$, $t_{2}$, and $t_{3}$ in the figure, have areas $4$, $9$, and $49$, respectively. Find the area of $\triangle ABC$.

[asy] size(200); pathpen=black;pointpen=black; pair A=(0,0),B=(12,0),C=(4,5); D(A--B--C--cycle); D(A+(B-A)*3/4--A+(C-A)*3/4); D(B+(C-B)*5/6--B+(A-B)*5/6);D(C+(B-C)*5/12--C+(A-C)*5/12); MP("A",C,N);MP("B",A,SW);MP("C",B,SE); /* sorry mixed up points according to resources diagram. */ MP("t_3",(A+B+(B-A)*3/4+(A-B)*5/6)/2+(-1,0.8),N); MP("t_2",(B+C+(B-C)*5/12+(C-B)*5/6)/2+(-0.3,0.1),WSW); MP("t_1",(A+C+(C-A)*3/4+(A-C)*5/12)/2+(0,0.15),ESE); [/asy]

Solution 1

By the transversals that go through $P$, all four triangles are similar to each other by the $AA$ postulate. Also, note that the length of any one side of the larger triangle is equal to the sum of the sides of each of the corresponding sides on the smaller triangles. We use the identity $K = \dfrac{ab\sin C}{2}$ to show that the areas are proportional (the sides are proportional and the angles are equal) Hence, we can write the lengths of corresponding sides of the triangle as $2x,\ 3x,\ 7x$. Thus, the corresponding side on the large triangle is $12x$, and the area of the triangle is $12^2 = \boxed{144}$.

Solution 2

Alternatively, since the triangles are similar by $AA$, then the ratios between the bases and the heights of each of the three triangles would all be equal. The areas of each of the triangles are all perfect squares, so we could assume $\dfrac{base}{height} = \dfrac{2}{1}.$ That means that the base of $t_{1}$ is 4, the base of $t_{2}$ is 6, and the base of $t_{3}$ is 14. Since the quadrilaterals underneath $t_{1}$ and $t_{2}$ are both parallelograms, and opposite sides of a parallelogram are congruent, the base of the large triangle is $4 + 14 + 6 = 24$. Therefore, the height of the entire triangle would be twelve, so therefore, the area of the large triangle is $\dfrac{1}{2} \cdot 24 \cdot 12 = \boxed{144}$.

Solution 3

The base of $\triangle{ABC}$ is $BC$. Let the base of $t_1$ be $x$, the base of $t_2$ be $y$, and the base of $t_3$ be $z$. Since $\triangle{ABC}, t_1, t_2,$ and $t_3$ are all similar, the sections in $\triangle{ABC}$ that aren't $t_1,t_2,$ or $t_3$ are all parallelograms. Hence, $BC=x+z+y$. We can relate $t_1,t_2,$ and $t_3$ by the square root of the ratio of their areas. $\sqrt{\frac{4}{9}}=\frac{2}{3}$ and $\sqrt{\frac{4}{49}}=\frac{2}{7}$ so $y=\frac{3x}{2}$ and $z=\frac{7x}{2}$. $x+\frac{7x}{2}+\frac{3x}{2}=6x$, so $\triangle{ABC}$ has a base that is $6$ times $t_1$. $[\triangle{ABC}]=36[t_1]=36 \cdot 4=\boxed{144}$.

-PhunsukhWangdu

See also

1984 AIME (ProblemsAnswer KeyResources)
Preceded by
Problem 2
Followed by
Problem 4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
All AIME Problems and Solutions