Difference between revisions of "1959 AHSME Problems/Problem 32"
m (fixed typo) |
(diagram) |
||
Line 4: | Line 4: | ||
== Solution == | == Solution == | ||
+ | |||
+ | <asy> | ||
+ | |||
+ | import geometry; | ||
+ | |||
+ | point O=(0,0); | ||
+ | point A=(5,0); | ||
+ | point B,T; | ||
+ | |||
+ | circle c=circle(O,3); | ||
+ | |||
+ | markscalefactor=0.05; | ||
+ | |||
+ | // Circle, segment OA | ||
+ | draw(c); | ||
+ | dot(O); | ||
+ | label("O",O,NW); | ||
+ | dot(A); | ||
+ | label("A",A,NE); | ||
+ | draw(O--A); | ||
+ | |||
+ | // Segments OT, OA | ||
+ | line[] t1=tangents(c,A); | ||
+ | pair[] t=intersectionpoints(t1[0], c); | ||
+ | T=t[0]; | ||
+ | dot(t[0]); | ||
+ | label("T",T,SE); | ||
+ | draw(A--T--O); | ||
+ | draw(rightanglemark(A,T,O)); | ||
+ | |||
+ | // Point B | ||
+ | pair[] b=intersectionpoints((O--A),c); | ||
+ | B=b[0]; | ||
+ | dot("B",B,NE); | ||
+ | |||
+ | // Length labels | ||
+ | label("$r$",midpoint(O--T),SW); | ||
+ | label("$r$",midpoint(O--B),N); | ||
+ | label("$\frac{4}{3}r$",midpoint(A--T),SE); | ||
+ | |||
+ | </asy> | ||
+ | |||
<math>\fbox{C}</math> | <math>\fbox{C}</math> | ||
− | |||
== See also == | == See also == |
Revision as of 20:08, 20 July 2024
Problem
The length of a tangent, drawn from a point to a circle, is of the radius . The (shortest) distance from A to the circle is:
Solution
See also
1959 AHSC (Problems • Answer Key • Resources) | ||
Preceded by Problem 31 |
Followed by Problem 33 | |
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 • 26 • 27 • 28 • 29 • 30 • 31 • 32 • 33 • 34 • 35 • 36 • 37 • 38 • 39 • 40 • 41 • 42 • 43 • 44 • 45 • 46 • 47 • 48 • 49 • 50 | ||
All AHSME Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.