オイラーの五角数定理を可視化を可視化する。とりあえず
\begin{align}
(q;q)_\infty=\prod_{n=1}^{\infty} (1 – q^n)
\end{align}
を可視化する。\(N=100\)の時、
以下コード。
import matplotlib.pyplot as plt
N = 100
q = 0.5
result = [1] * N
for i in range(2, N):
result[i] = result[i - 1] * (1 - q ** i)
plt.plot(result, 'k')
plt.grid()
plt.show()
コメント