The code utilizes fixed point iteration to solve equations in python. This code was wrriten for How to solve equations using python.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22  | import math
import sys 
def g(x):
	return math.pow(1-x,1/3.0)
	
def fpi(x, k):
	for i in range(k):
		print i, x, g(x)
		x = g(x)
	print 'The root is: ',
	return x
def main(argv):
	if (len(sys.argv) != 3):
		sys.exit('Usage: fixed_point.py <x> <k>')
	
	print 'The root is:',
	print fpi(float(sys.argv[1]),int(sys.argv[2]))
if __name__ == "__main__":
	main(sys.argv[1:])
 | 
Download
Copy to clipboard