Section 2.11 A few notes on computation
Many of the results in these notes have been illustrated on the computer and some of the exercises require a computational approach. Whenever using the computer, it is always wise to examine the results critically. Here's a simple numerical example where things clearly go awry. In it, we are iterating the functionxxxxxxxxxx
x = 0.1
for i in range(20):
x = x**2 - 9.1*x+ 1
print(x)
xxxxxxxxxx
import numpy as np
x = 1/np.pi
for i in range(55):
x = 2*x%1
print(x)
xxxxxxxxxx
from mpmath import mp
mp.prec = 1000
x = 1/mp.pi
for i in range(1000):
x = 2*x%1
print(float(x))