Difference between revisions of "User:Jonjoseph"

(Created page with "<asy> pair O = (0,0); pair P = (2,0); draw(unitcircle); dot(O); dot(P); label('$P$', P, E); label('$C$', O, W); </asy> Given a circle with center <math>C</math> and a point <mat...")
 
Line 25: Line 25:
 
dot(B);
 
dot(B);
 
label('$P$', P, E);
 
label('$P$', P, E);
label('$C$', O, W);
+
label('$C$', O, W);  
 
</asy>
 
</asy>

Revision as of 00:57, 20 September 2013

[asy] pair O = (0,0); pair P = (2,0); draw(unitcircle); dot(O); dot(P); label('$P$', P, E); label('$C$', O, W); [/asy]

Given a circle with center $C$ and a point $P$ that lies outside the circle, bisect circle $C$ with a second circle centered at $P$.

[asy] pair O = (0,0); pair P = (2,0); pair A = (0,1); pair B = (0, -1); draw(unitcircle); draw(A--B, red); draw(P--O, red); draw(circle(P, 2.24)); dot(O); dot(P); dot(A); dot(B); label('$P$', P, E); label('$C$', O, W);  [/asy]