Difference between revisions of "1986 AIME Problems/Problem 15"
m (→Solution 1) |
|||
(22 intermediate revisions by 13 users not shown) | |||
Line 1: | Line 1: | ||
== Problem == | == Problem == | ||
+ | Let [[triangle]] <math>ABC</math> be a [[right triangle]] in the xy-plane with a right angle at <math>C_{}</math>. Given that the length of the [[hypotenuse]] <math>AB</math> is <math>60</math>, and that the [[median]]s through <math>A</math> and <math>B</math> lie along the lines <math>y=x+3</math> and <math>y=2x+4</math> respectively, find the area of triangle <math>ABC</math>. | ||
− | == Solution == | + | == Solution 1 == |
+ | |||
+ | Let <math>\theta_1</math> be the angle that the median through <math>A</math> makes with the positive <math>x</math>-axis, and let <math>\theta_2</math> be the angle that the median through <math>B</math> makes with the positive <math>x</math>-axis. The tangents of these two angles are the slopes of the respective medians; in other words, <math>\tan \theta_1 = 1</math>, and <math>\tan \theta_2 =2</math>. | ||
+ | |||
+ | Let <math>\theta</math> be the angle between the medians through <math>A</math> and <math>B</math>. Then by the [[Trigonometric_identities#Angle_addition_identities | tangent angle subtraction formula]], | ||
+ | <cmath> \tan \theta = \tan (\theta_2 - \theta_1) = \frac{\tan \theta_2 - \tan \theta_1}{1 + \tan \theta_1 \tan \theta_2} = \frac{2-1}{1 + 2 \cdot 1 } = \frac{1}{3}. </cmath> | ||
+ | |||
+ | <center><asy> | ||
+ | size(170); | ||
+ | pair A = (0,0), B = (3, 2), C = (3, 0); | ||
+ | pair M = (B+C)/2, NN = (A+C)/2, G = (A+B+C)/3; | ||
+ | draw(A--B--C--cycle); | ||
+ | draw(A--M); | ||
+ | draw(B--NN); | ||
+ | label("$A$", A, S); | ||
+ | label("$C$", C, S); | ||
+ | label("$B$", B, N); | ||
+ | label("$M$", M, NW); | ||
+ | label("$N$", NN, NW); | ||
+ | label("$a$", M, E); | ||
+ | label("$b$", NN, S); | ||
+ | label("$G$", G, NW); | ||
+ | label("$\theta$", G, 4*dir(40)); | ||
+ | label("$\alpha$", A, 5*dir(.5*degrees(M))); | ||
+ | label("$\beta$", NN, 2*dir(.5*degrees(B-NN)));</asy></center> | ||
+ | |||
+ | Let <math>M</math> be the midpoint of <math>BC,</math> let <math>N</math> be the midpoint of <math>AC,</math> and let <math>G</math> be the intersection of these two medians. Let <math>BC = a,</math> and let <math>AC = b</math>; let <math>\alpha = \angle MAC</math>, and let <math>\beta = \angle BNC</math>. | ||
+ | |||
+ | With this setup, <math>\theta = \beta - \alpha</math>. The reason is that <math>\beta</math> is an exterior angle of <math>\triangle AGN</math>, and thus <math>\beta = \alpha + \angle AGN = \alpha + \theta</math>. | ||
+ | |||
+ | We also know that <math>\tan \alpha = \dfrac{(1/2) a}{b} = \dfrac{a}{2b}</math>, and <math>\tan \beta = \dfrac{a}{(1/2)b} = \dfrac{2a}{b}</math>. Then | ||
+ | <cmath>\begin{align*} | ||
+ | \frac{1}{3} &= \tan \theta \\ | ||
+ | &= \tan (\beta - \alpha) \\ | ||
+ | &= \frac{\tan \beta - \tan \alpha}{1 + \tan \beta \tan \alpha} \\ | ||
+ | &= \frac{2 \frac{a}{b} - \frac{1}{2} \cdot \frac{a}{b}}{1 + (a/b)^2} \\ | ||
+ | &= \frac{(3/2) \cdot (a/b)}{1 + (a/b)^2} . | ||
+ | \end{align*}</cmath> | ||
+ | Multiplying numerator and denominator by <math>b^2,</math> we learn that | ||
+ | <cmath> \frac{1}{3} = \frac{(3/2) ab}{a^2 + b^2} = \frac{(3/2) ab}{60^2}, </cmath> | ||
+ | since the hypotenuse of <math>\triangle ABC</math> has length 60. Solving for <math>\frac{1}{2}ab</math>, we find that | ||
+ | <cmath>\frac{1}{2} ab = \frac{1}{9} \cdot 60^2 = (60/3)^2 = 20^2 = 400. </cmath> | ||
+ | |||
+ | == Solution 2 == | ||
+ | Translate so that the [[median]]s are <math>y = x</math>, and <math>y = 2x</math>, then model the [[point]]s <math>A: (a,a)</math> and <math>B: (b,2b)</math>. <math>(0,0)</math> is the [[centroid]], and is the average of the vertices, so <math>C: (- a - b, - a - 2b)</math><br /> | ||
+ | <math>AB = 60</math> so | ||
+ | <div style="text-align:center;"><math>3600 = (a - b)^2 + (2b - a)^2</math><br /> | ||
+ | <math> 3600 = 2a^2 + 5b^2 - 6ab \ \ \ \ (1)</math></div> | ||
+ | |||
+ | <math>AC</math> and <math>BC</math> are [[perpendicular]], so the product of their [[slope]]s is <math>-1</math>, giving | ||
+ | <div style="text-align:center;"><math>\left(\frac {2a + 2b}{2a + b}\right)\left(\frac {a + 4b}{a + 2b}\right) = - 1</math><br /> | ||
+ | <math>2a^2 + 5b^2 = - \frac {15}{2}ab \ \ \ \ (2)</math></div> | ||
+ | |||
+ | Combining <math>(1)</math> and <math>(2)</math>, we get <math>ab = - \frac {800}{3}</math> | ||
+ | |||
+ | Using the [[determinant]] product for area of a triangle (this simplifies nicely, add columns 1 and 2, add rows 2 and 3), the area is <math>\left|\frac {3}{2}ab\right|</math>, so we get the answer to be <math>400</math>. | ||
+ | |||
+ | == Solution 3 == | ||
+ | The only relevant part about the xy plane here is that the slopes of the medians determine an angle between them that we will use. | ||
+ | This solution uses the tangent subtraction identity <math>\tan(\alpha -\beta)=\frac{\tan\alpha -\tan\beta}{1+\tan\alpha \tan\beta}</math>. Therefore, the tangent of the acute angle between the medians from A and B will be <math>\frac{2-1}{1+2 \cdot 1}= \frac{1}{3}</math>. | ||
+ | |||
+ | Let <math>AC =x</math> and <math>BC =y</math>. Let the midpoint of AC be M and the midpoint of BC be N. Let the centroid be G. By exterior angles, <math>\angle CMB - \angle CAN = \angle AGM</math>. However we know that since <math>\angle AGM</math> is the acute angle formed by the medians, <math>\tan \angle AGM=\frac{1}{3}</math>. We can express the tangents of the other two angles in terms of <math>x</math> and <math>y</math>. <math>\tan \angle CMB= \frac{y}{\frac{x}{2}}=\frac{2y}{x}</math> while <math>\tan \angle CAN= \frac{\frac{y}{2}}{x}=\frac{y}{2x}</math>. For simplification, let <math>\frac{y}{x}=r</math>. | ||
+ | |||
+ | By the tangent subtraction identity, <math>\frac{2r-\frac{r}{2}}{1+2r \cdot \frac{r}{2}}=\frac{3r}{2(1+r^2)}=\frac{1}{3}</math>. | ||
+ | We get the quadratic <math>2r^2 -9r+2=0</math>, which solves to give <math>r=\frac{9 \pm \sqrt{65}}{4}</math>. It does not matter which one is picked, because the two roots multiply to 1, so switching from one root to another is like switching the lengths of AC and BC. | ||
+ | |||
+ | We choose the positive root and we can plug <math>y= \left (\frac{9 + \sqrt{65}}{4} \right )x</math> into of course the PYTHAGOREAN THEOREM <math>x^2 + y^2 =3600</math> and solve for <math>x^2=200(9-\sqrt{65})</math>. We want the area which is <math>\frac{xy}{2}=\frac{x^2(\frac{9 + \sqrt{65}}{4})}{2}=\frac{200(9-\sqrt{65})(\frac{9 + \sqrt{65}}{4})}{2}=\frac{200\cdot\frac{16}{4}}{2}=400</math>. | ||
+ | |||
+ | == Solution 4== | ||
+ | We first seek to find the angle between the lines <math>y = x + 3</math> and <math>y = 2x + 4</math>. | ||
+ | <asy> | ||
+ | import graph; | ||
+ | size(150); | ||
+ | Label f; | ||
+ | f.p=fontsize(6); | ||
+ | xaxis(-8,8,Ticks(f, 2.0)); | ||
+ | yaxis(-8,8,Ticks(f, 2.0)); | ||
+ | real f(real x) | ||
+ | { | ||
+ | return (x + 3); | ||
+ | } | ||
+ | real g( real x){ | ||
+ | return (2x + 4); | ||
+ | } | ||
+ | draw(graph(f,-8,5),red+linewidth(1)); | ||
+ | draw(graph(g,-6,2),blue+linewidth(1)); | ||
+ | </asy> | ||
+ | Let the acute angle the red line makes with the <math>x-</math> axis be <math>\alpha</math> and the acute angle the blue line makes with the <math>x-</math> axis be <math>\beta</math>. Then, we know that <math>\tan \alpha = 1</math> and <math>\tan \beta = 2</math>. Note that the acute angle between the red and blue lines is clearly <math>\beta - \alpha</math>. Therefore, we have that: | ||
+ | <cmath>\tan (\beta - \alpha) = \frac{2 - 1}{1 + 2} = \frac{1}{3}</cmath>It follows that <math>\cos (\beta - \alpha) = \frac{1}{\sqrt{10}}</math> and <math>\sin (\beta - \alpha) = \frac{3}{\sqrt{10}}</math>. From now on, refer to <math>\theta = \beta - \alpha</math> | ||
+ | <asy> | ||
+ | import graph; size(4cm); | ||
+ | real labelscalefactor = 0.5; /* changes label-to-point distance */ | ||
+ | pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */ | ||
+ | pen dotstyle = black; /* point style */ | ||
+ | real xmin = -5.96, xmax = 24.22, ymin = -10.06, ymax = 14.62; /* image dimensions */ | ||
+ | pen wrwrwr = rgb(0.3803921568627451,0.3803921568627451,0.3803921568627451); | ||
+ | |||
+ | draw(arc((2,2.6666666666666665),0.6,290.55604521958344,326.3099324740202)--(2,2.6666666666666665)--cycle, linewidth(1)); | ||
+ | |||
+ | draw((0,8)--(0,0), linewidth(1) + wrwrwr); | ||
+ | draw((0,0)--(6,0), linewidth(1) + wrwrwr); | ||
+ | draw((6,0)--(0,8), linewidth(1) + wrwrwr); | ||
+ | draw((0,8)--(3,0), linewidth(1) + wrwrwr); | ||
+ | draw((0,4)--(6,0), linewidth(1) + wrwrwr); | ||
+ | |||
+ | dot((0,0),dotstyle); | ||
+ | label("$A$", (0.08,0.2), NE * labelscalefactor); | ||
+ | dot((6,0),dotstyle); | ||
+ | label("$B$", (6.08,0.2), NE * labelscalefactor); | ||
+ | dot((0,8),dotstyle); | ||
+ | label("$C$", (0.08,8.2), NE * labelscalefactor); | ||
+ | dot((3,0),linewidth(4pt) + dotstyle); | ||
+ | label("$D$", (3.08,0.16), NE * labelscalefactor); | ||
+ | dot((0,4),linewidth(4pt) + dotstyle); | ||
+ | label("$E$", (0.08,4.16), NE * labelscalefactor); | ||
+ | label("theta ", (2.14,2.3), NE * labelscalefactor); | ||
+ | clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle); | ||
+ | |||
+ | </asy> | ||
+ | Suppose <math>ABC</math> is our desired triangle. Let <math>E</math> be the midpoint of <math>CA</math> and <math>D</math> be the midpoint of <math>AB</math> such that <math>CE = EA = m</math> and <math>AD = DB = n</math>. Let <math>G</math> be the centroid of the triangle (in other words, the intersection of <math>EB</math> and <math>CD</math>). It follows that if <math>CG = 2x</math>, <math>GD = x</math> and if <math>GB = 2y</math>, <math>GE = y</math>. By the Law of Cosines on <math>\triangle GEB</math>, we get that: | ||
+ | <cmath>GE^2 + GC^2 - 2GE \cdot GC \cdot \cos \theta = CE^2 \Longleftrightarrow</cmath><cmath>(2x)^2 + y^2 - (2x)(y)(2)\cos \theta = m^2</cmath>By the Law of Cosines on <math>\triangle GDB</math>, we get that: | ||
+ | <cmath>DG^2 + GB^2 -2 DG \cdot GB \cdot \cos \theta = DB^2 \Longleftrightarrow</cmath><cmath>(2y)^2+x^2-(2y)(x)(2)\cos \theta = n^2</cmath>Adding yields that: | ||
+ | <cmath>5x^2+5y^2 - 8xy\cos \theta = m^2 + n^2</cmath>However, note that <math>(2m)^2 + (2n)^2 = 60^2 \Longleftrightarrow m^2+n^2 = 30^2</math>. Therefore, | ||
+ | <cmath>5x^2+5y^2 - 8xy\cos \theta = 30^2</cmath>We also know that by the Law of Cosines on <math>\triangle CGB</math>, | ||
+ | <cmath>CG^2 + GB^2 - 2CG \cdot GB \cdot \cos (180 - \theta) = CB^2 \Longleftrightarrow</cmath><cmath>(2x)^2 + (2y)^2 + 2(2x)(2y) \cos \theta = 60^2 \Longleftrightarrow</cmath><cmath>x^2+y^2+2xy \cos \theta = 30^2 \Longleftrightarrow</cmath><cmath>5x^2+5y^2 + 10xy \cos \theta = 30^2 \cdot 5</cmath>Subtracting this from the <math>5x^2+5y^2 - 8xy\cos \theta = 30^2</math> we got earlier yields that: | ||
+ | <cmath>xy \cos \theta = 200</cmath>but recall that <math>\cos \theta = \frac{3}{\sqrt{10}}</math> to get that: | ||
+ | <cmath>xy = \frac{200 \sqrt{10}}{3}</cmath>Plugging this into the <math>x^2 + y^2 + 2xy \cos \theta = 30^2</math>, we get that: | ||
+ | <cmath>x^2 + y^2 = 500</cmath>Aha! How convenient. Recall that <math>(2x)^2 + y^2 - (2x)(y)(2)\cos \theta = m^2</math> and <math>(2y)^2+x^2-(2y)(x)(2)\cos \theta = n^2</math>. Then, we clearly have that: | ||
+ | <cmath>m^2n^2 = ((2x)^2 + y^2 - (2x)(y)(2)\cos \theta)((2y)^2+x^2-(2y)(x)(2)\cos \theta = n^2) \Longleftrightarrow</cmath><cmath>m^2n^2 = 17x^2y^2 - 4xy \cos \theta (5x^2 + 5y^2) + 16x^2y^2 \cos ^2 \theta + 4x^4 + 4y^4 \Longleftrightarrow</cmath><cmath>m^2n^2 = 17 \cdot \frac{200^2 \cdot 10}{9} - 800(5 \cdot 500) + 16 \cdot 200^2 + 4 \left( (x^2+y^2)^2-2x^2y^2\right) \Longleftrightarrow</cmath><cmath>\frac{m^2n^2}{100^2} = \frac{680}{9} - 8 \cdot 5 \cdot 5 + 16 \cdot 2^2 + 4 \left( 5^2 - 2 \cdot \frac{2^2 \cdot 10}{9}\right) \Longleftrightarrow</cmath><cmath>\frac{m^2n^2}{100^2} = 4</cmath>But note that the area of our triangle is <math>2m \cdot 2n \cdot \frac {1}{2} = 2mn</math>. As <math>mn = 200</math>, we get a final answer of <math>\boxed{400}</math>. | ||
+ | |||
+ | ~AopsUser101 | ||
== See also == | == See also == | ||
− | * [[ | + | {{AIME box|year=1986|num-b=14|after=Last Question}} |
+ | * [[AIME Problems and Solutions]] | ||
+ | * [[American Invitational Mathematics Examination]] | ||
+ | * [[Mathematics competition resources]] | ||
+ | |||
+ | [[Category:Intermediate Geometry Problems]] | ||
+ | {{MAA Notice}} |
Latest revision as of 08:49, 13 September 2023
Problem
Let triangle be a right triangle in the xy-plane with a right angle at . Given that the length of the hypotenuse is , and that the medians through and lie along the lines and respectively, find the area of triangle .
Solution 1
Let be the angle that the median through makes with the positive -axis, and let be the angle that the median through makes with the positive -axis. The tangents of these two angles are the slopes of the respective medians; in other words, , and .
Let be the angle between the medians through and . Then by the tangent angle subtraction formula,
Let be the midpoint of let be the midpoint of and let be the intersection of these two medians. Let and let ; let , and let .
With this setup, . The reason is that is an exterior angle of , and thus .
We also know that , and . Then Multiplying numerator and denominator by we learn that since the hypotenuse of has length 60. Solving for , we find that
Solution 2
Translate so that the medians are , and , then model the points and . is the centroid, and is the average of the vertices, so
so
and are perpendicular, so the product of their slopes is , giving
Combining and , we get
Using the determinant product for area of a triangle (this simplifies nicely, add columns 1 and 2, add rows 2 and 3), the area is , so we get the answer to be .
Solution 3
The only relevant part about the xy plane here is that the slopes of the medians determine an angle between them that we will use. This solution uses the tangent subtraction identity . Therefore, the tangent of the acute angle between the medians from A and B will be .
Let and . Let the midpoint of AC be M and the midpoint of BC be N. Let the centroid be G. By exterior angles, . However we know that since is the acute angle formed by the medians, . We can express the tangents of the other two angles in terms of and . while . For simplification, let .
By the tangent subtraction identity, . We get the quadratic , which solves to give . It does not matter which one is picked, because the two roots multiply to 1, so switching from one root to another is like switching the lengths of AC and BC.
We choose the positive root and we can plug into of course the PYTHAGOREAN THEOREM and solve for . We want the area which is .
Solution 4
We first seek to find the angle between the lines and . Let the acute angle the red line makes with the axis be and the acute angle the blue line makes with the axis be . Then, we know that and . Note that the acute angle between the red and blue lines is clearly . Therefore, we have that: It follows that and . From now on, refer to Suppose is our desired triangle. Let be the midpoint of and be the midpoint of such that and . Let be the centroid of the triangle (in other words, the intersection of and ). It follows that if , and if , . By the Law of Cosines on , we get that: By the Law of Cosines on , we get that: Adding yields that: However, note that . Therefore, We also know that by the Law of Cosines on , Subtracting this from the we got earlier yields that: but recall that to get that: Plugging this into the , we get that: Aha! How convenient. Recall that and . Then, we clearly have that: But note that the area of our triangle is . As , we get a final answer of .
~AopsUser101
See also
1986 AIME (Problems • Answer Key • Resources) | ||
Preceded by Problem 14 |
Followed by Last Question | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |
- AIME Problems and Solutions
- American Invitational Mathematics Examination
- Mathematics competition resources
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.