what is sq root of 4.75 till 6 decimal places?
student6389:
hiii
Answers
Answered by
0
Hey there! Here is your answer.
2.179449
Hope this answer will help you!
Plz mark as brainliest
#Be Brainly✌️
@Astudent
2.179449
Hope this answer will help you!
Plz mark as brainliest
#Be Brainly✌️
@Astudent
Answered by
0
In this case we are going to use the 'Babylonian Method' to get the square root of any positive number.
We must set an error for the final result. Say, smaller than 0.001. In other words we will try to find the square root value with at least 2 correct decimal places.
Step 1:
Divide the number (4.75) by 2 to get the first guess for the square root .
First guess = 4.75/2 = 2.375.
Step 2:
Divide 4.75 by the previous result. d = 4.75/2.375 = 2.
Average this value (d) with that of step 1: (2 + 2.375)/2 = 2.1875 (new guess).
Error = new guess - previous value = 2.375 - 2.1875 = 0.1875.
0.1875 > 0.001. As error > accuracy, we repeat this step again.
Step 3:
Divide 4.75 by the previous result. d = 4.75/2.1875 = 2.1714285714.
Average this value (d) with that of step 2: (2.1714285714 + 2.1875)/2 = 2.1794642857(new guess).
Error = new guess - previous value = 2.1875 - 2.1794642857 = 0.0080357143.
0.0080357143 > 0.001. As error > accuracy, we repeat this step again.
Step 4:
Divide 4.75 by the previous result. d = 4.75/2.1794642857 = 2.1794346579.
Average this value (d) with that of step 3: (2.1794346579 + 2.1794642857)/2 = 2.1794494718 (new guess).
Error = new guess - previous value = 2.1794642857 - 2.1794494718 = 0.0000148139.
0.0000148139 <= 0.001. As error <= accuracy, we stop the iterations and use 2.1794494718 as the square root.
So, we can say that the square root of 4.75 is 2.1794 with an error smaller than 0.001 (in fact the error is 0.0000148139). this means that the first 4 decimal places are correct. Just to compare, the returned value by using the javascript function 'Math.sqrt(4.75)' is 2.179449471770337.
Note: There are other ways to calculate square roots. This is only one of them.
2.179449
✌️❤️
We must set an error for the final result. Say, smaller than 0.001. In other words we will try to find the square root value with at least 2 correct decimal places.
Step 1:
Divide the number (4.75) by 2 to get the first guess for the square root .
First guess = 4.75/2 = 2.375.
Step 2:
Divide 4.75 by the previous result. d = 4.75/2.375 = 2.
Average this value (d) with that of step 1: (2 + 2.375)/2 = 2.1875 (new guess).
Error = new guess - previous value = 2.375 - 2.1875 = 0.1875.
0.1875 > 0.001. As error > accuracy, we repeat this step again.
Step 3:
Divide 4.75 by the previous result. d = 4.75/2.1875 = 2.1714285714.
Average this value (d) with that of step 2: (2.1714285714 + 2.1875)/2 = 2.1794642857(new guess).
Error = new guess - previous value = 2.1875 - 2.1794642857 = 0.0080357143.
0.0080357143 > 0.001. As error > accuracy, we repeat this step again.
Step 4:
Divide 4.75 by the previous result. d = 4.75/2.1794642857 = 2.1794346579.
Average this value (d) with that of step 3: (2.1794346579 + 2.1794642857)/2 = 2.1794494718 (new guess).
Error = new guess - previous value = 2.1794642857 - 2.1794494718 = 0.0000148139.
0.0000148139 <= 0.001. As error <= accuracy, we stop the iterations and use 2.1794494718 as the square root.
So, we can say that the square root of 4.75 is 2.1794 with an error smaller than 0.001 (in fact the error is 0.0000148139). this means that the first 4 decimal places are correct. Just to compare, the returned value by using the javascript function 'Math.sqrt(4.75)' is 2.179449471770337.
Note: There are other ways to calculate square roots. This is only one of them.
2.179449
✌️❤️
Similar questions