Math, asked by loru8265, 9 months ago

Find square root of 3.24 using long devision method

Answers

Answered by rsingh625
8

The square root of 3.24 is 1.8. Or,

√3.24 = 1.8

Divide the number (3.24) by 2 to get the first guess for the square root .

First guess = 3.24/2 = 1.62.

Step 2:

Divide 3.24 by the previous result. d = 3.24/1.62 = 2.

Average this value (d) with that of step 1: (2 + 1.62)/2 = 1.81 (new guess).

Error = new guess - previous value = 1.62 - 1.81 = 0.19.

0.19 > 0.001. As error > accuracy, we repeat this step again.

Step 3:

Divide 3.24 by the previous result. d = 3.24/1.81 = 1.7900552486.

Average this value (d) with that of step 2: (1.7900552486 + 1.81)/2 = 1.8000276243 (new guess).

Error = new guess - previous value = 1.81 - 1.8000276243 = 0.0099723757.

0.0099723757 > 0.001. As error > accuracy, we repeat this step again.

Step 4:

Divide 3.24 by the previous result. d = 3.24/1.8000276243 = 1.7999723761.

Average this value (d) with that of step 3: (1.7999723761 + 1.8000276243)/2 = 1.8000000002 (new guess).

Error = new guess - previous value = 1.8000276243 - 1.8000000002 = 0.0000276241.

0.0000276241 <= 0.001. As error <= accuracy, we stop the iterations and use 1.8000000002 as the square root.

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

Similar questions