Difference between revisions of "AoPS Wiki:Sandbox"

(Latex Test)
 
(216 intermediate revisions by 45 users not shown)
Line 1: Line 1:
{{AoPSWiki:Sandbox/header}} <!-- Please do not delete this line -->
+
=A=
In the computer world, a '''sandbox''' is a place to test and experiment -- essentially, it's a place to play.
+
==B==
 
+
===C===
This is the AoPSWiki Sandbox.  Feel free to experiment here.
+
====D====
 
 
Warning: anything you place here is subject to deletion without notice.
 
 
 
=== Sandbox Area ===
 
<asy>
 
draw(Circle((0,0),13),linewidth(1));
 
draw((-12,-5)--(-5,-12)--(12,5)--cycle,linewidth(1));
 
draw((0,0)--(-5,-12),linewidth(1)+linetype("0 4"));
 
dot((0,0));
 
 
 
label("T",(0,0),N);
 
label("X",(-12,-5),W);
 
label("Z",(-5,-12),S);
 
label("Y",(12,5),E);
 
 
 
</asy>
 
<asy>
 
 
 
size(4cm,4cm);
 
 
 
pair A,B,C,D,E;
 
A = (0,0);
 
B = dir(108);
 
C = B+dir(39);
 
D = C+dir(-39);
 
E = (1,0);
 
 
 
draw(A--B--C--D--E--cycle,linewidth(1));
 
draw(A--C,linewidth(1)+linetype("0 4"));
 
 
 
label("A",A,S);
 
label("B",B,W);
 
label("C",C,N);
 
label("D",D,E);
 
label("E",E,S);
 
label("$108^\circ$",B,E);
 
 
 
 
 
</asy>
 
 
 
<asy>
 
 
 
draw(Circle((0,0),23), linewidth(1.5));
 
dot((0,0));
 
 
 
</asy>
 
 
 
<asy>
 
 
 
dot((0,0));
 
dot((5,12));
 
line((0,0)--(5,12));
 
 
 
</asy>
 

Latest revision as of 15:33, 13 June 2023

A

B

C

D