Difference between revisions of "User:Andrew Kim"

Line 2: Line 2:
 
<asy>
 
<asy>
 
import olympiad;
 
import olympiad;
unitsize(20);
+
unitsize(15);
 
pair A, B, C, D;
 
pair A, B, C, D;
 
A=(0,0); B=(10,0); C=(10,10); D=(0,10);
 
A=(0,0); B=(10,0); C=(10,10); D=(0,10);
 
draw(A--B--C--D--cycle);
 
draw(A--B--C--D--cycle);
 +
draw(incircle(A,B,C));
 +
draw(incircle(A,C,D));
 
</asy>
 
</asy>

Revision as of 17:50, 27 October 2010

Asymptote Test [asy] import olympiad; unitsize(15); pair A, B, C, D; A=(0,0); B=(10,0); C=(10,10); D=(0,10); draw(A--B--C--D--cycle); draw(incircle(A,B,C)); draw(incircle(A,C,D)); [/asy]