It's A Trap!
Source: 2021 Fall AMC 12A #21
November 11, 2021
AMCAMC 12
Problem Statement
Let be an isosceles trapezoid with and . Points and lie on diagonal with between and , as shown in the figure. Suppose , , , and . What is the area of [asy]
size(6cm);
usepackage("mathptmx");
import geometry;
void perp(picture pic=currentpicture,
pair O, pair M, pair B, real size=5,
pen p=currentpen, filltype filltype = NoFill){
perpendicularmark(pic, M,unit(unit(O-M)+unit(B-M)),size,p,filltype);
}
pen p=black+linewidth(1),q=black+linewidth(5);
pair C=(0,0),Y=(2,0),X=(3,0),A=(6,0),B=(2,sqrt(5.6)),D=(3,-sqrt(12.6));
draw(A--B--C--D--cycle,p);
draw(A--C,p);
draw(B--Y,p);
draw(D--X,p);
dot(A,q);
dot(B,q);
dot(C,q);
dot(D,q);
dot(X,q);
dot(Y,q);
label("2",C--Y,S);
label("1",Y--X,S);
label("3",X--A,S);
label("",A,E);
label("",B,N);
label("",C,W);
label("",D,S);
label("",Y,sqrt(2)*NE);
label("",X,N);
perp(B,Y,C,8,p);
perp(A,X,D,8,p);
[/asy]