Difference between revisions of "2019 AMC 10A Problems/Problem 21"

(Solution 3)
Line 50: Line 50:
 
==Solution 2 (Borderline Guessing)==
 
==Solution 2 (Borderline Guessing)==
 
Test all the answer choices by plugging them into the expression <math>\sqrt{6^2 - x}</math> to find the inradius of the triangle. Seeing that only <math>\sqrt{20} = 2\sqrt{5}</math> gives an integer inradius, we pick <math>\boxed{\textbf {(D) } 2 \sqrt{5}}</math>.
 
Test all the answer choices by plugging them into the expression <math>\sqrt{6^2 - x}</math> to find the inradius of the triangle. Seeing that only <math>\sqrt{20} = 2\sqrt{5}</math> gives an integer inradius, we pick <math>\boxed{\textbf {(D) } 2 \sqrt{5}}</math>.
 +
 +
==Solution 3==
 +
According to the Pythagorean Theorem, the height of the triangle is 9.
 +
The three sides of the triangle are tangent to the sphere, so the circle in the cross-section of the sphere is the incenter of the triangle.
 +
 +
Recall that the inradius is the intersection of the angle bisectors. To find the inradius of the incircle, use the angle bisector theorem.
 +
<asy>
 +
draw((0,0)--(12,9)--(24,0)--cycle);
 +
dot((0,0));
 +
dot((12,9));
 +
dot((24,0));
 +
dot((12,0));
 +
label("$A$",(0,0),SW);
 +
label("$B$",(12,9),N);
 +
label("$C$",(24,0),SE);
 +
label("$D$",(12,-1/2),S);
 +
label("$I$",(12,4),SE);
 +
 +
draw((12,9)--(12,0), dashed);
 +
draw(circle((12,4),4));
 +
draw((0,0)--(216/13,216/39));
 +
dot((12,4));
 +
label("$15$", (6,9/2),NW);
 +
label("$12$", (6,-1),S);
 +
 +
</asy>
 +
<cmath>\frac{AB}{BI}=\frac{AD}{DI}</cmath>
 +
<cmath>\frac{15}{BI}=\frac{12}{DI}</cmath>
 +
<cmath>\frac{BI}{5}=\frac{DI}{4}</cmath>
 +
Since we know that <math>BI+DI</math> (the height) is equal to <math>9</math>, so <math>DI</math> (the inradius) is <math>4</math>.
 +
From here, the problem can be solved in the same way as Problem 1.
 +
 +
--Intelligence_Inc
  
 
==See Also==
 
==See Also==

Revision as of 23:07, 12 February 2019

The following problem is from both the 2019 AMC 10A #21 and 2019 AMC 12A #18, so both problems redirect to this page.

Problem

A sphere with center $O$ has radius $6$. A triangle with sides of length $15, 15,$ and $24$ is situated in space so that each of its sides is tangent to the sphere. What is the distance between $O$ and the plane determined by the triangle?

$\textbf{(A) }2\sqrt{3}\qquad \textbf{(B) }4\qquad \textbf{(C) }3\sqrt{2}\qquad \textbf{(D) }2\sqrt{5}\qquad \textbf{(E) }5\qquad$

Diagram

3D [asy] import graph3; import palette; size(200); currentprojection=orthographic(0,4,2);  triple f(pair z) {return expi(z.x,z.y);}  surface s=surface(f,(0,0),(pi,2pi),70,Spline); draw((0,-5/6,sqrt(5)/3)--(2,2/3,sqrt(5)/3)--(-2,2/3,sqrt(5)/3)--cycle); draw(s,mean(palette(s.map(zpart),Grayscale())),nolight); draw((2,2/3,sqrt(5)/3)--(-2,2/3,sqrt(5)/3)); [/asy] Plane through triangle. [asy] draw((0,0)--(12,9)--(24,0)--cycle); draw((12,9)--(12,0), dashed); draw((11.5,0)--(11.5,0.5)--(12,0.5)); draw(circle((12,4),4)); draw((12,4)--(48/5, 36/5)); dot((12,4)); label("$15$", (6,9/2),NW); label("$15$", (18,9/2),NE); label("$24$", (12,-1),S); label("$r$",(54/5, 28/5), SW); [/asy] -programjames1

Solution 1

The triangle is placed on the sphere so that three sides are tangent to the sphere. The cross-section of the sphere created by the plane of the triangle is also the incircle of the triangle. To find the inradius, use $\text{area} = \text{inradius} \cdot \text{semiperimeter}$. The area of the triangle can be found by drawing an altitude from the vertex between sides with length $15$ to the midpoint of the side with length $24$. The Pythagorean triple $9$ - $12$ - $15$ shows that the base is $24$ and the height is $9$. $\frac {\text{base} \cdot \text{height}} {2}$ can be used to find the area of the triangle as $108$. The semiperimeter is $\frac {15 + 15 + 24} {2} = 27$. After plugging into the equation $108 = \text{inradius} \cdot 27$, we get $\text{inradius} = 4$. Let the distance between $O$ and the triangle be $x$. Choose a point on the incircle and denote it $A$. $\overline{OA}$ is $6$ because it is the radius of the sphere. The distance from point $A$ to the center of the incircle is $4$ because it is the inradius of the incircle. By using the Pythagorean Theorem, you will get that $x$ is $\sqrt{6^2-4^2}=\sqrt{20}\implies\boxed{\textbf {(D) } 2 \sqrt {5}}$.

- ViolinGod(Argonauts16 latex)

Solution 2 (Borderline Guessing)

Test all the answer choices by plugging them into the expression $\sqrt{6^2 - x}$ to find the inradius of the triangle. Seeing that only $\sqrt{20} = 2\sqrt{5}$ gives an integer inradius, we pick $\boxed{\textbf {(D) } 2 \sqrt{5}}$.

Solution 3

According to the Pythagorean Theorem, the height of the triangle is 9. The three sides of the triangle are tangent to the sphere, so the circle in the cross-section of the sphere is the incenter of the triangle.

Recall that the inradius is the intersection of the angle bisectors. To find the inradius of the incircle, use the angle bisector theorem. [asy] draw((0,0)--(12,9)--(24,0)--cycle); dot((0,0)); dot((12,9)); dot((24,0)); dot((12,0)); label("$A$",(0,0),SW); label("$B$",(12,9),N); label("$C$",(24,0),SE); label("$D$",(12,-1/2),S); label("$I$",(12,4),SE);  draw((12,9)--(12,0), dashed); draw(circle((12,4),4)); draw((0,0)--(216/13,216/39)); dot((12,4)); label("$15$", (6,9/2),NW); label("$12$", (6,-1),S);  [/asy] \[\frac{AB}{BI}=\frac{AD}{DI}\] \[\frac{15}{BI}=\frac{12}{DI}\] \[\frac{BI}{5}=\frac{DI}{4}\] Since we know that $BI+DI$ (the height) is equal to $9$, so $DI$ (the inradius) is $4$. From here, the problem can be solved in the same way as Problem 1.

--Intelligence_Inc

See Also

2019 AMC 10A (ProblemsAnswer KeyResources)
Preceded by
Problem 20
Followed by
Problem 22
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
2019 AMC 12A (ProblemsAnswer KeyResources)
Preceded by
Problem 17
Followed by
Problem 19
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