Difference between revisions of "2020 AMC 12A Problems/Problem 24"

(Solution 1(b))
 
(76 intermediate revisions by 11 users not shown)
Line 4: Line 4:
 
<math>\textbf{(A) } 1+\sqrt{2} \qquad \textbf{(B) } \sqrt{7} \qquad \textbf{(C) } \frac{8}{3} \qquad \textbf{(D) } \sqrt{5+\sqrt{5}} \qquad \textbf{(E) } 2\sqrt{2}</math>
 
<math>\textbf{(A) } 1+\sqrt{2} \qquad \textbf{(B) } \sqrt{7} \qquad \textbf{(C) } \frac{8}{3} \qquad \textbf{(D) } \sqrt{5+\sqrt{5}} \qquad \textbf{(E) } 2\sqrt{2}</math>
  
== Solution 1 ==
+
== Solution 1 (Rotations)==
 +
 
 +
===Solution 1(a)===
 +
 
 +
We begin by rotating <math>\triangle{ APB}</math> counterclockwise by <math>60^{\circ}</math> about <math>A</math>, such that <math>P\mapsto Q</math> and <math>B\mapsto C</math>. We see that <math>\triangle{ APQ}</math> is equilateral with side length <math>1</math>, meaning that <math>\angle APQ = 60^{\circ}</math>. We also see that <math>\triangle{CPQ}</math> is a <math>30</math>-<math>60</math>-<math>90</math> right triangle, meaning that <math>\angle CPQ= 60^{\circ}</math>. Thus, by adding the two together, we see that <math>\angle APC = 120^{\circ}</math>.
 
<asy>
 
<asy>
draw((0,0)--(4,5.65)--(8,0)--cycle);
+
size(200); pen p = fontsize(10pt)+gray+0.5; pen q = fontsize(13pt);
label("A", (4,5.65), N, p = fontsize(10pt));
+
pair A,B,C,D,P,Q;
label("C", (8,0), SE, p = fontsize(10pt));
+
real s=sqrt(7);
label("B", (0,0), SW, p = fontsize(10pt));
+
B=origin; A=s*dir(60); C=s*right; P=IP(CR(A,1),CR(C,2)); Q=rotate(60,A)*P;
label("P", (3.5,3.5), NW, p = fontsize(10pt));
+
draw(A--B--C--A, black+0.8);
draw((0,0)--(3.5,3.5));
+
draw(A--P--B^^P--C^^A--Q--C, p);
label("$\sqrt{3}$",(0,0)--(3.5,3.5), SE);
+
draw(P--Q, p+dashed);
draw((8,0)--(3.5,3.5));
+
//draw(A--A+C--C, p);
label("2",(8,0)--(3.5,3.5), SW);
+
label("$A$", A, up, q);  
draw((4,5.65)--(3.5,3.5));
+
label("$B$", B, 0.5*(B-P), q);
label("1",(4,5.65)--(3.5,3.5), E);
+
label("$C$", C, 0.5*(C-P), q);
draw((8,0)--(4,5.65)--(11,5.65)--cycle);
+
label("$P$", P, dir(180), q);
label("$P'$", (6,4.75), NE, p = fontsize(10pt));
+
label("$Q$", Q, 0.25*(Q-B), q);  
draw((4,5.65)--(6,4.75));
+
label("$\sqrt{3}$",B--P, right, p);
label("1",(4,5.65)--(6,4.75), S);
+
label("$2$",C--P, 2*left, p);  
draw((8,0)--(6,4.75));
+
label("$1$",A--P, 1.5**dir(-10), p);
label("$\sqrt{3}$",(8,0)--(6,4.75), E);
+
label("$1$", A--Q, dir(250), p);
draw((3.5,3.5)--(6,4.75));
+
label("$1$",P--Q, down, p);
label("1", (3.5,3.5)--(6,4.75), SE);
+
label("$\sqrt{3}$",C--Q, right, p);  
 +
</asy>
 +
We can now use the law of cosines as following:
 +
<cmath>\begin{align*}
 +
s^2 &= (AP)^2 + (CP)^2 - 2\cdot AP\cdot CP\cdot \cos{\angle{APC}} \\
 +
&= 1 + 4 - 2\cdot 1\cdot 2\cdot \cos{120^{\circ}} \\
 +
&= 5 - 4\left(-\frac{1}{2}\right) \\
 +
&= 7,
 +
\end{align*}</cmath>
 +
giving us that <math>s = \boxed{ \sqrt{7} \ \textbf{(B)}}</math>.
 +
 
 +
~ciceronii
 +
 
 +
===Solution 1(b)===
 +
 
 +
Rotate <math>\triangle CPA</math> counterclockwise <math>60^\circ</math> around point <math>C</math> to <math>\triangle CQB</math>. Then <math>CP=CQ, \angle PCQ=60^\circ</math>, so <math>\triangle CPQ</math> is an equilateral triangle.
 +
<asy>
 +
size(200); pen p = fontsize(10pt)+gray+0.4; pen q = fontsize(13pt);
 +
pair A,B,C,D,P,Q;
 +
real s=sqrt(7);
 +
A=origin; B=s*right; C=s*dir(60); P=IP(CR(A,1),CR(C,2)); Q=rotate(60,C)*P;
 +
draw(A--B--C--A, black+0.8);
 +
draw(A--P--B^^P--C, p);
 +
draw(B--Q--C^^P--Q, p+dashed);
 +
label("$A$", A, A-P, q);  
 +
label("$B$", B, B-P, q);
 +
label("$C$", C, up, q)
 +
label("$P$", P, dir(140), q);
 +
label("$Q$", Q, 0.25*(Q-P), q);  
 +
label("$\sqrt{3}$",P--B, dir(60), p);
 +
label("$2$",C--P, 2*left, p);  
 +
label("$1$",A--P, up, p);
 +
label("$1$", B--Q, dir(-30), p);
 +
label("$2$",P--Q, down, p);
 +
label("$2$",C--Q, dir(45), p);  
 
</asy>
 
</asy>
 +
Note that <math>\triangle PQB</math> is a <math>30^\circ</math>-<math>60^\circ</math>-<math>90^\circ</math> triangle, hence <math>\angle BPQ=30^\circ</math>, and <math>\angle BPC=90^\circ</math>, so <cmath>BC^2=PC^2+PB^2=2^2+3=7,</cmath> and the answer is <math>\boxed{\textbf{(B) } \sqrt{7}}</math>.
  
We begin by rotating <math>\triangle{ABC}</math> by <math>60^{\circ}</math> counterclockwise about <math>A</math>, such that in <math>\triangle{A'B'C'}</math>, <math>B' = C</math>. We see that
+
~szhangmath
<math>\triangle{APP'}</math> is equilateral with side length <math>1</math>, meaning that <math>\angle APP' = 60^{\circ}</math>. We also see that <math>\triangle{CPP'}</math> is a <math>30-60-90</math> right triangle, meaning that <math>\angle CPP'= 60^{\circ}</math>. Thus, by adding the two together, we see that <math>\angle APC = 120^{\circ}</math>. We can now use the law of cosines as following:
 
  
<cmath>s^2 = (AP)^2 + (CP)^2 - 2(AP)(CP)\cos{\angle{APC}}</cmath>
+
===Solution 1(c)===
<cmath>s^2 = 1 + 4 - 2(1)(2)\cos{120^{\circ}}</cmath>
 
<cmath>s^2 = 5 - 4(-\frac{1}{2})</cmath>
 
<cmath>s = \sqrt{5 + 2}</cmath>
 
  
giving us that <math>s = \boxed{\textbf{(B) } \sqrt{7}}</math>. ~ciceronii
+
Rotate <math>\triangle BPC</math> counterclockwise by <math>60^\circ</math> around point <math>B</math> to <math>\triangle BQA</math>. Then <math>BP=BQ</math>, and <math>\angle PBQ=60^\circ</math>, so <math>\triangle BPQ</math> is an equilateral triangle.
 +
<asy>
 +
size(200); pen p = fontsize(10pt)+gray+0.4; pen q = fontsize(13pt);
 +
pair A,B,C,D,P,Q,R,X,Y,Z;
 +
real s=sqrt(7);
 +
C=origin; A=s*right; B=s*dir(60); P=IP(CR(A,1),CR(C,2)); Q=rotate(60,B)*P;
 +
draw(A--B--C--A, black+0.8);
 +
draw(A--P--B^^P--C, p);
 +
draw(B--Q--A^^P--Q, p+dashed);
 +
label("$A$", A, A-P, q);
 +
label("$B$", B, B-P, q);
 +
label("$C$", C, 0.6*(C-P), q); 
 +
label("$P$", P, dir(250), q); 
 +
label("$Q$", Q, 0.25*(Q-P), q);
 +
label("$\sqrt{3}$",B--Q, dir(60), p);
 +
label("$\sqrt{3}$",P--B, dir(210), p);
 +
label("$\sqrt{3}$",P--Q, dir(135), p);
 +
label("$2$",P--C, dir(120), p);
 +
label("$2$",A--Q, dir(-20), p);
 +
label("$1$",A--P, dir(210), p);
 +
</asy>
 +
Note that <math>\triangle QAP</math> is a <math>30^\circ</math>-<math>60^\circ</math>-<math>90^\circ</math> triangle, hence <math>\angle PQA=30^\circ</math>, and <math>\angle BQA=90^\circ</math>, so <cmath>AB^2=PQ^2+AQ^2=2^2+3=7,</cmath> and the answer is <math>\boxed{\textbf{(B) } \sqrt{7}}</math>.
  
 
== Solution 2 (Intuition) ==
 
== Solution 2 (Intuition) ==
 
<asy>
 
<asy>
 
unitsize(1inch);
 
unitsize(1inch);
 +
pen p = fontsize(10pt);
  
 
dot((0.756,0.655));
 
dot((0.756,0.655));
Line 47: Line 104:
 
pair A = origin, B = (1.323,2.291), C = (2.646,0), P = (0.756,0.655), Q = (1.512,1.309), R = (1.701,0.327);
 
pair A = origin, B = (1.323,2.291), C = (2.646,0), P = (0.756,0.655), Q = (1.512,1.309), R = (1.701,0.327);
 
draw((0,0)--(1.323,2.291)--(2.646,0)--cycle);
 
draw((0,0)--(1.323,2.291)--(2.646,0)--cycle);
label("A", (0,0), SW, p = fontsize(10pt));
+
label("$A$", (0,0), SW, p);
label("C", (2.646,0), SE, p = fontsize(10pt));
+
label("$C$", (2.646,0), SE, p);
label("B", (1.323,2.291), N, p = fontsize(10pt));
+
label("$B$", (1.323,2.291), N, p);
label("P'", (0.756,0.655), NW, p = fontsize(10pt));
+
label("$P'$", (0.756,0.655), NW, p);
label("1", (2.174,0.164), N, p = fontsize(10pt));
+
label("$1$", (2.174,0.164), N, p);
label("1", (1.228,0.491), N, p = fontsize(10pt));
+
label("$1$", (1.228,0.491), N, p);
 
D(A--P, red);
 
D(A--P, red);
 
D(B--Q, red);
 
D(B--Q, red);
Line 68: Line 125:
 
== Solution 3 (Answer Choices) ==
 
== Solution 3 (Answer Choices) ==
 
<asy>
 
<asy>
 +
unitsize(0.4inch);
 +
pen p = fontsize(10pt);
 +
 
draw((0,0)--(4,5.65)--(8,0)--cycle);
 
draw((0,0)--(4,5.65)--(8,0)--cycle);
label("A", (4,5.65), N, p = fontsize(10pt));
+
label("$A$", (4,5.65), N, p);
label("C", (8,0), SE, p = fontsize(10pt));
+
label("$C$", (8,0), SE, p);
label("B", (0,0), SW, p = fontsize(10pt));
+
label("$B$", (0,0), SW, p);
label("P", (3.5,3.5), E, p = fontsize(10pt));
+
label("$P$", (3.5,3.5), E, p);
label("E", (2.8191,3.982), NW, p = fontsize(10pt));
+
label("$E$", (2.8191,3.982), NW, p);
label("F", (4.848,4.452), NE, p = fontsize(10pt));
+
label("$F$", (4.848,4.452), NE, p);
label("G", (3.5,0), NE, p = fontsize(10pt));
+
label("$G$", (3.5,0), down, p);
 
draw((0,0)--(3.5,3.5));
 
draw((0,0)--(3.5,3.5));
label("$\sqrt{3}$",(0,0)--(3.5,3.5), SE);
+
label("$\sqrt{3}$",(0,0)--(3.5,3.5), SE,p);
 
draw((8,0)--(3.5,3.5));
 
draw((8,0)--(3.5,3.5));
label("2",(8,0)--(3.5,3.5), SW);
+
label("$2$",(8,0)--(3.5,3.5), SW,p);
 
draw((4,5.65)--(3.5,3.5));
 
draw((4,5.65)--(3.5,3.5));
label("1",(4,5.65)--(3.5,3.5), E);
+
label("$1$",(4,5.65)--(3.5,3.5), E,p);
 
draw((3.5,3.5)--(2.8191,3.982));
 
draw((3.5,3.5)--(2.8191,3.982));
 
draw((3.5,3.5)--(4.848,4.452));
 
draw((3.5,3.5)--(4.848,4.452));
Line 89: Line 149:
 
We begin by dropping altitudes from point <math>P</math> down to all three sides of the triangle as shown above. We can therefore make equations regarding the areas of triangles <math>\triangle{APC}</math>, <math>\triangle{APB}</math>, and <math>\triangle{BPC}</math>. Let <math>s</math> be the side of the equilateral triangle, we use the Heron's formula:  
 
We begin by dropping altitudes from point <math>P</math> down to all three sides of the triangle as shown above. We can therefore make equations regarding the areas of triangles <math>\triangle{APC}</math>, <math>\triangle{APB}</math>, and <math>\triangle{BPC}</math>. Let <math>s</math> be the side of the equilateral triangle, we use the Heron's formula:  
  
<cmath>\triangle{APC} = \frac{s\cdot PF}{2} = \sqrt{\frac{s+3}{2}(\frac{s+3}{2}-s)(\frac{s+3}{2}-1)(\frac{s+3}{2}-2)}</cmath>
+
<cmath>\triangle{APC} = \frac{s\cdot PF}{2} = \sqrt{\frac{s+3}{2}\left(\frac{s+3}{2}-s\right)\left(\frac{s+3}{2}-1\right)\left(\frac{s+3}{2}-2\right)}</cmath>
<cmath>\implies PF = \frac{\sqrt{10s^2-4s-9}}{2s}</cmath>
+
<cmath>\implies PF = \frac{\sqrt{10s^2-s^4-9}}{2s}</cmath>
  
 
Similarly, we obtain:
 
Similarly, we obtain:
Line 104: Line 164:
  
 
~ siluweston
 
~ siluweston
 +
~ edits by aopspandy
  
 
== Solution 4 (Area) ==
 
== Solution 4 (Area) ==
Line 110: Line 171:
  
 
<asy>
 
<asy>
 +
size(300);
 
draw((0,3.5)--(4,9.15)--(8,3.5)--cycle);
 
draw((0,3.5)--(4,9.15)--(8,3.5)--cycle);
label("A", (4,9.15), N, p = fontsize(10pt));
+
label("$A$", (4,9.15), N, p = fontsize(10pt));
label("C", (8,3.5), SE, p = fontsize(10pt));
+
label("$C$", (8,3.5), SE, p = fontsize(10pt));
label("B", (0,3.5), SW, p = fontsize(10pt));
+
label("$B$", (0,3.5), SW, p = fontsize(10pt));
label("P", (3.5,7), NW, p = fontsize(10pt));
+
label("$P$", (3.5,7), NW, p = fontsize(10pt));
 
draw((0,3.5)--(3.5,7));
 
draw((0,3.5)--(3.5,7));
 
draw((8,3.5)--(3.5,7));
 
draw((8,3.5)--(3.5,7));
 
draw((4,9.15)--(3.5,7));
 
draw((4,9.15)--(3.5,7));
label("P'", (3.5, 0), S, p = fontsize(10pt));
+
label("$P'$", (3.5, 0), S, p = fontsize(10pt));
 
draw((8,3.5)--(3.5,0));
 
draw((8,3.5)--(3.5,0));
 
draw((0,3.5)--(3.5,0));
 
draw((0,3.5)--(3.5,0));
label("P''",(6,8.5), NE, p = fontsize(10pt));
+
label("$P''$",(6,8.5), NE, p = fontsize(10pt));
 
draw((4,9.15)--(6,8.5));
 
draw((4,9.15)--(6,8.5));
 
draw((8,3.5)--(6,8.5));
 
draw((8,3.5)--(6,8.5));
label("P'''",(2.25,8), NW, p = fontsize(10pt));
+
label("$P'''$",(2.25,8), NW, p = fontsize(10pt));
 
draw((0,3.5)--(2.25,8));
 
draw((0,3.5)--(2.25,8));
 
draw((4,9.15)--(2.25,8));
 
draw((4,9.15)--(2.25,8));
Line 140: Line 202:
 
The formula for the area of an equilateral triangle with side length <math>s</math> is <math>\frac{s^2\sqrt{3}}{4}</math> (if you don't have this memorized it's not hard to derive). Comparing this formula to the area of <math>ABC</math>, we can easily find that <math>s^2=7</math>, which means that the side length of <math>ABC</math> is <math>\boxed{\textbf{(B) } \sqrt{7}}</math>.
 
The formula for the area of an equilateral triangle with side length <math>s</math> is <math>\frac{s^2\sqrt{3}}{4}</math> (if you don't have this memorized it's not hard to derive). Comparing this formula to the area of <math>ABC</math>, we can easily find that <math>s^2=7</math>, which means that the side length of <math>ABC</math> is <math>\boxed{\textbf{(B) } \sqrt{7}}</math>.
  
While this approach feels rather convoluted in comparison to Solution 1, it is more flexible and can actually be generalized for any point in an equilateral triangle (although that requires use of Heron's).
+
While this approach feels rather convoluted in comparison to Solution 1 (which only works for isosceles triangles), it is more flexible and can actually be generalized for any point in a general triangle (although that requires use of Heron's, and potentially Law of Sines and Cosines).
  
 
~IAmTheHazard
 
~IAmTheHazard
  
== Solution 5 ==
+
== Solution 5 (Coordinate Bashing)==
 
Suppose <math>A(0,\sqrt{3}a)</math>, <math>B(-a,0)</math>, <math>C(a,0)</math> and <math>P(x,y)</math>. So <math>s=2a</math>. Since <math>BP = \sqrt{3}</math> and <math>CP = 2</math>, we have
 
Suppose <math>A(0,\sqrt{3}a)</math>, <math>B(-a,0)</math>, <math>C(a,0)</math> and <math>P(x,y)</math>. So <math>s=2a</math>. Since <math>BP = \sqrt{3}</math> and <math>CP = 2</math>, we have
 
<cmath>(x+a)^2+y^2=3</cmath>
 
<cmath>(x+a)^2+y^2=3</cmath>
Line 150: Line 212:
 
Solving the equations, we have  
 
Solving the equations, we have  
 
<cmath>x=-\frac{1}{4a},~~y=\sqrt{\frac72-a^2-\frac{1}{16a^2}}</cmath>  
 
<cmath>x=-\frac{1}{4a},~~y=\sqrt{\frac72-a^2-\frac{1}{16a^2}}</cmath>  
From <math>AP=1</math>, we can have <math>a=\sqrt{7}/2</math>. The answer is <math>\boxed{\textbf{(B) } \sqrt{7}}</math>.
+
From <math>AP=1</math> (and a fair amount of algebra), we can have <math>a=\sqrt{7}/2</math>. The answer is <math>\boxed{\textbf{(B) } \sqrt{7}}</math>.
  
 
~Linty Huang
 
~Linty Huang
  
== Video Solution ==
+
==Solution 6 (Diagram Nuke)==
https://www.youtube.com/watch?v=mUW4zcrRL54
+
Drawing out a rough sketch, it appears that <math>\angle BPC = 90^{\circ}</math>. By Pythagorean, our answer is <math>\sqrt{\sqrt{3}^2 + 2^2} = \boxed{\textbf{(B) } \sqrt{7}}</math>.
 +
 
 +
Proof of this fact can be found in the Video Solution by Richard Rusczyk below.
 +
 
 +
==Solution 7 (Theorem Nuke)==
 +
We can use the following theorem:
 +
<math>\text{For a point } P \text{ inside of an equilateral triangle } \triangle ABC \text{ and side length } s</math>, <cmath>3(PA^4+PB^4+PC^4 + s^4)=(PA^2+PB^2+PC^2+s^2)^2</cmath>
 +
We know that <math>PA=1, PB=\sqrt{3}</math>, and <math>CP=2</math>. Plugging these into our formula, we get <math>3(1+9+16+s^4)=(1+3+4+s^2)^2 \Rightarrow 78 + 3s^4=64+16s^2+s^4 \Rightarrow 2s^4-16s^2+14=0</math>. Let <math>s^2=u</math>. Then, we have <math>2u^2-16u+14=0</math>. Solving for <math>u</math>, we get <math>\frac{16 \pm \sqrt{144}}{4} = 4 \pm 3</math>. If <math>u</math> is equal to <math>1</math>, then we have <math>s=1</math>, but this is not possible since <math>P</math> is inside of the triangle. This means that <math>u=7</math>, and therefore <math>s=\boxed{\textbf{(B) } \sqrt{7}}</math>.
 +
 
 +
~kn07
 +
 
 +
==Solution 8 (More Coordinate Bashing)==
 +
Set the points <math>A(0,0), B\left(\frac{s}{2},\frac{s\sqrt{3}}{2}\right), C(s,0)</math>. Then, we want to find the intersection of the three circles <cmath>x^2+y^2=1, (x-s)^2+y^2=4, \left(x-\frac{s}{2}\right)^2+\left(y-\frac{s\sqrt{3}}{2}\right)^2=3.</cmath> Subtracting circle 1 from circle 2 yields <math>s^2-2xs=3</math>, which can be rewritten as <math>x=\frac{s^2-3}{2s}</math>. Subtracting circle 1 from circle 3 yields <math>s^2-sx-ys\sqrt{3}=2</math>, or <math>2s^2-2sx-2ys\sqrt{3}=4</math>. Subtracting <math>s^2-2xs=3</math> from this yields <math>s^2-2ys\sqrt{3}=1</math>, or <math>y=\frac{s^2-1}{2s\sqrt{3}}</math>.
 +
 
 +
We then substitute our values for <math>x</math> and <math>y</math> back into <math>x^2+y^2=1</math>, which gives us <cmath>\left(\frac{s^2-3}{2s}\right)^2+\left(\frac{s^2-1}{2s\sqrt{3}}\right)^2=1.</cmath>
 +
Solving this equation (the algebra is surprisingly not bad!) gives us <math>s=\pm1,\pm\sqrt{7}</math>. Since <math>s</math> must be greater than 1, the answer is <math>\boxed{\textbf{(B) } \sqrt{7}}</math>.
 +
 
 +
- curiousmind888 & TGSN
 +
 
 +
==Solution 9 (Trig Bash)==
 +
 
 +
Let <math>\angle APC = \alpha</math>, <math>\angle CPB = \beta</math>, by the Law of Cosine
 +
<cmath>1^2+2^2 - 2 \cdot 1 \cdot 2 \cdot \cos \alpha = 2^2 + (\sqrt{3})^2 - 2 \cdot 2 \cdot \sqrt{3} \cdot \cos \beta</cmath>
 +
<cmath>2^2 + (\sqrt{3})^2 - 2 \cdot 2 \cdot \sqrt{3} = (\sqrt{3})^2 + 1^2 - 2 \cdot \sqrt{3} \cdot 1 \cdot \cos (360^{\circ} - \alpha - \beta)</cmath>
 +
Simplifying the two equations we get
 +
<cmath>\sqrt{3} \cos \beta - \cos \alpha = \frac12 </cmath>
 +
<cmath>3 - 4 \sqrt{3} \cos \beta = - 2 \sqrt{3} ( \cos \alpha \cos \beta - \sin \alpha \sin \beta )</cmath>
 +
 
 +
Let <math>\cos \alpha = x</math>, <math>\cos \beta = y</math>, by simplifying we get:
 +
<cmath>y\sqrt{3} - x = \frac12</cmath>
 +
<cmath>3-4y\sqrt{3} = -2\sqrt{3} \left( xy - \sqrt{ (1-x^2)(1-y^2) } \right)</cmath>
 +
Solving the first equation for <math>y</math> we get <math>y = \frac{ 2x \sqrt{3} + \sqrt{3} }{6}</math>
  
==Remark==
+
Substituting this into the second equation gives
We will show three rotations below simultaneously (One of which is shown in Solution 1):
+
<cmath>3-4\sqrt{3} \cdot \frac{ 2x \sqrt{3} + \sqrt{3} }{6} = -2\sqrt{3} \left( x \cdot \frac{ 2x \sqrt{3} + \sqrt{3} }{6} - \sqrt{ (1-x^2)(1- (\frac{ 2x \sqrt{3} + \sqrt{3} }{6})^2 ) } \right)</cmath>
 +
<cmath>3-2(2x+1) = - 2\sqrt{3} \cdot x \cdot \frac{ 2x \sqrt{3} + \sqrt{3} }{6} + 2\sqrt{3} \cdot \sqrt{ (1-x^2)(1- (\frac{ 2x \sqrt{3} + \sqrt{3} }{6})^2 ) }</cmath>
 +
<cmath>3 - 2x - 2 = -2x^2 - x + 2\sqrt{3} \cdot \sqrt{ (1-x^2)(1- (\sqrt{3})^2(\frac{ 2x + 1 }{6})^2 ) }</cmath>
 +
<cmath>3 - 2x - 2 + 2x^2 + x = \sqrt{ 12 (1-x^2)(1- \frac{ 4x^2 + 4x + 1 }{12} ) }</cmath>
 +
<cmath>1 - 3x + 2x^2 = \sqrt{ (1-x^2)(11 - 4x^2 - 4x) }</cmath>
 +
<cmath>(1 - 3x + 2x^2)^2 = (1-x^2)(11 - 4x^2 - 4x)</cmath>
 +
<cmath>1 - 3x + 2x^2 - 3x + 9x^2 - 6x^3 + 2x^2 - 6x^3 + 4x^4 = 11 - 4x - 4x^2 - 11x^2 + 4x^3 + 4x^4</cmath>
 +
<cmath>1 - 6x + 13x^2 - 12x^3 = 11 - 4x - 15x^2 + 4x^3</cmath>
 +
<cmath>8x^3 - 14x^2 + x + 5 = 0</cmath>
 +
<cmath>(x-1)(4x-5)(2x+1) = 0</cmath>
 +
<cmath>\cos \alpha<1, \quad \cos \alpha = x = -\frac12, \quad s = \sqrt{ 5 - 4 \cos \alpha } = \boxed{\textbf{(B) } \sqrt{7}}</cmath>
  
<b>Diagram in Progress. A MILLION THANKS FOR NOT EDITING THIS SECTION.</b>
+
~[https://artofproblemsolving.com/wiki/index.php/User:Isabelchen isabelchen]
  
<b>Explanation in Progress. A MILLION THANKS FOR NOT EDITING THIS SECTION.</b>
+
== Video Solutions ==
 +
https://www.youtube.com/watch?v=mUW4zcrRL54
  
~MRENTHUSIASM
+
Video Solution by Richard Rusczyk -
 +
https://www.youtube.com/watch?v=xnAXGUthO54&list=PLyhPcpM8aMvJvwA2kypmfdtlxH90ShZCc&index=4
 +
- AMBRIGGS
  
 
==See Also==
 
==See Also==
 
 
{{AMC12 box|year=2020|ab=A|num-b=23|num-a=25}}
 
{{AMC12 box|year=2020|ab=A|num-b=23|num-a=25}}
 
{{MAA Notice}}
 
{{MAA Notice}}

Latest revision as of 17:49, 8 February 2024

Problem

Suppose that $\triangle{ABC}$ is an equilateral triangle of side length $s$, with the property that there is a unique point $P$ inside the triangle such that $AP=1$, $BP=\sqrt{3}$, and $CP=2$. What is $s$?

$\textbf{(A) } 1+\sqrt{2} \qquad \textbf{(B) } \sqrt{7} \qquad \textbf{(C) } \frac{8}{3} \qquad \textbf{(D) } \sqrt{5+\sqrt{5}} \qquad \textbf{(E) } 2\sqrt{2}$

Solution 1 (Rotations)

Solution 1(a)

We begin by rotating $\triangle{ APB}$ counterclockwise by $60^{\circ}$ about $A$, such that $P\mapsto Q$ and $B\mapsto C$. We see that $\triangle{ APQ}$ is equilateral with side length $1$, meaning that $\angle APQ = 60^{\circ}$. We also see that $\triangle{CPQ}$ is a $30$-$60$-$90$ right triangle, meaning that $\angle CPQ= 60^{\circ}$. Thus, by adding the two together, we see that $\angle APC = 120^{\circ}$. [asy] size(200); pen p = fontsize(10pt)+gray+0.5; pen q = fontsize(13pt); pair A,B,C,D,P,Q; real s=sqrt(7); B=origin; A=s*dir(60); C=s*right; P=IP(CR(A,1),CR(C,2)); Q=rotate(60,A)*P; draw(A--B--C--A, black+0.8); draw(A--P--B^^P--C^^A--Q--C, p); draw(P--Q, p+dashed); //draw(A--A+C--C, p); label("$A$", A, up, q);  label("$B$", B, 0.5*(B-P), q); label("$C$", C, 0.5*(C-P), q);   label("$P$", P, dir(180), q);   label("$Q$", Q, 0.25*(Q-B), q);  label("$\sqrt{3}$",B--P, right, p);  label("$2$",C--P, 2*left, p);  label("$1$",A--P, 1.5**dir(-10), p);   label("$1$", A--Q, dir(250), p);  label("$1$",P--Q, down, p);  label("$\sqrt{3}$",C--Q, right, p);  [/asy] We can now use the law of cosines as following: \begin{align*} s^2 &= (AP)^2 + (CP)^2 - 2\cdot AP\cdot CP\cdot \cos{\angle{APC}} \\ &= 1 + 4 - 2\cdot 1\cdot 2\cdot \cos{120^{\circ}} \\ &= 5 - 4\left(-\frac{1}{2}\right) \\ &= 7, \end{align*} giving us that $s = \boxed{ \sqrt{7} \ \textbf{(B)}}$.

~ciceronii

Solution 1(b)

Rotate $\triangle CPA$ counterclockwise $60^\circ$ around point $C$ to $\triangle CQB$. Then $CP=CQ, \angle PCQ=60^\circ$, so $\triangle CPQ$ is an equilateral triangle. [asy] size(200); pen p = fontsize(10pt)+gray+0.4; pen q = fontsize(13pt); pair A,B,C,D,P,Q; real s=sqrt(7); A=origin; B=s*right; C=s*dir(60); P=IP(CR(A,1),CR(C,2)); Q=rotate(60,C)*P; draw(A--B--C--A, black+0.8); draw(A--P--B^^P--C, p); draw(B--Q--C^^P--Q, p+dashed); label("$A$", A, A-P, q);  label("$B$", B, B-P, q); label("$C$", C, up, q);   label("$P$", P, dir(140), q);   label("$Q$", Q, 0.25*(Q-P), q);  label("$\sqrt{3}$",P--B, dir(60), p);  label("$2$",C--P, 2*left, p);  label("$1$",A--P, up, p);   label("$1$", B--Q, dir(-30), p);  label("$2$",P--Q, down, p);  label("$2$",C--Q, dir(45), p);  [/asy] Note that $\triangle PQB$ is a $30^\circ$-$60^\circ$-$90^\circ$ triangle, hence $\angle BPQ=30^\circ$, and $\angle BPC=90^\circ$, so \[BC^2=PC^2+PB^2=2^2+3=7,\] and the answer is $\boxed{\textbf{(B) } \sqrt{7}}$.

~szhangmath

Solution 1(c)

Rotate $\triangle BPC$ counterclockwise by $60^\circ$ around point $B$ to $\triangle BQA$. Then $BP=BQ$, and $\angle PBQ=60^\circ$, so $\triangle BPQ$ is an equilateral triangle. [asy] size(200); pen p = fontsize(10pt)+gray+0.4; pen q = fontsize(13pt); pair A,B,C,D,P,Q,R,X,Y,Z; real s=sqrt(7); C=origin; A=s*right; B=s*dir(60); P=IP(CR(A,1),CR(C,2)); Q=rotate(60,B)*P;  draw(A--B--C--A, black+0.8); draw(A--P--B^^P--C, p); draw(B--Q--A^^P--Q, p+dashed); label("$A$", A, A-P, q);  label("$B$", B, B-P, q); label("$C$", C, 0.6*(C-P), q);   label("$P$", P, dir(250), q);   label("$Q$", Q, 0.25*(Q-P), q);  label("$\sqrt{3}$",B--Q, dir(60), p); label("$\sqrt{3}$",P--B, dir(210), p); label("$\sqrt{3}$",P--Q, dir(135), p); label("$2$",P--C, dir(120), p); label("$2$",A--Q, dir(-20), p); label("$1$",A--P, dir(210), p); [/asy] Note that $\triangle QAP$ is a $30^\circ$-$60^\circ$-$90^\circ$ triangle, hence $\angle PQA=30^\circ$, and $\angle BQA=90^\circ$, so \[AB^2=PQ^2+AQ^2=2^2+3=7,\] and the answer is $\boxed{\textbf{(B) } \sqrt{7}}$.

Solution 2 (Intuition)

[asy] unitsize(1inch); pen p = fontsize(10pt);  dot((0.756,0.655)); dot((1.512,1.309)); dot((1.701,0.327));  pair A = origin, B = (1.323,2.291), C = (2.646,0), P = (0.756,0.655), Q = (1.512,1.309), R = (1.701,0.327); draw((0,0)--(1.323,2.291)--(2.646,0)--cycle); label("$A$", (0,0), SW, p); label("$C$", (2.646,0), SE, p); label("$B$", (1.323,2.291), N, p); label("$P'$", (0.756,0.655), NW, p); label("$1$", (2.174,0.164), N, p); label("$1$", (1.228,0.491), N, p); D(A--P, red); D(B--Q, red); D(C--R, red); D(P--Q--R--cycle, blue); D(B--P, magenta); [/asy]

Suppose that triangle $ABC$ had three segments of length $2$, emanating from each of its vertices, making equal angles with each of its sides, and going into its interior. Suppose each of these segments intersected the segment clockwise to it precisely at its other endpoint and inside $ABC$ (as pictured in the diagram above). Clearly $s > 2$ and the triangle defined by these intersection points will be equilateral (pictured by the blue segments).

Take this equilateral triangle to have side length $1$. The portions of each segment outside this triangle (in red) have length $1$. Take $P'$ to be the intersection of the segments emanating from $A$ and $C$. By Law of Cosines, \[BP' = \sqrt{1 + 1 - 2\cos{120^\circ}} = \sqrt{3}.\] So, $P'$ actually satisfies the conditions of the problem, and we can obtain again by Law of Cosines \[s = \sqrt{4 + 1 - 4\cos{120^\circ}} = \boxed{\textbf{(B)} \sqrt{7}}.\]

~ hnkevin42

Solution 3 (Answer Choices)

[asy] unitsize(0.4inch); pen p = fontsize(10pt);  draw((0,0)--(4,5.65)--(8,0)--cycle); label("$A$", (4,5.65), N, p); label("$C$", (8,0), SE, p); label("$B$", (0,0), SW, p); label("$P$", (3.5,3.5), E, p); label("$E$", (2.8191,3.982), NW, p); label("$F$", (4.848,4.452), NE, p); label("$G$", (3.5,0), down, p); draw((0,0)--(3.5,3.5)); label("$\sqrt{3}$",(0,0)--(3.5,3.5), SE,p); draw((8,0)--(3.5,3.5)); label("$2$",(8,0)--(3.5,3.5), SW,p); draw((4,5.65)--(3.5,3.5)); label("$1$",(4,5.65)--(3.5,3.5), E,p); draw((3.5,3.5)--(2.8191,3.982)); draw((3.5,3.5)--(4.848,4.452)); draw((3.5,3.5)--(3.5,0)); [/asy]

We begin by dropping altitudes from point $P$ down to all three sides of the triangle as shown above. We can therefore make equations regarding the areas of triangles $\triangle{APC}$, $\triangle{APB}$, and $\triangle{BPC}$. Let $s$ be the side of the equilateral triangle, we use the Heron's formula:

\[\triangle{APC} = \frac{s\cdot PF}{2} = \sqrt{\frac{s+3}{2}\left(\frac{s+3}{2}-s\right)\left(\frac{s+3}{2}-1\right)\left(\frac{s+3}{2}-2\right)}\] \[\implies PF = \frac{\sqrt{10s^2-s^4-9}}{2s}\]

Similarly, we obtain:

\[PE = \frac{\sqrt{8s^2-s^4-4}}{2s}\] \[PG = \frac{\sqrt{14s^2-s^4-1}}{2s}\]

By Viviani's theorem, \[\frac{\sqrt{10s^2-s^4-9}}{2s}+\frac{\sqrt{8s^2-s^4-4}}{2s}+\frac{\sqrt{14s^2-s^4-1}}{2s} = \frac{\sqrt{3}}{2}s\] \[\sqrt{10s^2-s^4-9}+\sqrt{8s^2-s^4-4}+\sqrt{14s^2-s^4-1} = \sqrt{3}s^2\]

Note that from now on, the algebra will get extremely ugly and almost impossible to do by hand within the time frame. However, we do see that it's extremely easy to check the answer choices with the equation in this form. Testing $s = \sqrt{7}$, We obtain $7\sqrt{3}$ on both sides, revealing that our answer is in fact $\boxed{\textbf{(B) } \sqrt{7}}$

~ siluweston ~ edits by aopspandy

Solution 4 (Area)

Instead of directly finding the side length of the equilateral triangle, we instead find the area and use it to find the side length. Begin by reflecting $P$ over each of the sides. Label these reflected points $P', P'', P'''$. Connect these points to the vertices of the equilateral triangle, as well as to each other.

[asy] size(300); draw((0,3.5)--(4,9.15)--(8,3.5)--cycle); label("$A$", (4,9.15), N, p = fontsize(10pt)); label("$C$", (8,3.5), SE, p = fontsize(10pt)); label("$B$", (0,3.5), SW, p = fontsize(10pt)); label("$P$", (3.5,7), NW, p = fontsize(10pt)); draw((0,3.5)--(3.5,7)); draw((8,3.5)--(3.5,7)); draw((4,9.15)--(3.5,7)); label("$P'$", (3.5, 0), S, p = fontsize(10pt)); draw((8,3.5)--(3.5,0)); draw((0,3.5)--(3.5,0)); label("$P''$",(6,8.5), NE, p = fontsize(10pt)); draw((4,9.15)--(6,8.5)); draw((8,3.5)--(6,8.5)); label("$P'''$",(2.25,8), NW, p = fontsize(10pt)); draw((0,3.5)--(2.25,8)); draw((4,9.15)--(2.25,8)); draw((3.5,0)--(6,8.5)--(2.25,8)--cycle); [/asy]

Observe that the area of the equilateral triangle $ABC$ is half that of the hexagon $AP''CP'BP'''$.

Note that $AP=AP''=AP'''$. The same goes for the other vertices. This means that $AP''P'''$ is isosceles. Using either the Law of Cosines or simply observing that $AP''P'''$ is comprised of two 30-60-90 triangles, we find that $P''P'''= \sqrt{3}$. Similarly (pun intended), $P'P'''=3$ and $P'P''=2\sqrt{3}$. Using the previous observation that $AP''P'''$ is two 30-60-90 triangles (as are the others) we find the areas of $AP''P''$ to be $\frac{\sqrt{3}}{4}$. Again, using similarity we find the area of $BP'P'''$ to be $\frac{3\sqrt{3}}{4}$ and the area of $CP'P''$ to be $\sqrt{3}$.

Next, observe that $P'P''P'''$ is a 30-60-90 right triangle. This right triangle therefore has an area of $\frac{3\sqrt{3}}{2}$.

Adding these areas together, we get the area of the hexagon as $\frac{7\sqrt{3}}{2}$. This means that the area of $ABC$ is $\frac{7\sqrt{3}}{4}$.

The formula for the area of an equilateral triangle with side length $s$ is $\frac{s^2\sqrt{3}}{4}$ (if you don't have this memorized it's not hard to derive). Comparing this formula to the area of $ABC$, we can easily find that $s^2=7$, which means that the side length of $ABC$ is $\boxed{\textbf{(B) } \sqrt{7}}$.

While this approach feels rather convoluted in comparison to Solution 1 (which only works for isosceles triangles), it is more flexible and can actually be generalized for any point in a general triangle (although that requires use of Heron's, and potentially Law of Sines and Cosines).

~IAmTheHazard

Solution 5 (Coordinate Bashing)

Suppose $A(0,\sqrt{3}a)$, $B(-a,0)$, $C(a,0)$ and $P(x,y)$. So $s=2a$. Since $BP = \sqrt{3}$ and $CP = 2$, we have \[(x+a)^2+y^2=3\] \[(x-a)^2+y^2=4\] Solving the equations, we have \[x=-\frac{1}{4a},~~y=\sqrt{\frac72-a^2-\frac{1}{16a^2}}\] From $AP=1$ (and a fair amount of algebra), we can have $a=\sqrt{7}/2$. The answer is $\boxed{\textbf{(B) } \sqrt{7}}$.

~Linty Huang

Solution 6 (Diagram Nuke)

Drawing out a rough sketch, it appears that $\angle BPC = 90^{\circ}$. By Pythagorean, our answer is $\sqrt{\sqrt{3}^2 + 2^2} = \boxed{\textbf{(B) } \sqrt{7}}$.

Proof of this fact can be found in the Video Solution by Richard Rusczyk below.

Solution 7 (Theorem Nuke)

We can use the following theorem:

$\text{For a point } P \text{ inside of an equilateral triangle } \triangle ABC \text{ and side length } s$, \[3(PA^4+PB^4+PC^4 + s^4)=(PA^2+PB^2+PC^2+s^2)^2\]

We know that $PA=1, PB=\sqrt{3}$, and $CP=2$. Plugging these into our formula, we get $3(1+9+16+s^4)=(1+3+4+s^2)^2 \Rightarrow 78 + 3s^4=64+16s^2+s^4 \Rightarrow 2s^4-16s^2+14=0$. Let $s^2=u$. Then, we have $2u^2-16u+14=0$. Solving for $u$, we get $\frac{16 \pm \sqrt{144}}{4} = 4 \pm 3$. If $u$ is equal to $1$, then we have $s=1$, but this is not possible since $P$ is inside of the triangle. This means that $u=7$, and therefore $s=\boxed{\textbf{(B) } \sqrt{7}}$.

~kn07

Solution 8 (More Coordinate Bashing)

Set the points $A(0,0), B\left(\frac{s}{2},\frac{s\sqrt{3}}{2}\right), C(s,0)$. Then, we want to find the intersection of the three circles \[x^2+y^2=1, (x-s)^2+y^2=4, \left(x-\frac{s}{2}\right)^2+\left(y-\frac{s\sqrt{3}}{2}\right)^2=3.\] Subtracting circle 1 from circle 2 yields $s^2-2xs=3$, which can be rewritten as $x=\frac{s^2-3}{2s}$. Subtracting circle 1 from circle 3 yields $s^2-sx-ys\sqrt{3}=2$, or $2s^2-2sx-2ys\sqrt{3}=4$. Subtracting $s^2-2xs=3$ from this yields $s^2-2ys\sqrt{3}=1$, or $y=\frac{s^2-1}{2s\sqrt{3}}$.

We then substitute our values for $x$ and $y$ back into $x^2+y^2=1$, which gives us \[\left(\frac{s^2-3}{2s}\right)^2+\left(\frac{s^2-1}{2s\sqrt{3}}\right)^2=1.\] Solving this equation (the algebra is surprisingly not bad!) gives us $s=\pm1,\pm\sqrt{7}$. Since $s$ must be greater than 1, the answer is $\boxed{\textbf{(B) } \sqrt{7}}$.

- curiousmind888 & TGSN

Solution 9 (Trig Bash)

Let $\angle APC = \alpha$, $\angle CPB = \beta$, by the Law of Cosine \[1^2+2^2 - 2 \cdot 1 \cdot 2 \cdot \cos \alpha = 2^2 + (\sqrt{3})^2 - 2 \cdot 2 \cdot \sqrt{3} \cdot \cos \beta\] \[2^2 + (\sqrt{3})^2 - 2 \cdot 2 \cdot \sqrt{3} = (\sqrt{3})^2 + 1^2 - 2 \cdot \sqrt{3} \cdot 1 \cdot \cos (360^{\circ} - \alpha - \beta)\] Simplifying the two equations we get \[\sqrt{3} \cos \beta - \cos \alpha = \frac12\] \[3 - 4 \sqrt{3} \cos \beta = - 2 \sqrt{3} ( \cos \alpha \cos \beta - \sin \alpha \sin \beta )\]

Let $\cos \alpha = x$, $\cos \beta = y$, by simplifying we get: \[y\sqrt{3} - x = \frac12\] \[3-4y\sqrt{3} = -2\sqrt{3} \left( xy - \sqrt{ (1-x^2)(1-y^2) } \right)\] Solving the first equation for $y$ we get $y = \frac{ 2x \sqrt{3} + \sqrt{3} }{6}$

Substituting this into the second equation gives \[3-4\sqrt{3} \cdot \frac{ 2x \sqrt{3} + \sqrt{3} }{6} = -2\sqrt{3} \left( x \cdot \frac{ 2x \sqrt{3} + \sqrt{3} }{6} - \sqrt{ (1-x^2)(1- (\frac{ 2x \sqrt{3} + \sqrt{3} }{6})^2 ) } \right)\] \[3-2(2x+1) = - 2\sqrt{3} \cdot x \cdot \frac{ 2x \sqrt{3} + \sqrt{3} }{6} + 2\sqrt{3} \cdot \sqrt{ (1-x^2)(1- (\frac{ 2x \sqrt{3} + \sqrt{3} }{6})^2 ) }\] \[3 - 2x - 2 = -2x^2 - x + 2\sqrt{3} \cdot \sqrt{ (1-x^2)(1- (\sqrt{3})^2(\frac{ 2x + 1 }{6})^2 ) }\] \[3 - 2x - 2 + 2x^2 + x = \sqrt{ 12 (1-x^2)(1- \frac{ 4x^2 + 4x + 1 }{12} ) }\] \[1 - 3x + 2x^2 = \sqrt{ (1-x^2)(11 - 4x^2 - 4x) }\] \[(1 - 3x + 2x^2)^2 = (1-x^2)(11 - 4x^2 - 4x)\] \[1 - 3x + 2x^2 - 3x + 9x^2 - 6x^3 + 2x^2 - 6x^3 + 4x^4 = 11 - 4x - 4x^2 - 11x^2 + 4x^3 + 4x^4\] \[1 - 6x + 13x^2 - 12x^3 = 11 - 4x - 15x^2 + 4x^3\] \[8x^3 - 14x^2 + x + 5 = 0\] \[(x-1)(4x-5)(2x+1) = 0\] \[\cos \alpha<1, \quad \cos \alpha = x = -\frac12, \quad s = \sqrt{ 5 - 4 \cos \alpha } = \boxed{\textbf{(B) } \sqrt{7}}\]

~isabelchen

Video Solutions

https://www.youtube.com/watch?v=mUW4zcrRL54

Video Solution by Richard Rusczyk - https://www.youtube.com/watch?v=xnAXGUthO54&list=PLyhPcpM8aMvJvwA2kypmfdtlxH90ShZCc&index=4 - AMBRIGGS

See Also

2020 AMC 12A (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 12 Problems and Solutions

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