2019 Team #6
Source:
May 1, 2022
2019 Team
Problem Statement
Square has side length . Side is extended to point so that has the same length as , as shown below. What is the length of ? Express your answer as a decimal to the nearest hundredth.
[asy]
size(80);
defaultpen(fontsize(8pt));
pair EE = (4sqrt(2),0);
pair A = (0,0);
pair B = (4,0);
pair C = (4,4);
pair D = (0,4);
draw(A--B--C--D--cycle);
draw(A--EE);
draw(C--EE,dotted);
label("",A,SW);
label("",B,S);
label("",C,N);
label("",D,N);
label("",EE,S);
[/asy]