To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
Spanish Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Archivo:RiemannCriticalLine.svg

De Wikipedia, la enciclopedia libre

Ver la imagen en su resolución original((Imagen SVG, nominalmente 933 × 434 pixels, tamaño de archivo: 50 kB))

 
W3C-validity not checked.

Resumen

Descripción
English: Graph of real (red) and imaginary (blue) parts of the critical line Re(z)=1/2 of the Riemann zeta function.
Fecha
Fuente

Own work. Made with Mathematica using the following code:

Show[Plot[{Re[Zeta[1/2+I x]], Im[Zeta[1/2+I x]]}, {x,-30, 30},AxesLabel->{"x"} , PlotStyle->{Red, Blue}, Ticks->{Table[4x-28,{x,0,14}]}, ImageSize->{800,600}], Graphics[Text[Style[\[DoubleStruckCapitalR][\[Zeta][ I x + "1/2"]],14,Red ,Background ->White],{-22,2.6} ]], Graphics[Text[Style[\[GothicCapitalI][\[Zeta][ I x + "1/2"]],14,Blue ,Background ->White],{-14,2.6} ]]]
Autor Slonzor
Permiso
(Reutilización de este archivo)
Public Domain
SVG desarrollo
InfoField
 
El código fuente de esta imagen SVG es válido.
Código fuente
InfoField

Python code

Source code
import mpmath
import numpy as np
from matplotlib import pyplot as plt
plt.rcParams['svg.fonttype'] = 'path'

x = np.linspace(-30, 30, 300)
y = [complex(1,1)]*len(x)
for p, xx in enumerate(x):
    t = mpmath.nstr(mpmath.mpc(0.5 + xx*1j))
    y[p] = mpmath.zeta(t)

fig = plt.figure(figsize=[13,6])
ax = fig.add_subplot(111)

ax.spines['left'].set_position('zero')
ax.spines['right'].set_color('none')
ax.spines['bottom'].set_position('zero')
ax.spines['top'].set_color('none')
ax.spines['left'].set_smart_bounds(True)
ax.spines['bottom'].set_smart_bounds(True)
ax.xaxis.set_ticks_position('bottom')
ax.yaxis.set_ticks_position('left')

ax.text(-25,2.7, '$\\Re\\left[\\zeta\\left(\\frac{1}{2}+ix\\right)\\right]$', size='xx-large', color='red')
ax.text(-15,2.7, '$\\Im\\left[\\zeta\\left(\\frac{1}{2}+ix\\right)\\right]$', size='xx-large', color='blue')

ax.plot(x, [yy.real for yy in y], label='Real', color='red')
ax.plot(x, [yy.imag for yy in y], label='Imag', color='blue')
# ax.legend(loc=(.6,.8))
ax.minorticks_on()
ax.grid(b=True, which='major', ls='-', lw=1.5)
ax.grid(b=True, which='minor', ls='--', lw=.5)
fig.savefig('RiemannCriticalLine.svg', bbox_inches='tight')

Licencia

Public domain Yo, el titular de los derechos de autor de esta obra, lo libero al dominio público. Esto aplica en todo el mundo.
En algunos países esto puede no ser legalmente factible; si ello ocurriese:
Concedo a cualquier persona el derecho de usar este trabajo para cualquier propósito, sin ningún tipo de condición al menos que éstas sean requeridas por la ley.

Leyendas

Añade una explicación corta acerca de lo que representa este archivo

Elementos representados en este archivo

representa a

image/svg+xml

Historial del archivo

Haz clic sobre una fecha y hora para ver el archivo tal como apareció en ese momento.

Fecha y horaMiniaturaDimensionesUsuarioComentario
actual20:01 23 ago 2017Miniatura de la versión del 20:01 23 ago 2017933 × 434 (50 kB)<bdi>Krishnavedala</bdi>much reduced vector version
22:28 24 sep 2009Miniatura de la versión del 22:28 24 sep 2009800 × 600 (122 kB)<bdi>Geek3</bdi>linewidth=1px
19:33 20 nov 2008Miniatura de la versión del 19:33 20 nov 2008800 × 600 (122 kB)<bdi>Slonzor</bdi>Man i've messed this up a lot of times.
19:27 20 nov 2008Miniatura de la versión del 19:27 20 nov 2008800 × 600 (3,36 MB)<bdi>Slonzor</bdi>
19:23 20 nov 2008Miniatura de la versión del 19:23 20 nov 2008800 × 600 (3,36 MB)<bdi>Slonzor</bdi>
19:18 20 nov 2008Miniatura de la versión del 19:18 20 nov 2008800 × 600 (3,36 MB)<bdi>Slonzor</bdi>
19:13 20 nov 2008Miniatura de la versión del 19:13 20 nov 2008800 × 600 (79 kB)<bdi>Slonzor</bdi>{{Information |Description={{en|1=Graph of real (red) and imaginary (blue) parts of the critical line Re(z)=1/2 of the Riemann zeta function.}} |Source=Own work. Made with Mathematica using the following code: <code><nowiki>Show[Plot[{Re[Zeta[1/2+I x]],

La siguiente página usa este archivo:

Uso global del archivo

Las wikis siguientes utilizan este archivo:

Ver más uso global de este archivo.

Metadatos

Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.