Difference between revisions of "2016 AMC 10A Problems/Problem 24"

m (Solution 1 (Algebra))
Line 4: Line 4:
 
<math>\textbf{(A) }200\qquad \textbf{(B) }200\sqrt{2}\qquad\textbf{(C) }200\sqrt{3}\qquad\textbf{(D) }300\sqrt{2}\qquad\textbf{(E) } 500</math>
 
<math>\textbf{(A) }200\qquad \textbf{(B) }200\sqrt{2}\qquad\textbf{(C) }200\sqrt{3}\qquad\textbf{(D) }300\sqrt{2}\qquad\textbf{(E) } 500</math>
  
 +
== Solution ==
  
==Solution 1 (Algebra)==
+
===Solution 1 (Algebra)===
 
To save us from getting big numbers with lots of zeros behind them, let's divide all side lengths by <math>200</math> for now, then multiply it back at the end of our solution.
 
To save us from getting big numbers with lots of zeros behind them, let's divide all side lengths by <math>200</math> for now, then multiply it back at the end of our solution.
  
Line 88: Line 89:
 
Finally, we multiply back the <math>200</math> that we divided by at the beginning of the problem to get <math>AD=\boxed{500 (E)}</math>.
 
Finally, we multiply back the <math>200</math> that we divided by at the beginning of the problem to get <math>AD=\boxed{500 (E)}</math>.
  
==Solution 2 (Trigonometry Bash)==
+
===Solution 2 (Trigonometry Bash)===
 
<asy>
 
<asy>
 
size(250);
 
size(250);
Line 130: Line 131:
 
Because <math>\angle AOB</math>, <math>\angle BOC</math>, and <math>\angle COD</math> are congruent, <math>\angle AOD = 3\theta</math>. To find the remaining side (<math>AD</math>), we simply have to apply the law of cosines to <math>\Delta AOD</math> . Now, to find <math>\cos 3\theta</math>, we can derive a formula that only uses <math>\cos\theta</math>: <cmath>\cos 3\theta=\cos (2\theta+\theta)= \cos 2\theta \cos\theta- \sin 2\theta \cdot (2\sin\theta \cos\theta)</cmath> <cmath>\cos 3\theta= \cos\theta (\cos 2\theta-2\sin^{2}\theta)=\cos\theta (2\cos^{2}\theta-1+2\cos^{2}\theta)</cmath> <cmath>\Rightarrow \cos 3\theta=4\cos^{3}\theta-3\cos\theta</cmath> Plugging in <math>\cos\theta=\frac{3}{4}</math>, we get <math>\cos 3\theta= -\frac{9}{16}</math>. Now, applying law of cosines on triangle <math>OAD</math>, we get <cmath>(AD)^{2}= 2\cdot (200)^{2}+ 2\cdot (200)^{2}+2\cdot 200\sqrt2 \cdot 200\sqrt2 \cdot \frac{9}{16}</cmath> <cmath>\Rightarrow 2\cdot (200)^{2} \cdot (1+1+ \frac{9}{8})=(200)^{2}\cdot \frac{25}{4}</cmath> <cmath>AD=200 \cdot \frac{5}{2}=\boxed{500}</cmath>
 
Because <math>\angle AOB</math>, <math>\angle BOC</math>, and <math>\angle COD</math> are congruent, <math>\angle AOD = 3\theta</math>. To find the remaining side (<math>AD</math>), we simply have to apply the law of cosines to <math>\Delta AOD</math> . Now, to find <math>\cos 3\theta</math>, we can derive a formula that only uses <math>\cos\theta</math>: <cmath>\cos 3\theta=\cos (2\theta+\theta)= \cos 2\theta \cos\theta- \sin 2\theta \cdot (2\sin\theta \cos\theta)</cmath> <cmath>\cos 3\theta= \cos\theta (\cos 2\theta-2\sin^{2}\theta)=\cos\theta (2\cos^{2}\theta-1+2\cos^{2}\theta)</cmath> <cmath>\Rightarrow \cos 3\theta=4\cos^{3}\theta-3\cos\theta</cmath> Plugging in <math>\cos\theta=\frac{3}{4}</math>, we get <math>\cos 3\theta= -\frac{9}{16}</math>. Now, applying law of cosines on triangle <math>OAD</math>, we get <cmath>(AD)^{2}= 2\cdot (200)^{2}+ 2\cdot (200)^{2}+2\cdot 200\sqrt2 \cdot 200\sqrt2 \cdot \frac{9}{16}</cmath> <cmath>\Rightarrow 2\cdot (200)^{2} \cdot (1+1+ \frac{9}{8})=(200)^{2}\cdot \frac{25}{4}</cmath> <cmath>AD=200 \cdot \frac{5}{2}=\boxed{500}</cmath>
  
==Solution 3 (Easier trig)==
+
===Solution 3 (Easier trig)===
  
 
<asy>
 
<asy>

Revision as of 13:23, 4 February 2016

Problem

A quadrilateral is inscribed in a circle of radius $200\sqrt{2}$. Three of the sides of this quadrilateral have length $200$. What is the length of the fourth side?

$\textbf{(A) }200\qquad \textbf{(B) }200\sqrt{2}\qquad\textbf{(C) }200\sqrt{3}\qquad\textbf{(D) }300\sqrt{2}\qquad\textbf{(E) } 500$

Solution

Solution 1 (Algebra)

To save us from getting big numbers with lots of zeros behind them, let's divide all side lengths by $200$ for now, then multiply it back at the end of our solution.


[asy] size(250); defaultpen(linewidth(0.4)); //Variable Declarations real RADIUS; pair A, B, C, D, E, O; RADIUS=3;  //Variable Definitions A=RADIUS*dir(148.414); B=RADIUS*dir(109.471); C=RADIUS*dir(70.529); D=RADIUS*dir(31.586); E=extension(B,D,O,C); O=(0,0);  //Path Definitions path quad= A -- B -- C -- D -- cycle;  //Initial Diagram draw(Circle(O, RADIUS), linewidth(0.8)); draw(quad, linewidth(0.8)); label("$A$",A,W); label("$B$",B,NW); label("$C$",C,NE); label("$D$",D,E); label("$E$",E,WSW); label("$O$",O,S);  //Radii draw(O--A); draw(O--B); draw(O--C); draw(O--D);  //Construction draw(B--D); draw(rightanglemark(C,E,D)); [/asy]

Construct quadrilateral $ABCD$ on the circle with $AD$ being the missing side (Notice that since the side length is less than the radius, it will be very small on the top of the circle). Now, draw the radii from center $O$ to $A,B,C,$ and $D$. Let the intersection of $BD$ and $OC$ be point $E$. Notice that $BD$ and $OC$ are perpendicular because $BCDO$ is a kite.


We set lengths $BE=ED$ equal to $x$. By the Pythagorean Theorem,

$\sqrt{1^2-x^2}+\sqrt{(\sqrt{2})^2-x^2}=\sqrt{2}$


We solve for $x$:

$1-x^2+2-x^2+2\sqrt{(1-x^2)(2-x^2)}=2$.

$2\sqrt{(1-x^2)(2-x^2)}=2x^2-1$

$4(1-x^2)(2-x^2)=(2x^2-1)^2$

$8-12x^2+4x^4=4x^4-4x^2+1$

$8x^2=7$

$x=\frac{\sqrt{14}}{4}$


By Ptolemy's Theorem,

$AB \cdot CD + BC \cdot AD = AC \cdot BD = BD^2 = (2 \cdot BE)^2$


Substituting values,

$1^2+1 \cdot AD = 4{\left( \frac{\sqrt{14}}{4} \right)}^2$

$1+AD=\frac{7}{2}$

$AD=\frac{5}{2}$


Finally, we multiply back the $200$ that we divided by at the beginning of the problem to get $AD=\boxed{500 (E)}$.

Solution 2 (Trigonometry Bash)

[asy] size(250); defaultpen(linewidth(0.4)); //Variable Declarations real RADIUS; pair A, B, C, D, O; RADIUS=3;  //Variable Definitions A=RADIUS*dir(148.414); B=RADIUS*dir(109.471); C=RADIUS*dir(70.529); D=RADIUS*dir(31.586); O=(0,0);  //Path Definitions path quad= A -- B -- C -- D -- cycle;  //Initial Diagram draw(Circle(O, RADIUS), linewidth(0.8)); draw(quad, linewidth(0.8)); label("$A$",A,W); label("$B$",B,NW); label("$C$",C,NE); label("$D$",D,E); label("$O$",O,S); label("$\theta$",O,3N);  //Radii draw(O--A); draw(O--B); draw(O--C); draw(O--D);  //Angle mark for BOC draw(anglemark(C,O,B)); [/asy]

Construct quadrilateral $ABCD$ on the circle with $AD$ being the missing side (Notice that since the side length is less than the radius, it will be very small on the top of the circle). Now, draw the radii from center $O$ to $A,B,C,$ and $D$. Apply law of cosines on $\Delta BOC$; let $\theta := \angle BOC$. We get the following equation: \[(BC)^{2}=(OB)^{2}+(OC)^{2}-2\cdot OB \cdot OC\cdot \cos\theta\] Substituting the values in, we get \[(200)^{2}=2\cdot (200)^{2}+ 2\cdot (200)^{2}- 2\cdot 2\cdot (200)^{2}\cdot \cos\theta\] Canceling out, we get \[\cos\theta=\frac{3}{4}\] Because $\angle AOB$, $\angle BOC$, and $\angle COD$ are congruent, $\angle AOD = 3\theta$. To find the remaining side ($AD$), we simply have to apply the law of cosines to $\Delta AOD$ . Now, to find $\cos 3\theta$, we can derive a formula that only uses $\cos\theta$: \[\cos 3\theta=\cos (2\theta+\theta)= \cos 2\theta \cos\theta- \sin 2\theta \cdot (2\sin\theta \cos\theta)\] \[\cos 3\theta= \cos\theta (\cos 2\theta-2\sin^{2}\theta)=\cos\theta (2\cos^{2}\theta-1+2\cos^{2}\theta)\] \[\Rightarrow \cos 3\theta=4\cos^{3}\theta-3\cos\theta\] Plugging in $\cos\theta=\frac{3}{4}$, we get $\cos 3\theta= -\frac{9}{16}$. Now, applying law of cosines on triangle $OAD$, we get \[(AD)^{2}= 2\cdot (200)^{2}+ 2\cdot (200)^{2}+2\cdot 200\sqrt2 \cdot 200\sqrt2 \cdot \frac{9}{16}\] \[\Rightarrow 2\cdot (200)^{2} \cdot (1+1+ \frac{9}{8})=(200)^{2}\cdot \frac{25}{4}\] \[AD=200 \cdot \frac{5}{2}=\boxed{500}\]

Solution 3 (Easier trig)

[asy] size(250); defaultpen(linewidth(0.4)); //Variable Declarations real RADIUS; pair A, B, C, D, E, F, O; RADIUS=3;  //Variable Definitions A=RADIUS*dir(148.414); B=RADIUS*dir(109.471); C=RADIUS*dir(70.529); D=RADIUS*dir(31.586); E=foot(A,B,C); F=foot(D,B,C); O=(0,0);  //Path Definitions path quad= A -- B -- C -- D -- cycle;  //Initial Diagram draw(Circle(O, RADIUS), linewidth(0.8)); draw(quad, linewidth(0.8)); label("$A$",A,W); label("$B$",B,NW); label("$C$",C,NE); label("$D$",D,ENE); label("$O$",O,S); label("$\theta$",O,3N);  //Radii draw(O--A); draw(O--B); draw(O--C); draw(O--D);  //Construction draw(A--E); draw(E--B); draw(C--F); draw(F--D); label("$E$",E,NW); label("$F$",F,NE);  //Angle marks draw(anglemark(C,O,B)); draw(rightanglemark(A,E,B)); draw(rightanglemark(C,F,D)); [/asy]

Construct quadrilateral $ABCD$ on the circle $O$ with $AD$ being the missing side. Then, drop perpendiculars from $A$ and $D$ to (extended) line $BC$, and let these points be $E$ and $F$, respectively. Also, let $\theta = \angle BOC$. From Law of Cosines on $\triangle BOC$, we have $\cos \theta = \frac{3}{4}$. Now, since $\triangle BOC$ is isosceles with $OB = OC$, we have that $\angle BCO = \angle CBO = 90 - \frac{\theta}{2}$. By SSS congruence, we have that $\triangle OBC \cong \triangle OCD$, so we have that $\angle OCD = \angle CBO = 90 - \frac{\theta}{2}$, so $\angle DFC = \theta$. Thus, we have $\frac{FC}{DC} = \cos \theta = \frac{3}{4}$, so $FC = 150$. Similarly, $BE = 150$, and $AD = 150 + 200 + 150 = \boxed{500}$.

See Also

2016 AMC 10A (ProblemsAnswer KeyResources)
Preceded by
Problem 23
Followed by
Problem 25
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

The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions. AMC logo.png