Difference between revisions of "User:5849206328x"
5849206328x (talk | contribs) m |
(Accident) (Tag: Undo) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | <asy> | ||
+ | size(216); | ||
+ | |||
+ | pair A,B,P,Q,X,Y; | ||
+ | A = (0,0); B = (25,0); | ||
+ | P = (4/25) * (-7,24); Q = B + (11/25) * (-7,24); | ||
+ | X = (4/5) * (3,4); Y = B - (11/5) * (3,4); | ||
+ | |||
+ | dot(A); dot(B); | ||
+ | draw(circle(A,4)); draw(circle(B,11)); | ||
+ | draw(P--Q); draw(X--Y); | ||
+ | |||
+ | label("$A$",A,W); label("$B$",B,E); | ||
+ | label("$C$",P,NNW); label("$D$",Q,NNW); | ||
+ | label("$E$",X,ENE); label("$F$",Y,WSW); | ||
+ | </asy> | ||
+ | |||
+ | |||
<asy> | <asy> | ||
size(216); | size(216); | ||
Line 29: | Line 47: | ||
draw(nodes[8] -- nodes[6], Arrow); | draw(nodes[8] -- nodes[6], Arrow); | ||
draw(nodes[9] -- nodes[3], Arrow); | draw(nodes[9] -- nodes[3], Arrow); | ||
+ | </asy> | ||
+ | |||
+ | <asy> | ||
+ | unitsize (1 cm); | ||
+ | |||
+ | pair A, B, C; | ||
+ | |||
+ | A = (3,2); | ||
+ | B = intersectionpoint(arc(A,4,200,340),C--(10,0)); | ||
+ | C = (0,0); | ||
+ | |||
+ | draw(B--A--C--(8,0), Arrow(6)); | ||
+ | draw(arc(A,4,200,340), dashed); | ||
+ | |||
+ | label("$A$", A, N); | ||
+ | label("$B$", B, SE); | ||
+ | label("$C$", C, NNW); | ||
+ | label("$b$", (A + C)/2, NW); | ||
+ | label("$c$", (A + B)/2, NE); | ||
+ | label("$\theta$", (1,0.3)); | ||
</asy> | </asy> |
Latest revision as of 17:54, 1 July 2025