subject
Engineering, 10.11.2019 04:31 abbycrabby

The function sqrt from the header file can be used to find the square root of a nonnegative real number. using newton’s method, you can also write an algorithm to find the square root of a nonnegative real number within a given tolerance as follows: suppose x is a nonnegative real number, a is the approximate square root of x, and epsilon is the tolerance. start with a = x.
a. if |a2 - x| less or equal than epsilon, then a is the square root of x within the tolerance; otherwise:
b. replace a with (a2 + x) / (2a) and repeat step a in which |a2 - x| denotes the absolute value of a2 - x. write a recursive function to implement this algorithm to find the square root of a nonnegative real number. also, write a program to test your function.
turn in your source code file and one or more screen shots showing the results of your testing. after completing this project you will show that you can identify the base case(s) and general case in a recursive algorithm
utilize tail recursion in the construction of a recursive algorithm
construct a recursive algorithm that does not use global variables

ansver
Answers: 1

Another question on Engineering

question
Engineering, 04.07.2019 03:10
What precautions should you take to prevent injuries when dealing with heavy loads?
Answers: 1
question
Engineering, 04.07.2019 18:10
Acompressor receives the shaft work to decrease the pressure of the fluid. a)- true b)- false
Answers: 3
question
Engineering, 04.07.2019 18:10
Determine whether or not it is possible to compress air adiabatically from k to 140 kpa and 400 k. what is the entropy change during this process?
Answers: 3
question
Engineering, 04.07.2019 18:10
Which of the following refers to refers to how well the control system responds to sudden changes in the system. a)-transient regulation b)- distributed regulation c)-constant regulation d)-steady-state regulation
Answers: 1
You know the right answer?
The function sqrt from the header file can be used to find the square root of a nonnegative real num...
Questions
question
History, 23.06.2020 10:57
question
Mathematics, 23.06.2020 10:57
question
History, 23.06.2020 10:57
question
Mathematics, 23.06.2020 10:57
question
Business, 23.06.2020 10:57
question
Mathematics, 23.06.2020 10:57
Questions on the website: 13722362