From English Wikipedia @ Freddythechick

No higher resolution available.
Feigenbaum_Tree.gif (400 × 400 pixels, file size: 500 KB, MIME type: image/gif, looped, 100 frames, 10 s)
Note: Due to technical limitations, thumbnails of high resolution GIF images such as this one will not be animated.
Summary
Source code in Python 3.x (in Jupyter Notebook)
# Author: Damodar Rajbhandari (2023)
%reset -f
%matplotlib notebook
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import rc
from matplotlib.animation import FuncAnimation
from IPython.display import clear_output
from IPython.display import Image
plt.rcParams.update({
"text.usetex": True,
"font.family": "Computer Modern Roman",
"font.size": 24,
})
n_dots = 1_000_000 # total number of dots
k = np.linspace(0.0, 4.0, n_dots)
iterations = 100
fig = plt.figure(figsize=(20, 15))
ax = plt.axes()
ax.set_xlim(0.0, 4.0)
ax.set_ylim(0.0, 1.0)
rc('animation', html='html5')
def animate(i):
plt.cla()
ax.set_title(r"Feigenbaum Tree; $x^{(k)}_{n + 1} = k x^{(k)}_{n}(1 - x^{(k)}_{n})$ for $n= $"+" {}".format(i +1))
x = np.random.uniform(0.0, 1.0, n_dots)
for _ in range(i + 1):
x = k * x * (1 - x)
ax.plot(k, x, '.k', markersize=.04)
ax.set(xlabel=r'$k$', ylabel=r'$x^{(k)}_{n}$')
print("Done iteration = {}".format(i))
clear_output(wait=True)
fig = FuncAnimation(fig, animate, frames=iterations, interval=300, blit=True)
fig.save('feigenbaum_tree.gif', writer='imagemagick', fps=10)
with open('feigenbaum_tree.gif','rb') as f:
display(Image(data=f.read(), format='png'))
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
https://creativecommons.org/licenses/by-sa/4.0CC BY-SA 4.0 Creative Commons Attribution-Share Alike 4.0 truetrue
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Thumbnail | Dimensions | User | Comment |
current | 04:52, 9 February 2023 |  | 400 × 400 (500 KB) | wikimediacommons>Drhere | reduced weightxheight to 400x400 |
File usage
The following page uses this file:
This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
If the file has been modified from its original state, some details may not fully reflect the modified file.