Magnitudes of triangle ABC
Source: 1964 AHSME Problem 39
March 19, 2014
AsymptoteAMC
Problem Statement
The magnitudes of the sides of triangle are , , and , as shown, with . Through interior point and the vertices , , , lines are drawn meeting the opposite sides in , , , respectively. Let . Then, for all positions of point , is less than:
[asy]
import math;
defaultpen(fontsize(11pt));
pair A = (0,0), B = (1,3), C = (5,0), P = (1.5,1);pair X = extension(B,C,A,P), Y = extension(A,C,B,P), Z = extension(A,B,C,P);draw(A--B--C--cycle);
draw(A--X);
draw(B--Y);
draw(C--Z);
dot(P);
dot(A);
dot(B);
dot(C);
label("",A,dir(210));
label("",B,dir(90));
label("",C,dir(-30));
label("",X,dir(-100));
label("",Y,dir(65));
label("",Z,dir(20));
label("",P,dir(70));
label("",X,dir(80));
label("",Y,dir(-90));
label("",Z,dir(110));
//Credit to bobthesmartypants for the diagram
[/asy]