Difference between revisions of "1959 AHSME Problems/Problem 40"
m (category) |
(diagram) |
||
Line 6: | Line 6: | ||
== Solution == | == Solution == | ||
+ | |||
+ | <asy> | ||
+ | |||
+ | import geometry; | ||
+ | |||
+ | point A = (0,0); | ||
+ | point B = (5,8); | ||
+ | point C = (16,0); | ||
+ | point D = midpoint(A--C); | ||
+ | point E = midpoint(B--D); | ||
+ | point F, G; | ||
+ | triangle ABC = triangle(A,B,C); | ||
+ | |||
+ | // Triangle ABC | ||
+ | draw(ABC); | ||
+ | dot(A); | ||
+ | label("A",A,SW); | ||
+ | dot(B); | ||
+ | label("B",B,N); | ||
+ | dot(C); | ||
+ | label("C",C,SE); | ||
+ | |||
+ | // Segment BD | ||
+ | draw(B--D); | ||
+ | dot(D); | ||
+ | label("D",D,S); | ||
+ | dot(E); | ||
+ | label("E",E,SW); | ||
+ | |||
+ | // Segment CF | ||
+ | pair[] f = intersectionpoints(line(C,E),A--B); | ||
+ | F = f[0]; | ||
+ | dot(F); | ||
+ | label("F",F,W); | ||
+ | draw(C--F); | ||
+ | |||
+ | // Segment DG | ||
+ | pair[] g = intersectionpoints(parallel(D,line(F,C)),A--B); | ||
+ | G = g[0]; | ||
+ | dot(G); | ||
+ | label("G",G,W); | ||
+ | draw(D--G); | ||
+ | |||
+ | // Length Label | ||
+ | label("$5$", midpoint(B--F), NW); | ||
+ | |||
+ | </asy> | ||
Draw <math>\overline{DG} \parallel \overline{FC}</math> with <math>G</math> on <math>\overline{AB}</math>. We know that <math>GF = BF = 5</math>, since <math>\triangle BFE \sim \triangle BGD</math>. | Draw <math>\overline{DG} \parallel \overline{FC}</math> with <math>G</math> on <math>\overline{AB}</math>. We know that <math>GF = BF = 5</math>, since <math>\triangle BFE \sim \triangle BGD</math>. |
Revision as of 17:50, 21 July 2024
Problem
In , is a median. intersects at so that . Point is on . Then, if , equals:
Solution
Draw with on . We know that , since .
Likewise, since , we know that .
Thus, , which is answer .
See also
1959 AHSC (Problems • Answer Key • Resources) | ||
Preceded by Problem 39 |
Followed by Problem 41 | |
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.