#!/usr/bin/python 
import math

x1 = 0.2
x2 = 0.200001
y1 = 0.0
y2 = 0.0
i = 0

archivo = open('comparativa.dat','w')
while i < 80:
  y1 = 4*(math.pow(x1, 3)) - 3*x1
  y2 = 4*(math.pow(x2, 3)) - 3*x2
  archivo.write("%f %f\n" % (i, y1-y2))
  x1 = y1
  x2 = y2
  i+=1
archivo.close()