Math, asked by kumarsudip343parra5, 1 year ago

Find the squar of 0.41

Answers

Answered by rommieroy
5
the ans is 16.81......

rommieroy: plsss mark it as brainliest
rommieroy: sry na answer will be 0.1681
Answered by chAnjani
1
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 (0.41) by 2 to get the first guess for the square root .
 First guess = 0.41/2 = 0.205.Step 2:
 Divide 0.41 by the previous result. d = 0.41/0.205 = 2.
 Average this value (d) with that of step 1: (2 + 0.205)/2 = 1.1025 (new guess).
 Error = new guess - previous value = 0.205 - 1.1025 = 0.8975.
 0.8975 > 0.001. As error > accuracy, we repeat this step again.Step 3:
 Divide 0.41 by the previous result. d = 0.41/1.1025 = 0.3718820862.
 Average this value (d) with that of step 2: (0.3718820862 + 1.1025)/2 = 0.7371910431 (new guess).
 Error = new guess - previous value = 1.1025 - 0.7371910431 = 0.3653089569.
 0.3653089569 > 0.001. As error > accuracy, we repeat this step again.Step 4:
 Divide 0.41 by the previous result. d = 0.41/0.7371910431 = 0.5561651947.
 Average this value (d) with that of step 3: (0.5561651947 + 0.7371910431)/2 = 0.6466781189 (new guess).
 Error = new guess - previous value = 0.7371910431 - 0.6466781189 = 0.0905129242.
 0.0905129242 > 0.001. As error > accuracy, we repeat this step again.Step 5:
 Divide 0.41 by the previous result. d = 0.41/0.6466781189 = 0.6340093905.
 Average this value (d) with that of step 4: (0.6340093905 + 0.6466781189)/2 = 0.6403437547 (new guess).
 Error = new guess - previous value = 0.6466781189 - 0.6403437547 = 0.0063343642.
 0.0063343642 > 0.001. As error > accuracy, we repeat this step again.Step 6:
 Divide 0.41 by the previous result. d = 0.41/0.6403437547 = 0.6402810943.
 Average this value (d) with that of step 5: (0.6402810943 + 0.6403437547)/2 = 0.6403124245 (new guess).
 Error = new guess - previous value = 0.6403437547 - 0.6403124245 = 0.0000313302.
 0.0000313302 <= 0.001. As error <= accuracy, we stop the iterations and use 0.6403124245 as the square root.

So, we can say that the square root of 0.41 is 0.6403 with an error smaller than 0.001 (in fact the error is 0.0000313302). this means that the first 4 decimal places are correct. Just to compare, the returned value by using the javascript function 'Math.sqrt(0.41)' is 0.6403124237432849.

Note: There are other ways to calculate square roots. This is only one of them.

Similar questions