Difference between revisions of "2021 Fall AMC 10A Problems/Problem 15"
MRENTHUSIASM (talk | contribs) m (→Solution 3 (Trigonometry): Shortened sol a bit.) |
MRENTHUSIASM (talk | contribs) (Removed unnecessary edits, as the original solution is clear enough that AO1 = 2r) |
||
(22 intermediate revisions by 9 users not shown) | |||
Line 6: | Line 6: | ||
==Solution 1 (Cyclic Quadrilateral)== | ==Solution 1 (Cyclic Quadrilateral)== | ||
− | Let <math>\odot O_1</math> be the circle with radius <math>5\sqrt2</math> that is tangent to <math>\overleftrightarrow{AB}</math> at <math>B</math> and to <math>\overleftrightarrow{AC}</math> at <math>C.</math> Since the opposite angles of quadrilateral <math>ABO_1C</math> are supplementary, quadrilateral <math>ABO_1C</math> is cyclic. | + | Let <math>\odot O_1</math> be the circle with radius <math>5\sqrt2</math> that is tangent to <math>\overleftrightarrow{AB}</math> at <math>B</math> and to <math>\overleftrightarrow{AC}</math> at <math>C.</math> Note that <math>\angle ABO_1 = \angle ACO_1 = 90^\circ.</math> Since the opposite angles of quadrilateral <math>ABO_1C</math> are supplementary, quadrilateral <math>ABO_1C</math> is cyclic. |
Let <math>\odot O_2</math> be the circumcircle of quadrilateral <math>ABO_1C.</math> It follows that <math>\odot O_2</math> is also the circumcircle of <math>\triangle ABC,</math> as shown below: | Let <math>\odot O_2</math> be the circumcircle of quadrilateral <math>ABO_1C.</math> It follows that <math>\odot O_2</math> is also the circumcircle of <math>\triangle ABC,</math> as shown below: | ||
Line 18: | Line 18: | ||
C = intersectionpoints(Circle(A,3sqrt(6)),Circle(O1,5sqrt(2)))[1]; | C = intersectionpoints(Circle(A,3sqrt(6)),Circle(O1,5sqrt(2)))[1]; | ||
O2 = midpoint(A--O1); | O2 = midpoint(A--O1); | ||
+ | fill(A--B--C--cycle, yellow); | ||
dot("$A$",A,1.5*N,linewidth(4)); | dot("$A$",A,1.5*N,linewidth(4)); | ||
dot("$B$",B,1.5*W,linewidth(4)); | dot("$B$",B,1.5*W,linewidth(4)); | ||
Line 23: | Line 24: | ||
dot("$O_1$",O1,1.5*S,linewidth(4)); | dot("$O_1$",O1,1.5*S,linewidth(4)); | ||
dot("$O_2$",O2,1.5*N,linewidth(4)); | dot("$O_2$",O2,1.5*N,linewidth(4)); | ||
− | label("$3\sqrt6$",midpoint(A--B),0.5* | + | label("$3\sqrt6$",midpoint(A--B),scale(0.5)*rotate(90)*dir(midpoint(A--B)--A),red+fontsize(10)); |
− | label("$3\sqrt6$",midpoint(A--C),0.5* | + | label("$3\sqrt6$",midpoint(A--C),scale(0.5)*rotate(90)*dir(midpoint(A--C)--C),red+fontsize(10)); |
label("$5\sqrt2$",midpoint(O1--B),0.5*SW,red+fontsize(10)); | label("$5\sqrt2$",midpoint(O1--B),0.5*SW,red+fontsize(10)); | ||
label("$5\sqrt2$",midpoint(O1--C),0.5*SE,red+fontsize(10)); | label("$5\sqrt2$",midpoint(O1--C),0.5*SE,red+fontsize(10)); | ||
Line 80: | Line 81: | ||
add(pathticks(G--C,1,0.5,0,2)); | add(pathticks(G--C,1,0.5,0,2)); | ||
</asy> | </asy> | ||
− | Because circle <math>I</math> is tangent to <math>\overline{AB}</math> at <math>B, \angle{ABI} \cong 90^{\circ}</math>. Because O is the circumcenter of <math>\bigtriangleup ABC, \overline{OD}</math> is the perpendicular bisector of <math>\overline{AB}</math>, and <math>\angle{BAI} \cong \angle{DAO}</math>, so therefore <math>\bigtriangleup ADO \sim \bigtriangleup ABI</math> by AA similarity. Then we have <math>\frac{AD}{AB} = \frac{DO}{BI} \implies \frac{1}{2} = \frac{r}{5\sqrt{2}} \implies r = \frac{5\sqrt{2}}{2}</math>. We also know that <math>\overline{AD} = \frac{3\sqrt{6}}{2}</math> because of the perpendicular bisector, so the hypotenuse of <math>\bigtriangleup ADO</math> is <cmath>\sqrt{\left(\frac{5\sqrt{2}}{2}\right)^2+\left(\frac{3\sqrt{6}}{2}\right)^2} = \sqrt{\frac{25}{2}+\frac{27}{2}} = \sqrt{26}.</cmath> | + | Because circle <math>I</math> is tangent to <math>\overline{AB}</math> at <math>B, \angle{ABI} \cong 90^{\circ}</math>. Because <math>O</math> is the circumcenter of <math>\bigtriangleup ABC, \overline{OD}</math> is the perpendicular bisector of <math>\overline{AB}</math>, and <math>\angle{BAI} \cong \angle{DAO}</math>, so therefore <math>\bigtriangleup ADO \sim \bigtriangleup ABI</math> by AA similarity. Then we have <math>\frac{AD}{AB} = \frac{DO}{BI} \implies \frac{1}{2} = \frac{r}{5\sqrt{2}} \implies r = \frac{5\sqrt{2}}{2}</math>. We also know that <math>\overline{AD} = \frac{3\sqrt{6}}{2}</math> because of the perpendicular bisector, so the hypotenuse of <math>\bigtriangleup ADO</math> is <cmath>\sqrt{\left(\frac{5\sqrt{2}}{2}\right)^2+\left(\frac{3\sqrt{6}}{2}\right)^2} = \sqrt{\frac{25}{2}+\frac{27}{2}} = \sqrt{26}.</cmath> |
This is the radius of the circumcircle of <math>\bigtriangleup ABC</math>, so the area of this circle is <math>\boxed{\textbf{(C) }26\pi}</math>. | This is the radius of the circumcircle of <math>\bigtriangleup ABC</math>, so the area of this circle is <math>\boxed{\textbf{(C) }26\pi}</math>. | ||
− | |||
~KingRavi | ~KingRavi | ||
Line 119: | Line 119: | ||
</cmath> | </cmath> | ||
~Steven Chen (www.professorchenedu.com) | ~Steven Chen (www.professorchenedu.com) | ||
+ | |||
+ | ==Video Solution (HOW TO THINK CREATIVELY!!!)== | ||
+ | https://youtu.be/T2VFw2lEthY | ||
+ | |||
+ | ~Education, the Study of Everything | ||
==Video Solution by The Power of Logic== | ==Video Solution by The Power of Logic== | ||
Line 124: | Line 129: | ||
~math2718281828459 | ~math2718281828459 | ||
+ | |||
+ | ==Video Solution == | ||
+ | https://youtu.be/zq3UPu4nwsE?t=1674 | ||
+ | |||
+ | == Video Solution == | ||
+ | https://youtu.be/DVuf-uXjfzY?t=211 | ||
==See Also== | ==See Also== | ||
{{AMC10 box|year=2021 Fall|ab=A|num-b=14|num-a=16}} | {{AMC10 box|year=2021 Fall|ab=A|num-b=14|num-a=16}} | ||
{{MAA Notice}} | {{MAA Notice}} |
Latest revision as of 12:43, 5 May 2024
Contents
Problem
Isosceles triangle has , and a circle with radius is tangent to line at and to line at . What is the area of the circle that passes through vertices , , and
Solution 1 (Cyclic Quadrilateral)
Let be the circle with radius that is tangent to at and to at Note that Since the opposite angles of quadrilateral are supplementary, quadrilateral is cyclic.
Let be the circumcircle of quadrilateral It follows that is also the circumcircle of as shown below: By the Inscribed Angle Theorem, we conclude that is the diameter of By the Pythagorean Theorem on right we have Therefore, the area of is
~MRENTHUSIASM ~kante314
Solution 2 (Similar Triangles)
Because circle is tangent to at . Because is the circumcenter of is the perpendicular bisector of , and , so therefore by AA similarity. Then we have . We also know that because of the perpendicular bisector, so the hypotenuse of is This is the radius of the circumcircle of , so the area of this circle is .
~KingRavi
Solution 3 (Trigonometry)
Denote by the center of the circle that is tangent to line at and to line at .
Because this circle is tangent to line at , we have and .
Because this circle is tangent to line at , we have and .
Because , , , we get . Hence, .
Let and meet at point . Because , , , we get . Hence, and .
Denote . Hence, .
Denote by the circumradius of . In , following from the law of sines, .
Therefore, the area of the circumcircle of is ~Steven Chen (www.professorchenedu.com)
Video Solution (HOW TO THINK CREATIVELY!!!)
~Education, the Study of Everything
Video Solution by The Power of Logic
~math2718281828459
Video Solution
https://youtu.be/zq3UPu4nwsE?t=1674
Video Solution
https://youtu.be/DVuf-uXjfzY?t=211
See Also
2021 Fall AMC 10A (Problems • Answer Key • Resources) | ||
Preceded by Problem 14 |
Followed by Problem 16 | |
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.