Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The square root of a number N can beapproximated by repeated calculation using the formula NG = 0.5(LG + N/LG) where NG stands for next

The square root of a number N can beapproximated by repeated calculation using the formula

NG = 0.5(LG + N/LG)

where NG stands for next guess andLG stands for last guess.

Write a program that will compute for the square root of anumber using this method. The initial guess will be set to1.0, this will be the starting value ofLG.

Algorithm:

  1. The program will compute a value for NG usingthe formula given.
  2. The absolute difference between NG andLG is checked to see whether these two guesses arealmost identical (e.g. less than 0.005).

a. If they are,NG is accepted as the square root and the processis terminated;

b. Otherwise, the last guess(LG) gets the value of the next guess(NG) and the entire process is repeated.

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

Introduction to Java Programming, Comprehensive Version

Authors: Y. Daniel Liang

10th Edition

133761312, 978-0133761313

More Books

Students also viewed these Databases questions

Question

How are we on the list of controls? Where do we have deficits? P987

Answered: 1 week ago