ข้ามไปเนื้อหา

ไฟล์:RiemannCriticalLine.svg

ไม่รองรับเนื้อหาของหน้าในภาษาอื่น
จากวิกิพีเดีย สารานุกรมเสรี

ดูภาพที่มีความละเอียดสูงกว่า((ไฟล์ SVG, 933 × 434 พิกเซล, ขนาดไฟล์: 50 กิโลไบต์))

Wikimedia Commons logo รูปภาพหรือไฟล์เสียงนี้ ต้นฉบับอยู่ที่ คอมมอนส์ รายละเอียดด้านล่าง เป็นข้อความที่แสดงผลจาก ไฟล์ต้นฉบับในคอมมอนส์
คอมมอนส์เป็นเว็บไซต์ในโครงการสำหรับเก็บรวบรวมสื่อเสรี ที่ คุณสามารถช่วยได้
 
W3C-validity not checked.

ความย่อ

คำอธิบาย
English: Graph of real (red) and imaginary (blue) parts of the critical line Re(z)=1/2 of the Riemann zeta function.
วันที่
แหล่งที่มา

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} ]]]
ผู้สร้างสรรค์ Slonzor
การอนุญาต
(การใช้ไฟล์นี้ใหม่)
Public Domain
SVG genesis
InfoField
 
ซอร์สโค้ดของ SVG นี้ตรวจสอบถูกต้องแล้ว
 
ไฟล์ภาพกราฟิกส์เวกเตอร์นี้ สร้างขึ้นโดยใช้ Matplotlib โดย Krishnavedala
รหัสต้นฉบับ
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')

การอนุญาตใช้สิทธิ

Public domain ข้าพเจ้า ผู้ถือลิขสิทธิ์ในงานนี้ ขอมอบงานให้เป็นสาธารณสมบัติ ประกาศนี้มีผลทั่วโลก
ในบางประเทศ การกระทำดังกล่าวอาจไม่สามารถทำได้ตามกฎหมาย
ข้าพเจ้าอนุญาตให้ทุกคนมีสิทธิ์ในการใช้ไฟล์นี้ในทุกเหตุผลการใช้ โดยไม่มีมีเงื่อนไข เว้นแต่กฎหมายไม่อนุญาตให้ทำเช่นนั้น

คำบรรยายโดยย่อ

เพิ่มคำบรรยายทรรทัดเดียวเพื่อขยายความว่าไฟล์นี้มีอะไร

รายการที่แสดงอยู่ในไฟล์นี้

ประกอบด้วย

media type อังกฤษ

image/svg+xml

ประวัติไฟล์

คลิกวันที่/เวลาเพื่อดูไฟล์ที่ปรากฏในขณะนั้น

วันที่/เวลารูปย่อขนาดผู้ใช้ความเห็น
ปัจจุบัน03:01, 24 สิงหาคม 2560รูปย่อสำหรับรุ่นเมื่อ 03:01, 24 สิงหาคม 2560933 × 434 (50 กิโลไบต์)Krishnavedalamuch reduced vector version
05:28, 25 กันยายน 2552รูปย่อสำหรับรุ่นเมื่อ 05:28, 25 กันยายน 2552800 × 600 (122 กิโลไบต์)Geek3linewidth=1px
02:33, 21 พฤศจิกายน 2551รูปย่อสำหรับรุ่นเมื่อ 02:33, 21 พฤศจิกายน 2551800 × 600 (122 กิโลไบต์)SlonzorMan i've messed this up a lot of times.
02:27, 21 พฤศจิกายน 2551รูปย่อสำหรับรุ่นเมื่อ 02:27, 21 พฤศจิกายน 2551800 × 600 (3.36 เมกะไบต์)Slonzor
02:23, 21 พฤศจิกายน 2551รูปย่อสำหรับรุ่นเมื่อ 02:23, 21 พฤศจิกายน 2551800 × 600 (3.36 เมกะไบต์)Slonzor
02:18, 21 พฤศจิกายน 2551รูปย่อสำหรับรุ่นเมื่อ 02:18, 21 พฤศจิกายน 2551800 × 600 (3.36 เมกะไบต์)Slonzor
02:13, 21 พฤศจิกายน 2551รูปย่อสำหรับรุ่นเมื่อ 02:13, 21 พฤศจิกายน 2551800 × 600 (79 กิโลไบต์)Slonzor{{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]],

หน้าต่อไปนี้ โยงมาที่ภาพนี้:

การใช้ไฟล์ข้ามโครงการ

วิกิอื่นต่อไปนี้ใช้ไฟล์นี้:

ดูการใช้ข้ามโครงการเพิ่มเติมของไฟล์นี้

ข้อมูลเกี่ยวกับภาพ