Difference between revisions of "User:N828335"

(Created page with "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. Mem...")
 
Line 6: Line 6:
  
 
[https://jsfiddle.net/828335/9cuovn5t/show/ Custom-Built Pi Memorizing web application]
 
[https://jsfiddle.net/828335/9cuovn5t/show/ Custom-Built Pi Memorizing web application]
 +
 +
<asy>
 +
draw((-1.2,0)--(1.2,0));
 +
draw((0,-1.2)--(0,1.2));
 +
draw(circle((0,0),1));
 +
for (int i=0; i<24; ++i)
 +
{
 +
draw((0,0)--expi(i*pi/12));
 +
}
 +
 +
</asy>

Revision as of 14:17, 12 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

[asy] draw((-1.2,0)--(1.2,0)); draw((0,-1.2)--(0,1.2)); draw(circle((0,0),1)); for (int i=0; i<24; ++i) {  draw((0,0)--expi(i*pi/12)); }  [/asy]