Triangle Cevians
Source:
February 21, 2006
geometryratiosearchfunctionarea of a triangleHeron's formulaalgebra
Problem Statement
Point is inside . Line segments , , and are drawn with on , on , and on (see the figure at right). Given that , , , , and , find the area of .[asy]
size(200);
pair A=origin, B=(7,0), C=(3.2,15), D=midpoint(B--C), F=(3,0), P=intersectionpoint(C--F, A--D), ex=B+40*dir(B--P), E=intersectionpoint(B--ex, A--C);
draw(A--B--C--A--D^^C--F^^B--E);
pair point=P;
label("", A, dir(point--A));
label("", B, dir(point--B));
label("", C, dir(point--C));
label("", D, dir(point--D));
label("", E, dir(point--E));
label("", F, dir(point--F));
label("", P, dir(0));[/asy]