Question: # sqrt.py import stdio import sys # Accept float c as a command-line argument. Write to standard # output the square root of c to

 # sqrt.py import stdio import sys # Accept float c as

# sqrt.py import stdio import sys # Accept float c as a command-line argument. Write to standard # output the square root of c to 15 decimal places of accuracy # Use Newton's method. EPSILON = 1e-15 c float(sys.argv[1]) while abs(t c/t) >(EPSILON t) # Replace t by the average of t and c/t. t -(c/tt) 2.e stdio.writeln(t) Problem 3. (Newton's Method) Using Program 1.3.6 (sqrt.py) from the IPP text as a model, develop a program root.py that takes a float c and an integer k as command-line arguments and writes Vc (kth root of c) to 5 decimal places of accuracy, ie, use e = 0.00001. Hint: at each iteration replace the estimate t by t f(t)/f(t), where f(z-ak c and f,(x) = ka k-1. and use the condition |1 c/t>eto continue the loop. s Python root.py 3 2 1.73205081001 python root.py 64 3 4.00000050864

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!