Difference between revisions of "2022 AMC 10A Problems/Problem 10"

(Solution (Simple coordinates and basic algebra))
m (Solution (Simple coordinates and basic algebra))
Line 7: Line 7:
  
 
<math>\textbf{(A) }14 \qquad \textbf{(B) }10 \sqrt{2}</math> <math> \qquad \textbf{(C) }16 \qquad \textbf{(D) }12 \sqrt{2}</math> <math> \qquad \textbf{(E) }18</math>
 
<math>\textbf{(A) }14 \qquad \textbf{(B) }10 \sqrt{2}</math> <math> \qquad \textbf{(C) }16 \qquad \textbf{(D) }12 \sqrt{2}</math> <math> \qquad \textbf{(E) }18</math>
== Solution (Simple coordinates and basic algebra) ==
+
== Solution (Coordinate Geometry) ==
 
 
 
<asy>
 
<asy>
size(8cm);
+
/* Edited by MRENTHUSIASM */
draw((0,0)--(6,0));
+
size(250);
draw((0,0)--(0,3));
+
real x, y;
draw((0,3)--(6,3));
+
x = 6;
draw((6,0)--(6,3));
+
y = 3;
draw((0,1)--(1,1));
+
draw((0,0)--(x,0));
draw((1,1)--(1,0));
+
draw((0,0)--(0,y));
draw((5,2)--(6,2));
+
draw((0,y)--(x,y));
draw((5,2)--(5,3));
+
draw((x,0)--(x,y));
draw((1,1)--(5,2),dashed);
+
draw((0.5,0)--(0.5,0.5)--(0,0.5));
draw((0,3)--(6,0),dashed);
+
draw((x-0.5,y)--(x-0.5,y-0.5)--(x,y-0.5));
label("$A$",(0,0),W);
+
draw((0.5,0.5)--(x-0.5,y-0.5),dashed,Arrows());
label("$D$",(6,3),E);
+
draw((x,0)--(0,y),dashed,Arrows());
label("$E$",(0,1),W);
+
label("$1$",(x-0.5,y-0.25),W);
label("$F$",(1,0),S);
+
label("$1$",(x-0.25,y-0.5),S);
label("$4\sqrt{2}$",(2,1.25),S);
+
label("$8$",midpoint((0.5,y-0.5)--(x/2,y/2)),(0,2.5));
label("$8$",(2,2),N);
+
label("$4\sqrt{2}$",midpoint((0.5,0.5)--(x/2,y/2)),S);
label("$H$",(6,2),E);
+
label("$A$",(0,0),SW);
label("$G$",(5,3),N);
+
label("$E$",(0,0.5),W);
label("$I$",(1,1),N);
+
label("$F$",(0.5,0),S);
label("$J$",(5,2),S);
+
label("$I$",(0.5,0.5),N);
label("$1$",(0.5,0),S);
+
label("$D$",(x,y),NE);
label("$1$",(0,0.5),W);
+
label("$G$",(x-0.5,y),N);
label("$1$",(6,2.5),E);
+
label("$H$",(x,y-0.5),E);
label("$1$",(5.5,3),N);
+
label("$J$",(x-0.5,y-0.5),S);
label("$w$",(3,-0.5),S);
+
Label L1 = Label("$w$", align=(0,0), position=MidPoint, filltype=Fill(3,0,white));
label("$l$",(7,1.5),E);
+
Label L2 = Label("$\ell$", align=(0,0), position=MidPoint, filltype=Fill(0,3,white));
 +
draw((0,-1)--(x,-1), L=L1, arrow=Arrows(),bar=Bars(15));
 +
draw((x+1,0)--(x+1,y), L=L2, arrow=Arrows(),bar=Bars(15));
 
</asy>
 
</asy>
 
+
We will use coordinates here. Label the bottom left corner of the larger rectangle(without the square cut out) as <math>A(0,0)</math> and the top right as <math>D(w,l)</math>, where <math>w</math> is the width of the rectangle and <math>\ell</math> is the length. Now we have vertices <math>E(0,1)</math> , <math>F(1,0)</math> , <math>G(w-1,l)</math>, and <math>H(w,\ell-1)</math> as vertices of the irregular octagon created by cutting out the squares. Label <math>I(1,1)</math> and <math>J(w-1, \ell-1)</math> as the two closest vertices formed by the squares.
We will use coordinates here. Label the bottom left corner of the larger rectangle(without the square cut out) as <math>A(0,0)</math> and the top right as <math>D(w,l)</math>, where <math>w</math> is the width of the rectangle and <math>l</math> is the length. Now we have vertices <math>E(0,1)</math> , <math>F(1,0)</math> , <math>G(w-1,l)</math>, and <math>H(w,l-1)</math> as vertices of the irregular octagon created by cutting out the squares. Label <math>I(1,1)</math> and <math>J(w-1, l-1)</math> as the two closest vertices formed by the squares.
 
 
The distance between the two closest vertices of the squares is thus <math>IJ</math> = (<math>4</math> <math>\sqrt{2})^2.</math>
 
The distance between the two closest vertices of the squares is thus <math>IJ</math> = (<math>4</math> <math>\sqrt{2})^2.</math>
 
Substituting, we get  
 
Substituting, we get  
  
<cmath>IJ^2 = (w-2)^2 + (l-2)^2 = (4\sqrt{2})^2 = 32. </cmath>
+
<cmath>IJ^2 = (w-2)^2 + (\ell-2)^2 = (4\sqrt{2})^2 = 32. </cmath>
<cmath> \implies w^2+l^2-4w-4l = 24</cmath>
+
<cmath> \implies w^2+\ell^2-4w-4\ell = 24</cmath>
 
+
Using the fact that the diagonal of the rectangle is <math>8</math>, we get  
Using the fact that the diagonal of the rectangle = <math>8</math>, we get  
+
<cmath>w^2+\ell^2 = 64</cmath>.
 
+
Subtracting the first equation from the second equation, we get <cmath>4w+4\ell=40 \implies w+\ell = 10</cmath>
<cmath>w^2+l^2 = 64</cmath>.
+
Squaring yields <cmath>w^2 + 2w\ell + \ell^2 = 100</cmath>
 
+
Subtracting the second equation from this, we get <math>2w\ell = 36</math>, and thus area of the original rectangle is <math>w\ell = \boxed{\textbf{(E) } 18}.</math>
Subtracting the first equation from the second equation, we get <cmath>4w+4l=40 \implies w+l = 10</cmath>
 
Squaring yields <cmath>w^2 + 2wl + l^2 = 100</cmath>
 
Subtracting the second equation from this, we get <math>2wl = 36</math>, and thus area of the original rectangle is <math>wl = \boxed{\textbf{(E) } 18}.</math>
 
  
 
~USAMO333
 
~USAMO333
  
Edits and Diagram by ~KingRavi
+
Edits and Diagram by ~KingRavi and ~MRENTHUSIASM
  
 
== Video Solution 1 (Simple) ==  
 
== Video Solution 1 (Simple) ==  

Revision as of 20:25, 25 November 2022

Problem

Daniel finds a rectangular index card and measures its diagonal to be 8 centimeters. Daniel then cuts out equal squares of side 1 cm at two opposite corners of the index card and measures the distance between the two closest vertices of these squares to be centimeters, as shown below. What is the area of the original index card?

$\textbf{(A) }14 \qquad \textbf{(B) }10 \sqrt{2}$ $\qquad \textbf{(C) }16 \qquad \textbf{(D) }12 \sqrt{2}$ $\qquad \textbf{(E) }18$

Solution (Coordinate Geometry)

[asy] /* Edited by MRENTHUSIASM */ size(250); real x, y; x = 6; y = 3; draw((0,0)--(x,0)); draw((0,0)--(0,y)); draw((0,y)--(x,y)); draw((x,0)--(x,y)); draw((0.5,0)--(0.5,0.5)--(0,0.5)); draw((x-0.5,y)--(x-0.5,y-0.5)--(x,y-0.5)); draw((0.5,0.5)--(x-0.5,y-0.5),dashed,Arrows()); draw((x,0)--(0,y),dashed,Arrows()); label("$1$",(x-0.5,y-0.25),W); label("$1$",(x-0.25,y-0.5),S); label("$8$",midpoint((0.5,y-0.5)--(x/2,y/2)),(0,2.5)); label("$4\sqrt{2}$",midpoint((0.5,0.5)--(x/2,y/2)),S); label("$A$",(0,0),SW); label("$E$",(0,0.5),W); label("$F$",(0.5,0),S); label("$I$",(0.5,0.5),N); label("$D$",(x,y),NE); label("$G$",(x-0.5,y),N); label("$H$",(x,y-0.5),E); label("$J$",(x-0.5,y-0.5),S); Label L1 = Label("$w$", align=(0,0), position=MidPoint, filltype=Fill(3,0,white)); Label L2 = Label("$\ell$", align=(0,0), position=MidPoint, filltype=Fill(0,3,white)); draw((0,-1)--(x,-1), L=L1, arrow=Arrows(),bar=Bars(15)); draw((x+1,0)--(x+1,y), L=L2, arrow=Arrows(),bar=Bars(15)); [/asy] We will use coordinates here. Label the bottom left corner of the larger rectangle(without the square cut out) as $A(0,0)$ and the top right as $D(w,l)$, where $w$ is the width of the rectangle and $\ell$ is the length. Now we have vertices $E(0,1)$ , $F(1,0)$ , $G(w-1,l)$, and $H(w,\ell-1)$ as vertices of the irregular octagon created by cutting out the squares. Label $I(1,1)$ and $J(w-1, \ell-1)$ as the two closest vertices formed by the squares. The distance between the two closest vertices of the squares is thus $IJ$ = ($4$ $\sqrt{2})^2.$ Substituting, we get

\[IJ^2 = (w-2)^2 + (\ell-2)^2 = (4\sqrt{2})^2 = 32.\] \[\implies w^2+\ell^2-4w-4\ell = 24\] Using the fact that the diagonal of the rectangle is $8$, we get \[w^2+\ell^2 = 64\]. Subtracting the first equation from the second equation, we get \[4w+4\ell=40 \implies w+\ell = 10\] Squaring yields \[w^2 + 2w\ell + \ell^2 = 100\] Subtracting the second equation from this, we get $2w\ell = 36$, and thus area of the original rectangle is $w\ell = \boxed{\textbf{(E) } 18}.$

~USAMO333

Edits and Diagram by ~KingRavi and ~MRENTHUSIASM

Video Solution 1 (Simple)

https://www.youtube.com/watch?v=joVRkVp7Qvc ~AWhiz

Video Solution 2

https://youtu.be/BIy0Koe4D4s

See Also

2022 AMC 10A (ProblemsAnswer KeyResources)
Preceded by
Problem 9
Followed by
Problem 11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
All AMC 10 Problems and Solutions