an equilateral triangle in a right triangle
Source:
November 15, 2009
geometryrotationPythagorean Theorem
Problem Statement
The figure below shows a right triangle .
[asy]unitsize(15);
pair A = (0, 4);
pair B = (0, 0);
pair C = (4, 0);
draw(A -- B -- C -- cycle);
pair D = (2, 0);
real p = 7 - 3sqrt(3);
real q = 4sqrt(3) - 6;
pair E = p + (4 - p)*I;
pair F = q*I;
draw(D -- E -- F -- cycle);
label("", A, N);
label("", B, S);
label("", C, S);
label("", D, S);
label("", E, NE);
label("", F, W);[/asy]
The legs and each have length . An equilateral triangle is inscribed in as shown. Point is the midpoint of . What is the area of ?