Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The squareroot of a number N can be approximated by repeated calculation using the formula NG = 0.5(LG + N/LG) Where, NG stands for next

image text in transcribed
The squareroot of a number N can be approximated by repeated calculation using the formula NG = 0.5(LG + N/LG) Where, NG stands for next guess and LG stands for last guess. Write a C language function that calculates the squareroot of a number using this method. The initial guess will be the starting value of LG. The program will compute a value for NG using the formula given above. The difference between NG and LG is checked to see whether these two guesses are almost identical. If they are, NG is accepted as the squareroot : otherwise, the next guess (NG) becomes the last guess (LG) and the process is repeated (another value is computed for NG, the difference is checked and so on). The loop should be repeated until the difference is less than 0.005. Write a complete C language program to test your squareroot function for the following numbers: 4, 120.5, 36.01, and 0.25 (Use an initial guess of 1.0)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

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

Oracle Database 19c DBA By Examples Installation And Administration

Authors: Ravinder Gupta

1st Edition

B09FC7TQJ6, 979-8469226970

Students also viewed these Databases questions

Question

What is Change Control and how does it operate?

Answered: 1 week ago

Question

How do Data Requirements relate to Functional Requirements?

Answered: 1 week ago