Ephratah7
- 68
- 0
What is the easiest way to solve "the square root of 150" etc.. without using calculator?
The discussion revolves around methods for solving square roots, specifically the square root of 150, without the use of a calculator. Participants explore various mathematical techniques, including Newton's method and alternative approximation strategies, while debating their effectiveness and efficiency.
Participants express differing views on the methods discussed, particularly regarding the classification of the techniques as Newton's method or bisection method. There is no consensus on which method is superior, and the discussion remains unresolved regarding the best approach for approximating square roots without a calculator.
Some methods discussed depend on specific assumptions about the initial values chosen and the convergence properties of the techniques. The effectiveness of the proposed methods may vary based on the context of their application.
HallsofIvy said:Perhaps not a simple to calculate but easier to remember:
Choose some "starting" value that is close to the square root. Since 122= 144 is close to 150, let's start with 12. 150/12= 12.5 (and I didn't use a calculator to do that!) Notice that says 12(12.5)= 150. If x2= 150, x must be between 12 and 12.5. Just because it is easy, let take half way between: 12.25. Now 150/12.25= 12.249 (To 3 decimal places. If you want more accuracy, just keep going- but you are going to wish you could use a calculator!). Again, the square root of 150 must be between 12.25 and 12.49. Halfway between is 12.247. 150/12.247= 12.247 again, to 3 decimal places. Since that is the same as the previous number, the square root of 150, to 3 decimal places, is 12.247.
If you want more accuracy, just keep going.
Those who are aware of Newton's method should recognize that as Newton's method applied to the equation f(x)= x2- 150= 0.
John Creighto said:It sounds like the bisection method to me.
http://en.wikipedia.org/wiki/Bisection_method
gel said:No, bisection is much slower to converge.
John Creighto said:Sorry I saw the above poster taking a midpoint and thought he was using a bisection method. To me the above method is Newton–Raphson method, while from what I learned Newtons method does not look for a mid point as an intermediate step.
TheoMcCloskey said:Hal's "method" is indeed a Newton-Raphson search, for this particular problem of solving
F(x) = x^2 - A = 0
Those who are aware of Newton's method should recognize that as Newton's method applied to the equation f(x)= x2- 150= 0.