6
Part of 2019 MIG
Problems(2)
2019 Individual #6
Source:
5/1/2022
How many rectangles are in the following figure?
[asy]
size(80);
draw((0,0)--(3,0)--(3,4)--(0,4)--cycle);
draw((0,2)--(3,2));
draw((0.75,2)--(0.75,0));
draw((2.25,2)--(2.25,0));
[/asy]
2019 Individual
2019 Team #6
Source:
5/1/2022
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]
2019 Team