Difference between revisions of "User:N828335"

 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
 
[https://jsfiddle.net/828335/9cuovn5t/show/ Custom-Built Pi Memorizing web application]
 
[https://jsfiddle.net/828335/9cuovn5t/show/ Custom-Built Pi Memorizing web application]
  
 +
Asymptote Tests
 
<asy>
 
<asy>
draw((-1.2,0)--(1.2,0));
+
size(300);
draw((0,-1.2)--(0,1.2));
+
fill(arc((0,0),1,-90,90)--(0,0)--cycle,rgb(0,0.6,1));
draw(circle((0,0),1));
+
fill(arc((0,3.5),1,-90,90)--(0,3.5)--cycle,rgb(0,0.6,1));
for (int i=0; i<24; ++i)
+
fill(arc((6,3.5),1,-90,90)--(6,3.5)--cycle,rgb(0,0.6,1));
 +
fill(arc((3,0),1,180,0)--(3,0)--cycle,rgb(0,0.6,1));
 +
fill(arc((3,3.5),1,180,0)--(3,3.5)--cycle,rgb(0,0.6,1));
 +
fill(arc((6,0),1,180,0)--(6,0)--cycle,rgb(0,0.6,1));
 +
 
 +
for (int j=0; j<2; ++j)
 
{
 
{
  draw((0,0)--expi(i*pi/12));
+
  for (int i=0; i<3; ++i)
 +
{
 +
  draw((-1.2+3i,3.5j)--(1.2+3i,3.5j));
 +
  draw((3*i,-1.2+3.5j)--(3*i,1.2+3.5j));
 +
  draw(circle((3*i,3.5j),1));
 +
 +
}
 
}
 
}
 +
label("$\mathrm{arccsc}$",(0,1.5));
 +
label("$\mathrm{arcsec}$",(3,1.5));
 +
label("$\mathrm{arccot}$",(6,1.5));
 +
label("$\arcsin$",(0,5));
 +
label("$\arccos$",(3,5));
 +
label("$\arctan$",(6,5));
  
 
</asy>
 
</asy>

Latest revision as of 22:25, 13 February 2020

All I do for fun is study for math competitions. Compete in the Minnesota State High School Mathematics League (MSHSML), and a member of the Minnesota All-State Math Team. Memorized over 500 digits of $\pi$ also.

$e^{\pi i} = -1$ is better than $e^{\pi i}+1 =0$

Reddit Account (Occasionally post math memes)

Custom-Built Pi Memorizing web application

Asymptote Tests [asy] size(300); fill(arc((0,0),1,-90,90)--(0,0)--cycle,rgb(0,0.6,1)); fill(arc((0,3.5),1,-90,90)--(0,3.5)--cycle,rgb(0,0.6,1)); fill(arc((6,3.5),1,-90,90)--(6,3.5)--cycle,rgb(0,0.6,1)); fill(arc((3,0),1,180,0)--(3,0)--cycle,rgb(0,0.6,1)); fill(arc((3,3.5),1,180,0)--(3,3.5)--cycle,rgb(0,0.6,1)); fill(arc((6,0),1,180,0)--(6,0)--cycle,rgb(0,0.6,1));  for (int j=0; j<2; ++j) {  for (int i=0; i<3; ++i)  {   draw((-1.2+3i,3.5j)--(1.2+3i,3.5j));   draw((3*i,-1.2+3.5j)--(3*i,1.2+3.5j));   draw(circle((3*i,3.5j),1));    } } label("$\mathrm{arccsc}$",(0,1.5)); label("$\mathrm{arcsec}$",(3,1.5)); label("$\mathrm{arccot}$",(6,1.5)); label("$\arcsin$",(0,5)); label("$\arccos$",(3,5)); label("$\arctan$",(6,5));  [/asy]