Question
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:
- The program will compute a value for NG usingthe formula given.
- 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
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 StartedRecommended Textbook for
Introduction to Java Programming, Comprehensive Version
Authors: Y. Daniel Liang
10th Edition
133761312, 978-0133761313
Students also viewed these Databases questions
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
View Answer in SolutionInn App