Difference between revisions of "1983 AIME Problems/Problem 4"
(asymptote replacemetn) |
(→Solution) |
||
Line 41: | Line 41: | ||
Thus, <math>(\sqrt{50})^2 = y^2 + (6-x)^2</math>, and <math>(\sqrt{50})^2 = x^2 + (y+2)^2</math>. We solve this system to get <math>x = 1</math> and <math>y = 5</math>, resulting in an answer of <math>1^2 + 5^2 = \boxed{026}</math>. | Thus, <math>(\sqrt{50})^2 = y^2 + (6-x)^2</math>, and <math>(\sqrt{50})^2 = x^2 + (y+2)^2</math>. We solve this system to get <math>x = 1</math> and <math>y = 5</math>, resulting in an answer of <math>1^2 + 5^2 = \boxed{026}</math>. | ||
+ | == Synthetic Solution == | ||
+ | Drop perpendiculars from <math>O</math> to <math>AB</math> (<math>T_1</math>), <math>M</math> to <math>OT_1</math> (<math>T_2</math>), and <math>M</math> to <math>AB</math> (<math>T_3</math>). | ||
+ | Also, draw the midpoint <math>M</math> of <math>AC</math>. | ||
+ | |||
+ | Then the problem is trivialized. Why? | ||
+ | <asy> | ||
+ | unitsize(1.5cm); | ||
+ | pair dl(string name, pair loc, pair offset) { | ||
+ | dot(loc); | ||
+ | label(name,loc,offset); | ||
+ | return loc; | ||
+ | }; | ||
+ | pair a[] = {(0,0),(0,5),(1,5),(1,7),(-2,6),(-5,5),(-2,5),(-2,6),(0,6)}; | ||
+ | string n[] = {"O","$T_1$","B","C","M","A","$T_3$","M","$T_2$"}; | ||
+ | for(int i=0;i<a.length;++i) { | ||
+ | dl(n[i],a[i],dir(degrees(a[i],false) ) ); | ||
+ | draw(a[(i-1)%a.length]--a[i]); | ||
+ | }; | ||
+ | dot(a); | ||
+ | draw(a[5]--a[1]); | ||
+ | draw(a[0]--a[3]); | ||
+ | draw(a[0]--a[4]); | ||
+ | draw(a[0]--a[2]); | ||
+ | draw(a[0]--a[5]); | ||
+ | |||
+ | draw(a[5]--a[2]--a[3]--cycle,blue+.7mm); | ||
+ | draw(a[0]--a[8]--a[7]--cycle,blue+.7mm); | ||
+ | </asy> | ||
+ | First notice that by computation, <math>OAC</math> is a <math>\sqrt {50} - \sqrt {40} - \sqrt {50}</math> isosceles triangle; thus <math>AC = MO</math>. | ||
+ | Then, notice that <math>\angle MOT_2 = \angle T_3MO = \angle BAC</math>. Thus the two blue triangles are congruent. | ||
+ | |||
+ | So, <math>MT_2 = 2,OT_2 = 6</math>. As <math>T_3B = 3, MT_3 = 1</math>, we subtract and get <math>OT_1 = 5,T_1B = 1</math>. Then the Pythagorean Theorem shows <math>OB^2 = 26</math>. | ||
== See also == | == See also == |
Revision as of 03:21, 30 September 2008
Problem
A machine shop cutting tool is in the shape of a notched circle, as shown. The radius of the circle is cm, the length of is 6 cm, and that of is 2 cm. The angle is a right angle. Find the square of the distance (in centimeters) from to the center of the circle.
Solution
Because we are given a right angle, we look for ways to apply the Pythagorean Theorem. Let the foot of the perpendicular from to be and let the foot of the perpendicular from to the line be . Let and . We're trying to find .
Applying the Pythagorean Theorem, and .
Thus, , and . We solve this system to get and , resulting in an answer of .
Synthetic Solution
Drop perpendiculars from to (), to (), and to (). Also, draw the midpoint of .
Then the problem is trivialized. Why? First notice that by computation, is a isosceles triangle; thus . Then, notice that . Thus the two blue triangles are congruent.
So, . As , we subtract and get . Then the Pythagorean Theorem shows .
See also
1983 AIME (Problems • Answer Key • Resources) | ||
Preceded by Problem 3 |
Followed by Problem 5 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |