import numpy as np
import matplotlib.pyplot as plt
import math
x = 0
y = 1
xx = np.linspace(0, 10, 100)
yy = np.linspace(0, 10, 100)
for i in range(100):
y = 1.1 * y - 0.2 * x/y
x = x+0.1
xx.append(x)
yy.append(y)
print(xx)
print(yy)
fig = plt.figure()
ax = fig.add_subplot(111)
ax = ax.plot(xx, yy)
plt.show()