Question: *****PYTHON PROGRAM: 4. Write a program to approximate the square root of a number x entered by the user, by using the following algorithm: start

*****PYTHON PROGRAM:

*****PYTHON PROGRAM: 4. Write a program to approximate the square root of

4. Write a program to approximate the square root of a number x entered by the user, by using the following algorithm: start with result = x/2, and keep updating result to (result + x/result)/2 as many times as specified by the user. (This is Newton's algorithm.) [3.17] Compare (result ** 2) to x. Call your program 'sqrt_newton.py'. Example usage: This program approximates square roots using Newton's algorithm. Input number: 3.47 Number of iterations: 4 1.8627936010197157 Squares error: -4.440892098500626e-16

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!