Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

One of the oldest methods for computing the square root Links to an external site. of a number is the Babylonian Method Links to an

One of the oldest methods for computing the square root
Links to an external site. of a number is the Babylonian Method
Links to an external site.
. The Babylonian Method uses an iterative algorithm to make successively more accurate estimates of a number's square root. The algorithm stops iterating when the estimate shows no further sign of improvement, or when the estimate is within some acceptable margin of error. The acceptable margin of error is often called an epsilon.
Assuming that you need to solve for the square root of x, the algorithm works as follows.
Choose an epsilon value that determines how close your solution should be to the actual square root value before you decide it is "good enough." Because this assignment asks you to solve for the square root to three decimal places, we can safely set the epsilon value to 0.0001(four decimal places). This guarantees that our solution will be accurate to the precision we need to display to the screen.
Choose an initial estimate e for the square root of x. An easy and perfectly valid approach is to set the initial estimate e=x. For example, you could set the first estimate for the square root of 4 to be 4.
Evaluate the estimate by dividing the value x by your estimate e, and comparing the result of that division to the current estimate e. If your estimate e were to be exactly equal to the square root, then you would find that x/e=e. In practice, unless you are lucky, there will typically be some difference between these two values (x/e and e) even after many iterations of the algorithm.
Determine if the estimate is "good enough" to stop. A smaller difference between x/e and e reflects a more accurate estimate. If the difference is smaller than your epsilon value, then you've found the answer! If not---if the difference is greater than the epsilon value---then you need to proceed to step 5 below.
Note that you'll want to look at the absolute value of the difference between x/e and e. This is because e may be too large or too small. To test for the absolute value, you could use if/else logic to see which term (x/e or e) is smaller. You could then subtract the smaller value from the larger one. Alternatively, you could use the Python's built-in function abs().
Revise the estimate (if needed based on Step 4) by setting e to the average of the fraction x/e and your old estimate e. Using this new estimate, go back to Step 3.
For this assignment, you need to write a Python program that solves for square roots using the algorithm outlined above. See the requirements sections below for more detailed instructions.
Please Note that you are not allowed to use any built-in functions for this assignment while Python has its own way of calculating square roots. Instead, you must implement your own solution to this classic mathematical problem. To be clear, you should NOT use any pre-defined Python square root function anywhere in your assignment solution.

Step by Step Solution

3.55 Rating (166 Votes )

There are 3 Steps involved in it

Step: 1

To solve for the square root using the Babylonian Method in Python without using any builtin functio... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Algebra and Trigonometry

Authors: Ron Larson

10th edition

9781337514255, 1337271179, 133751425X, 978-1337271172

More Books

Students also viewed these Programming questions

Question

3. Give short, clear directions before, not during, transitions.

Answered: 1 week ago

Question

Explain the principles of delegation

Answered: 1 week ago

Question

State the importance of motivation

Answered: 1 week ago

Question

Discuss the various steps involved in the process of planning

Answered: 1 week ago

Question

What are the challenges associated with tunneling in urban areas?

Answered: 1 week ago

Question

What are the main differences between rigid and flexible pavements?

Answered: 1 week ago