Difference between revisions of "2020 AMC 12B Problems/Problem 10"
Eunicorn0716 (talk | contribs) m (→Video Solution) |
|||
(26 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
==Problem== | ==Problem== | ||
− | |||
In unit square <math>ABCD,</math> the inscribed circle <math>\omega</math> intersects <math>\overline{CD}</math> at <math>M,</math> and <math>\overline{AM}</math> intersects <math>\omega</math> at a point <math>P</math> different from <math>M.</math> What is <math>AP?</math> | In unit square <math>ABCD,</math> the inscribed circle <math>\omega</math> intersects <math>\overline{CD}</math> at <math>M,</math> and <math>\overline{AM}</math> intersects <math>\omega</math> at a point <math>P</math> different from <math>M.</math> What is <math>AP?</math> | ||
<math>\textbf{(A) } \frac{\sqrt5}{12} \qquad \textbf{(B) } \frac{\sqrt5}{10} \qquad \textbf{(C) } \frac{\sqrt5}{9} \qquad \textbf{(D) } \frac{\sqrt5}{8} \qquad \textbf{(E) } \frac{2\sqrt5}{15}</math> | <math>\textbf{(A) } \frac{\sqrt5}{12} \qquad \textbf{(B) } \frac{\sqrt5}{10} \qquad \textbf{(C) } \frac{\sqrt5}{9} \qquad \textbf{(D) } \frac{\sqrt5}{8} \qquad \textbf{(E) } \frac{2\sqrt5}{15}</math> | ||
− | ==Solution 1 (Angle | + | ==Diagram== |
+ | <asy> | ||
+ | /* Made by MRENTHUSIASM */ | ||
+ | size(180); | ||
+ | pair A, B, C, D, M, O, P; | ||
+ | O = origin; | ||
+ | A = (-1/2,-1/2); | ||
+ | B = (-1/2,1/2); | ||
+ | C = (1/2,1/2); | ||
+ | D = (1/2,-1/2); | ||
+ | M = midpoint(C--D); | ||
+ | path p; | ||
+ | p = Circle(O,1/2); | ||
+ | P = intersectionpoints(A--M,p)[0]; | ||
+ | dot("$\omega$",O,1.5*N,linewidth(4)); | ||
+ | dot("$A$",A,1.5*SW,linewidth(4)); | ||
+ | dot("$B$",B,1.5*NW,linewidth(4)); | ||
+ | dot("$C$",C,1.5*NE,linewidth(4)); | ||
+ | dot("$D$",D,1.5*SE,linewidth(4)); | ||
+ | dot("$M$",M,1.5*E,linewidth(4)); | ||
+ | dot("$P$",P,1.5*N,linewidth(4)); | ||
+ | draw(A--B--C--D--cycle^^A--M^^p); | ||
+ | </asy> | ||
+ | ~MRENTHUSIASM | ||
+ | |||
+ | ==Solution 1 (Similar Triangles)== | ||
+ | Call the midpoint of <math>\overline{AB}</math> point <math>N.</math> Draw in <math>\overline{NM}</math> and <math>\overline{NP}.</math> Note that <math>\angle{NPM}=90^{\circ}</math> due to Thales's Theorem. | ||
+ | <asy> | ||
+ | /* Made by QIDb602; edited by MRENTHUSIASM */ | ||
+ | size(180); | ||
+ | pair A, B, C, D, M, N, O, P; | ||
+ | O = origin; | ||
+ | A = (-1/2,-1/2); | ||
+ | B = (-1/2,1/2); | ||
+ | C = (1/2,1/2); | ||
+ | D = (1/2,-1/2); | ||
+ | M = midpoint(C--D); | ||
+ | N = midpoint(A--B); | ||
+ | path p; | ||
+ | p = Circle(O,1/2); | ||
+ | P = intersectionpoints(A--M,p)[0]; | ||
+ | fill(N--A--M--cycle,yellow); | ||
+ | dot("$\omega$",O,1.5*(0,1),linewidth(4)); | ||
+ | dot("$A$",A,1.5*SW,linewidth(4)); | ||
+ | dot("$B$",B,1.5*NW,linewidth(4)); | ||
+ | dot("$C$",C,1.5*NE,linewidth(4)); | ||
+ | dot("$D$",D,1.5*SE,linewidth(4)); | ||
+ | dot("$M$",M,1.5*E,linewidth(4)); | ||
+ | dot("$N$",N,1.5*W,linewidth(4)); | ||
+ | dot("$P$",P,1.5*dir(60),linewidth(4)); | ||
+ | markscalefactor=0.00625; | ||
+ | draw(rightanglemark(A,N,M),red); | ||
+ | draw(rightanglemark(N,P,A),red); | ||
+ | draw(A--B--C--D--cycle^^A--M^^P--N--M^^p); | ||
+ | </asy> | ||
+ | Using the Pythagorean theorem, <math>AM=\frac{\sqrt{5}}{2}.</math> Now we just need to find <math>AP</math> using similar triangles <math>\triangle APN\sim\triangle ANM:</math> | ||
+ | <cmath>\begin{align*} | ||
+ | \frac{AP}{AN}&=\frac{AN}{AM} \\ | ||
+ | \frac{AP}{1/2}&=\frac{1/2}{\sqrt5/2} \\ | ||
+ | AP&=\boxed{\textbf{(B) } \frac{\sqrt5}{10}}. | ||
+ | \end{align*}</cmath> | ||
+ | ~QIDb602 | ||
+ | |||
+ | ==Solution 2 (Inscribed Angle Theorem and Pythagorean Theorem)== | ||
+ | Let <math>N</math> be the midpoint of <math>\overline{AB},</math> from which <math>\angle ANM=90^\circ.</math> Note that <math>\angle NPM=90^\circ</math> by the Inscribed Angle Theorem. | ||
+ | |||
+ | We have the following diagram: | ||
+ | <asy> | ||
+ | /* Made by MRENTHUSIASM */ | ||
+ | size(180); | ||
+ | pair A, B, C, D, M, N, O, P; | ||
+ | O = origin; | ||
+ | A = (-1/2,-1/2); | ||
+ | B = (-1/2,1/2); | ||
+ | C = (1/2,1/2); | ||
+ | D = (1/2,-1/2); | ||
+ | M = midpoint(C--D); | ||
+ | N = midpoint(A--B); | ||
+ | path p; | ||
+ | p = Circle(O,1/2); | ||
+ | P = intersectionpoints(A--M,p)[0]; | ||
+ | fill(N--P--A--cycle,yellow); | ||
+ | fill(N--P--M--cycle,green); | ||
+ | dot("$\omega$",O,1.5*(0,1),linewidth(4)); | ||
+ | dot("$A$",A,1.5*SW,linewidth(4)); | ||
+ | dot("$B$",B,1.5*NW,linewidth(4)); | ||
+ | dot("$C$",C,1.5*NE,linewidth(4)); | ||
+ | dot("$D$",D,1.5*SE,linewidth(4)); | ||
+ | dot("$M$",M,1.5*E,linewidth(4)); | ||
+ | dot("$N$",N,1.5*W,linewidth(4)); | ||
+ | dot("$P$",P,1.5*dir(60),linewidth(4)); | ||
+ | markscalefactor=0.00625; | ||
+ | draw(rightanglemark(A,N,M),red); | ||
+ | draw(rightanglemark(N,P,A),red); | ||
+ | draw(A--B--C--D--cycle^^A--M^^P--N--M^^p); | ||
+ | </asy> | ||
+ | Since <math>AN=\frac12</math> and <math>NM=1,</math> we get <math>AM=\frac{\sqrt5}{2}</math> by the Pythagorean Theorem. | ||
+ | |||
+ | Let <math>AP=x.</math> It follows that <math>PM=\frac{\sqrt5}{2}-x.</math> Applying the Pythagorean Theorem to right <math>\triangle ANP</math> gives <math>NP^2=\left(\frac12\right)^2-x^2,</math> and applying the Pythagorean Theorem to right <math>\triangle MNP</math> gives <math>NP^2=1^2-\left(\frac{\sqrt5}{2}-x\right)^2.</math> Equating the expressions for <math>NP^2</math> produces | ||
+ | <cmath>\begin{align*} | ||
+ | \left(\frac12\right)^2-x^2&=1^2-\left(\frac{\sqrt5}{2}-x\right)^2 \\ | ||
+ | \frac14-x^2&=1-\frac54+\sqrt5x-x^2 \\ | ||
+ | \frac12&=\sqrt5x. | ||
+ | \end{align*}</cmath> | ||
+ | Finally, dividing both sides by <math>\sqrt5</math> and then rationalizing the denominator, we obtain <math>x=\frac{1}{2\sqrt5}=\boxed{\textbf{(B) } \frac{\sqrt5}{10}}.</math> | ||
+ | |||
+ | ~MRENTHUSIASM | ||
+ | |||
+ | ==Solution 3 (Power of a Point)== | ||
+ | Let circle <math>\omega</math> intersect <math>\overline{AB}</math> at point <math>N</math>. By Power of a Point, we have <math>AN^2=AP\cdot AM</math>. We know <math>AN=\frac{1}{2}</math> because <math>N</math> is the midpoint of <math>\overline{AB}</math>, and we can easily find <math>AM</math> by the Pythagorean Theorem, which gives us <math>AM=\sqrt{1^2+\left(\frac{1}{2}\right)^2}=\frac{\sqrt{5}}{2}</math>. Our equation is now <math>\frac{1}{4}=AP\cdot \frac{\sqrt{5}}{2}</math>, or <math>AP=\frac{2}{4\sqrt{5}}=\frac{1}{2\sqrt{5}}=\frac{\sqrt{5}}{2\cdot 5}</math>, thus our answer is | ||
+ | <math>\boxed{\textbf{(B) } \frac{\sqrt5}{10}}.</math> | ||
+ | |||
+ | ~Argonauts16 | ||
+ | |||
+ | ==Solution 4 (Trigonometry)== | ||
Let <math>O</math> be the center of the circle and the point of tangency between <math>\omega</math> and <math>\overline{AD}</math> be represented by <math>K</math>. We know that <math>\overline{AK} = \overline{KD} = \overline{DM} = \frac{1}{2}</math>. Consider the right triangle <math>\bigtriangleup ADM</math>. Let <math>\measuredangle AMD = \theta</math>. | Let <math>O</math> be the center of the circle and the point of tangency between <math>\omega</math> and <math>\overline{AD}</math> be represented by <math>K</math>. We know that <math>\overline{AK} = \overline{KD} = \overline{DM} = \frac{1}{2}</math>. Consider the right triangle <math>\bigtriangleup ADM</math>. Let <math>\measuredangle AMD = \theta</math>. | ||
Line 12: | Line 125: | ||
We can now use Law of Cosines on <math>\angle{POM}</math> to find the length of <math>{PM}</math> and subtract it from the length of <math>{AM}</math> to find <math>{AP}</math>. Since <math>\cos{\theta} = \frac{1}{\sqrt{5}}</math> and <math>\sin{\theta} = \frac{2}{\sqrt{5}}</math>, the double angle formula tells us that <math>\cos{2\theta} = -\frac{3}{5}</math>. We have | We can now use Law of Cosines on <math>\angle{POM}</math> to find the length of <math>{PM}</math> and subtract it from the length of <math>{AM}</math> to find <math>{AP}</math>. Since <math>\cos{\theta} = \frac{1}{\sqrt{5}}</math> and <math>\sin{\theta} = \frac{2}{\sqrt{5}}</math>, the double angle formula tells us that <math>\cos{2\theta} = -\frac{3}{5}</math>. We have | ||
<cmath> | <cmath> | ||
− | PM^2 = \frac{1}{2} - \frac{1}{2}\cos{2\theta} \implies PM = \frac{2\sqrt{5}}{5} | + | PM^2 = \frac{1}{2} - \frac{1}{2}\cos{2\theta} \implies PM = \frac{2\sqrt{5}}{5}. |
</cmath> | </cmath> | ||
− | By Pythagorean theorem, we find that <math>AM = \frac{\sqrt{5}}{2} \implies \boxed{\textbf{(B) } \frac{\sqrt5}{10}}</math> | + | By Pythagorean theorem, we find that <math>AM = \frac{\sqrt{5}}{2} \implies AP=\boxed{\textbf{(B) } \frac{\sqrt5}{10}}</math>. |
~awesome1st | ~awesome1st | ||
− | ==Solution 2(Coordinate | + | |
+ | ==Solution 5 (Trigonometry)== | ||
+ | Take <math>O</math> as the center and draw segment <math>ON</math> perpendicular to <math>AM</math>, <math>ON\cap AM=N</math>, link <math>OM</math>. Then we have <math>OM\parallel AD</math>. So <math>\angle DAM=\angle OMA</math>. Since <math>AD=2AM=2OM=1</math>, we have <math>\cos\angle DAM=\cos\angle OMP=\frac{2}{\sqrt{5}}</math>. As a result, <math>NM=OM\cos\angle OMP=\frac{1}{2}\cdot \frac{2}{\sqrt{5}}=\frac{1}{\sqrt{5}}.</math> Thus <math>PM=2NM=\frac{2}{\sqrt{5}}=\frac{2\sqrt{5}}{5}</math>. Since <math>AM=\frac{\sqrt{5}}{2}</math>, we have <math>AP=AM-PM=\boxed{\textbf{(B) } \frac{\sqrt5}{10}}</math>. | ||
+ | |||
+ | ~FANYUCHEN20020715 | ||
+ | |||
+ | ==Solution 6 (Coordinate Geometry)== | ||
Place circle <math>\omega</math> in the Cartesian plane such that the center lies on the origin. Then we can easily find the equation for <math>\omega</math> as <math>x^2+y^2=\frac{1}{4}</math>, because it is not translated and the radius is <math>\frac{1}{2}</math>. | Place circle <math>\omega</math> in the Cartesian plane such that the center lies on the origin. Then we can easily find the equation for <math>\omega</math> as <math>x^2+y^2=\frac{1}{4}</math>, because it is not translated and the radius is <math>\frac{1}{2}</math>. | ||
Line 25: | Line 144: | ||
We substitute this into the equation for the circle to get <math>x^2+\left(-2x-\frac{1}{2}\right)^2=\frac{1}{4}</math>, or <math>x^2+4x^2+2x+\frac{1}{4}=\frac{1}{4}</math>. Simplifying gives <math>x(5x+2)=0</math>. The roots of this quadratic are <math>x=0</math> and <math>x=-\frac{2}{5}</math>, but if <math>x=0</math> we get point <math>M</math>, so we only want <math>x=-\frac{2}{5}</math>. | We substitute this into the equation for the circle to get <math>x^2+\left(-2x-\frac{1}{2}\right)^2=\frac{1}{4}</math>, or <math>x^2+4x^2+2x+\frac{1}{4}=\frac{1}{4}</math>. Simplifying gives <math>x(5x+2)=0</math>. The roots of this quadratic are <math>x=0</math> and <math>x=-\frac{2}{5}</math>, but if <math>x=0</math> we get point <math>M</math>, so we only want <math>x=-\frac{2}{5}</math>. | ||
− | We plug this back into the linear equation to find <math>y=\frac{3}{10}</math>, and so <math>P=\left(-\frac{2}{5}, \frac{3}{10}\right)</math>. Finally, we use distance formula on <math>A</math> and <math>P</math> to get <math>AP=\sqrt{\left(-\frac{5}{10}+\frac{4}{10}\right)^2+\left(\frac{5}{10}-\frac{3}{10}\right)^2}=\sqrt{\frac{1}{100}+\frac{4}{100}}=\boxed{\ | + | We plug this back into the linear equation to find <math>y=\frac{3}{10}</math>, and so <math>P=\left(-\frac{2}{5}, \frac{3}{10}\right)</math>. Finally, we use distance formula on <math>A</math> and <math>P</math> to get <math>AP=\sqrt{\left(-\frac{5}{10}+\frac{4}{10}\right)^2+\left(\frac{5}{10}-\frac{3}{10}\right)^2}=\sqrt{\frac{1}{100}+\frac{4}{100}}=\boxed{\textbf{(B) } \frac{\sqrt5}{10}}</math>. |
~Argonauts16 | ~Argonauts16 | ||
− | ==Solution | + | ==Video Solution (HOW TO THINK CREATIVELY!!!)== |
+ | https://youtu.be/gd6VvCKMdu4 | ||
+ | |||
+ | ~Education, the Study of Everything | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | ==Video Solution== | + | ==Video Solution by TheBeautyOfMath== |
https://youtu.be/6ujfjGLzVoE | https://youtu.be/6ujfjGLzVoE | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==See Also== | ==See Also== |
Latest revision as of 15:14, 11 September 2023
Contents
- 1 Problem
- 2 Diagram
- 3 Solution 1 (Similar Triangles)
- 4 Solution 2 (Inscribed Angle Theorem and Pythagorean Theorem)
- 5 Solution 3 (Power of a Point)
- 6 Solution 4 (Trigonometry)
- 7 Solution 5 (Trigonometry)
- 8 Solution 6 (Coordinate Geometry)
- 9 Video Solution (HOW TO THINK CREATIVELY!!!)
- 10 Video Solution by TheBeautyOfMath
- 11 See Also
Problem
In unit square the inscribed circle intersects at and intersects at a point different from What is
Diagram
~MRENTHUSIASM
Solution 1 (Similar Triangles)
Call the midpoint of point Draw in and Note that due to Thales's Theorem. Using the Pythagorean theorem, Now we just need to find using similar triangles ~QIDb602
Solution 2 (Inscribed Angle Theorem and Pythagorean Theorem)
Let be the midpoint of from which Note that by the Inscribed Angle Theorem.
We have the following diagram: Since and we get by the Pythagorean Theorem.
Let It follows that Applying the Pythagorean Theorem to right gives and applying the Pythagorean Theorem to right gives Equating the expressions for produces Finally, dividing both sides by and then rationalizing the denominator, we obtain
~MRENTHUSIASM
Solution 3 (Power of a Point)
Let circle intersect at point . By Power of a Point, we have . We know because is the midpoint of , and we can easily find by the Pythagorean Theorem, which gives us . Our equation is now , or , thus our answer is
~Argonauts16
Solution 4 (Trigonometry)
Let be the center of the circle and the point of tangency between and be represented by . We know that . Consider the right triangle . Let .
Since is tangent to at , . Now, consider . This triangle is iscoceles because and are both radii of . Therefore, .
We can now use Law of Cosines on to find the length of and subtract it from the length of to find . Since and , the double angle formula tells us that . We have By Pythagorean theorem, we find that .
~awesome1st
Solution 5 (Trigonometry)
Take as the center and draw segment perpendicular to , , link . Then we have . So . Since , we have . As a result, Thus . Since , we have .
~FANYUCHEN20020715
Solution 6 (Coordinate Geometry)
Place circle in the Cartesian plane such that the center lies on the origin. Then we can easily find the equation for as , because it is not translated and the radius is .
We have and . The slope of the line passing through these two points is , and the -intercept is simply . This gives us the line passing through both points as .
We substitute this into the equation for the circle to get , or . Simplifying gives . The roots of this quadratic are and , but if we get point , so we only want .
We plug this back into the linear equation to find , and so . Finally, we use distance formula on and to get .
~Argonauts16
Video Solution (HOW TO THINK CREATIVELY!!!)
~Education, the Study of Everything
Video Solution by TheBeautyOfMath
See Also
2020 AMC 12B (Problems • Answer Key • Resources) | |
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 12 Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.