Answered step by step
Verified Expert Solution
Question
1 Approved Answer
3 . 1 3 The divide and average method, an old - time method for approximating the square root of any positive number a ,
The divide and average method, an oldtime method
for approximating the square root of any positive number a
can be formulated as
x x ax
Write a wellstructured Mfile function based on the
while...break loop structure to implement this algo
rithm. Use proper indentation so that the structure is clear. At
each step estimate the error in your approximation as
epsi
x new x old
x new
Repeat the loop until epsi is less than or equal to a specified
value. Design your program so that it returns both the result
and the error. Make sure that it can evaluate the square root
of numbers that are equal to and less than zero. For the latter
case, display the result as an imaginary number. For exam
ple, the square root of would return i Test your program
by evaluating a and for epsi times
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started