Upload log
Below is a list of the most recent file uploads. See the gallery of new files for a more visual overview.
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 06:23, 22 June 2016 Tom (talk | contribs) uploaded a new version of File:Chebyshevthetaplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 def isValid ( n ): if (n <=0): ret...)
- 06:20, 22 June 2016 Tom (talk | contribs) uploaded File:Chebyshevvarthetaplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 def isValid ( n ): if (n <=0): ret...)
- 05:57, 22 June 2016 Tom (talk | contribs) uploaded File:Mangoldtplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 def isValid ( n ): if (n <=0): ret...)
- 05:44, 22 June 2016 Tom (talk | contribs) uploaded File:Mangoldtglyph.png (Category:Mangoldtglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 def isValid ( n ): if (n <=0):...)
- 05:24, 22 June 2016 Tom (talk | contribs) uploaded File:Gpfglyph.png (Category:greatestprimefactorglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 def gpf(n): i = 2 whi...)
- 05:19, 22 June 2016 Tom (talk | contribs) uploaded File:Greatestprimefactor,to1000.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 def gpf(n): i = 2 while i * i <= n:...)
- 05:10, 22 June 2016 Tom (talk | contribs) uploaded File:Primecountingglyph.png (Category:primecountingglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(0,500,1) f=np.vectorize(primepi) y=f(x) x2=np.a...)
- 05:00, 22 June 2016 Tom (talk | contribs) uploaded File:Totientglyph.png (Category:totientglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 def totient(n): amount = 0 for k...)
- 04:21, 22 June 2016 Tom (talk | contribs) uploaded File:Totientplot,to15000.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 50, 50 def totient(n): amount = 0 for k in range...)
- 04:15, 22 June 2016 Tom (talk | contribs) uploaded File:Totientplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import fractions from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 def totient(n): amount = 0 for k in range...)
- 03:58, 22 June 2016 Tom (talk | contribs) uploaded File:Complexeulerphiplot.png (Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(lambda x: qp(x),[-1,1],[-1,1],points=100000,verbose=True) plt.title(r'Domain coloring of $\phi(z)$.') plt.savefig('complex...)
- 03:57, 22 June 2016 Tom (talk | contribs) uploaded File:Complexeulerphiglyph.png (Category:Eulerphiglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.5, 2.5 cplot(lambda x: qp(x),[-1,1],[-1,1],points=50000,verbose=True)...)
- 03:44, 22 June 2016 Tom (talk | contribs) uploaded a new version of File:Eulerphiglyph.png (Category:eulerphiglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-1,1,0.01) f=np.vectorize(lambda x: qp(x)) y=f(x) x2...)
- 03:42, 22 June 2016 Tom (talk | contribs) uploaded File:Eulerphiglyph.png (Category:eulerphiglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-1,1,0.01) f=np.vectorize(lambda x: qp(x)) y=f(x) x2...)
- 03:27, 22 June 2016 Tom (talk | contribs) uploaded File:Eulerphiplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 x=np.arange(-1,1,0.001); f=np.vectorize(lambda x: qp(x)) y=f(x) fig, ax =...)
- 01:03, 22 June 2016 Tom (talk | contribs) uploaded File:Arccoshplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 x=np.arange(1,10,0.01); f=np.vectorize(acosh) y=f(x) fig, ax = plt.subplot...)
- 01:01, 22 June 2016 Tom (talk | contribs) uploaded a new version of File:Arcsinhplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 x=np.arange(-25,25,0.01); f=np.vectorize(asinh) y=f(x) fig, ax = plt.subpl...)
- 00:49, 22 June 2016 Tom (talk | contribs) uploaded a new version of File:Mobiusglyph.png (Category:mobiusglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 def numberOfFactors(n): counter = 0 while (n > 1):...)
- 21:27, 21 June 2016 Tom (talk | contribs) uploaded File:Hexadecagonalnumber16.png (Category:hexadecagonalnumberglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=16,color=white] at (0...)
- 21:24, 21 June 2016 Tom (talk | contribs) uploaded a new version of File:Pentadecagonalnumber15.png (Category:pentadecagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=15,color=white] at...)
- 21:23, 21 June 2016 Tom (talk | contribs) uploaded File:Pentadecagonalnumber15.png (Category:pentadecagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=15,color=white] at...)
- 21:20, 21 June 2016 Tom (talk | contribs) uploaded File:Tetradecagonalnumber14.png (Category:tetradecagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=14,color=white] at...)
- 21:16, 21 June 2016 Tom (talk | contribs) uploaded File:Tridecagonalnumber13.png (Category:tridecagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=13,color=white] at (0...)
- 20:53, 21 June 2016 Tom (talk | contribs) uploaded File:Dodecagonalnumber12glyph.png (Category:dodecagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=12,color=white] at (0,...)
- 20:50, 21 June 2016 Tom (talk | contribs) uploaded File:Hendecagonalnumber11.png (Category:hendecagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=11,color=white] at (0...)
- 20:45, 21 June 2016 Tom (talk | contribs) uploaded File:First six triangular numbers.svg (From [https://en.wikipedia.org/wiki/Triangular_number#/media/File:First_six_triangular_numbers.svg Wikipedia])
- 20:39, 21 June 2016 Tom (talk | contribs) uploaded File:Decagonalnumber10.png (Category:decagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=10,color=white] at (0,0)...)
- 20:35, 21 June 2016 Tom (talk | contribs) uploaded File:Nonagonalnumber9glyph.png (Category:nonagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=9,color=white] at (0,0)...)
- 20:32, 21 June 2016 Tom (talk | contribs) uploaded File:Octagonalnumber8glyph.png (Category:octagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=8,color=white] at (0,0)...)
- 20:28, 21 June 2016 Tom (talk | contribs) uploaded File:Heptagonalnumber7glyph.png (Category:Heptagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=7,color=white] at (0,0)...)
- 20:01, 21 June 2016 Tom (talk | contribs) uploaded a new version of File:Hexagonalnumber6glyph.png (Category:hexagonalnumbers <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=6,color=white] at (0,0) {};...)
- 19:58, 21 June 2016 Tom (talk | contribs) uploaded File:Hexagonalnumber6glyph.png (Category:hexagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=6,color=white] at (0,0)...)
- 19:54, 21 June 2016 Tom (talk | contribs) uploaded a new version of File:Pentagonalnumber5glyph.png (Category:Pentagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=5,color=white] at (0,0)...)
- 19:53, 21 June 2016 Tom (talk | contribs) uploaded File:Pentagonalnumber5glyph.png (Category:Pentagonalnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=5,color=white] at (0,0)...)
- 19:50, 21 June 2016 Tom (talk | contribs) uploaded File:Squarenumber4glyph.png (Category:Squarenumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=4,color=white] at (0,0) {};...)
- 19:42, 21 June 2016 Tom (talk | contribs) uploaded File:Triangularnumber3glyph.png (Category:Triangularnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=3,color=white] at (0,0)...)
- 19:37, 21 June 2016 Tom (talk | contribs) uploaded File:Triangularnumber5glyph.png (Category:Triangularnumbersglyph <pre>\documentclass[tikz]{standalone} \usetikzlibrary{shapes.geometric,calc} \begin{document} \begin{tikzpicture} \node (pol) [minimum size=\textwidth,regular polygon, regular polygon sides=3,color=white] at (0,0)...)
- 23:25, 16 June 2016 Tom (talk | contribs) uploaded File:Mertensplot,n=0to2000.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 def numberOfFactors(n): counter = 0 while (n > 1):...)
- 09:47, 16 June 2016 Tom (talk | contribs) uploaded File:Mobiusglyph.png (Category:mobiusglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 def numberOfFactors(n): counter = 0 while (n > 1):...)
- 09:43, 16 June 2016 Tom (talk | contribs) uploaded File:Mobiusplot,on0to100.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 def numberOfFactors(n): counter = 0 while (n > 1):...)
- 09:42, 16 June 2016 Tom (talk | contribs) uploaded File:Mobiusplot,on0to40.png (Category:Plot)
- 09:20, 16 June 2016 Tom (talk | contribs) uploaded File:Complexidentityglyph.png (Category:Identityglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.5, 2.5 def g(x): return x cplot(g ,[-1,1],[-1,1],points=400000,...)
- 08:25, 16 June 2016 Tom (talk | contribs) uploaded File:Identityglyph.png (Category:identityglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-3,3,0.01) def g(x): return x f=np.vectorize...)
- 08:21, 16 June 2016 Tom (talk | contribs) uploaded File:Floorglyph.png (Category:floorglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-4,4,0.01) f=np.vectorize(floor) y=f(x) fig, ax = plt.s...)
- 08:18, 16 June 2016 Tom (talk | contribs) uploaded a new version of File:Ceilingglyph.png (Category:Ceilingglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-3,3,0.01) f=np.vectorize(ceil) y=f(x) fig, ax = plt....)
- 08:12, 16 June 2016 Tom (talk | contribs) uploaded File:Ceilingglyph.png (Category:Ceilingglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x=np.arange(-3,3,0.01) f=np.vectorize(ceil) y=f(x) fig, ax = plt....)
- 08:06, 16 June 2016 Tom (talk | contribs) uploaded File:Signumglyph.png (Category:signumglyph <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 2.4,2.4 x1=np.arange(-4,-0.05,0.01); x2=np.arange(0.05,4,0.01); def g1(x):...)
- 08:01, 16 June 2016 Tom (talk | contribs) uploaded File:Signumplot.png (Category:Plot <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['figure.figsize'] = 10, 10 x1=np.arange(-4,-0.05,0.01); x2=np.arange(0.05,4,0.01); def g1(x):...)
- 01:14, 11 June 2016 Tom (talk | contribs) uploaded File:Complexkelvinkei,n=0plot.png (Category:DomainColoring <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(lambda x: kei(0,x),[-15,15],[-15,15],points=50000,verbose=True) plt.title(r'Domain coloring of $\mathrm{kei}_{0}(z)$.') pl...)
- 01:07, 11 June 2016 Tom (talk | contribs) uploaded File:Complexkelvinker,n=0plot.png (Category:DomainColoring <pre> #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * cplot(lambda x: ker(0,x),[-15,15],[-15,15],points=50000,verbose=True) plt.title(r'Domain coloring of $\mathrm{ker}_{0}(z)$.') p...)