Difference between revisions of "User:Jonjoseph"
Line 67: | Line 67: | ||
draw(Z--V,dashed); | draw(Z--V,dashed); | ||
draw(W--U,red); | draw(W--U,red); | ||
+ | </asy> | ||
+ | |||
+ | |||
+ | <asy> | ||
+ | unitsize(0.2 cm); | ||
+ | pair A, B, E, P; | ||
+ | A = (0,0); | ||
+ | B = (8,0); | ||
+ | E=(1,2); | ||
+ | P = (B + reflect(A,(1,2))*(B))/2; | ||
+ | draw((-10,0)--(10,0)); | ||
+ | draw(A+(-1,-2)--8*E, red); | ||
+ | draw(A--(0,25)); | ||
+ | draw(B+-1*(1,2)--(9, 2)+7*(1,2), red); | ||
+ | draw(B--P,dashed); | ||
+ | dot("$A$", A, SE); | ||
+ | dot("$B$", B, SE); | ||
+ | dot("$P$", P, N); | ||
+ | label("$8$", (A + B)/2, S); | ||
</asy> | </asy> |
Revision as of 20:29, 26 March 2014
Given a circle with center and a point that lies outside the circle, bisect circle with a second circle centered at .
Problem from class: