Difference between revisions of "2012 AMC 12A Problems/Problem 16"
Suvamkonar (talk | contribs) m (→Solution 5) |
Suvamkonar (talk | contribs) m (→Solution 5) |
||
| Line 50: | Line 50: | ||
draw(O--Z); | draw(O--Z); | ||
draw(x[1]--Z); | draw(x[1]--Z); | ||
| − | draw(y[1] | + | draw(O--y[1]); |
draw(circ1); | draw(circ1); | ||
draw(circ2); | draw(circ2); | ||
Revision as of 11:11, 21 December 2019
Contents
Problem
Circle
has its center
lying on circle
. The two circles meet at
and
. Point
in the exterior of
lies on circle
and
,
, and
. What is the radius of circle
?
Solution 1
Let
denote the radius of circle
. Note that quadrilateral
is cyclic. By Ptolemy's Theorem, we have
and
. Let t be the measure of angle
. Since
, the law of cosines on triangle
gives us
. Again since
is cyclic, the measure of angle
. We apply the law of cosines to triangle
so that
. Since
we obtain
. But
so that
.
.
Solution 2
Let us call the
the radius of circle
, and
the radius of
. Consider
and
. Both of these triangles have the same circumcircle (
). From the Extended Law of Sines, we see that
. Therefore,
. We will now apply the Law of Cosines to
and
and get the equations
,
,
respectively. Because
, this is a system of two equations and two variables. Solving for
gives
.
.
Solution 3
Let
denote the radius of circle
. Note that quadrilateral
is cyclic. By Ptolemy's Theorem, we have
and
. Consider isosceles triangle
. Pulling an altitude to
from
, we obtain
. Since quadrilateral
is cyclic, we have
, so
. Applying the Law of Cosines to triangle
, we obtain
. Solving gives
.
.
-Solution by thecmd999
Solution 4
Let
. Consider an inversion about
. So,
. Using
.
-Solution by IDMasterz
Solution 5
size(8cm,8cm);
path circ1, circ2;
circ1=circle((0,0),5);
circ2=circle((3,4),3);
pair O, Z;
O=(3,4);
Z=(3,-4);
pair [] x=intersectionpoints(circ1,circ2);
pair [] y=intersectionpoints(x[1]--Z,circ2);
pair B;
B=midpoint(x[1]--y[0]);
draw(B--O);
draw(x[0]--Z);
draw(O--Z);
draw(x[1]--Z);
draw(O--y[1]);
draw(circ1);
draw(circ2);
draw(rightanglemark(Z,B,O,15));
draw(x[1]--O--y[0]);
label("$O$",O,NE);
label("$Y$",x[0],NW);
label("$X$",x[1],NW);
label("$Z$",Z,S);
label("$A$",y[0],SW);
label("$B$",B,SW); (Error making remote request. Unknown error_msg)
Notice that
as they subtend arcs of the same length. Let
be the point of intersection of
and
. We now have
and
. Furthermore, notice that
is isosceles, thus the altitude from
to
bisects
at point
above. By the Pythagorean Theorem,
Thus,
Solution 6
Use the diagram above. Notice that
as they subtend arcs of the same length. Let
be the point of intersection of
and
. We now have
and
. Consider the power of point
with respect to Circle
we have
which gives
See Also
| 2012 AMC 12A (Problems • Answer Key • Resources) | |
| Preceded by Problem 15 |
Followed by Problem 17 |
| 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 | |
These problems are copyrighted © by the Mathematical Association of America, as part of the American Mathematics Competitions.