Solving Math Problems without a Calculator

  • Context: High School 
  • Thread starter Thread starter Ephratah7
  • Start date Start date
  • Tags Tags
    Calculator
Click For Summary

Discussion Overview

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.

Discussion Character

  • Exploratory
  • Technical explanation
  • Mathematical reasoning
  • Debate/contested

Main Points Raised

  • One participant suggests starting with a value close to the square root and refining it through division, leading to an approximation of 12.247.
  • Another participant proposes that the method described resembles Newton's method, which is used for finding roots of equations.
  • Some participants argue that the method could be interpreted as the bisection method, while others contend that bisection converges more slowly than Newton's method.
  • A participant discusses the implications of using midpoints in Newton's method and questions whether it enhances convergence.
  • Another contribution suggests an alternative approach involving partial derivatives and iterative refinement for better approximations.
  • One participant mentions using prime factorization to simplify the calculation of square roots.
  • There is a discussion about the efficiency of operations involved in different methods, with some arguing that Newton's method is quicker due to its reliance on fractions.

Areas of Agreement / Disagreement

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.

Contextual Notes

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.

Ephratah7
Messages
68
Reaction score
0
:smile:
What is the easiest way to solve "the square root of 150" etc.. without using calculator?

 
Mathematics news on Phys.org
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.
 
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.

It sounds like the bisection method to me.
http://en.wikipedia.org/wiki/Bisection_method
 
gel said:
No, bisection is much slower to converge.

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.

Using the mid point helps to ensure convergence but I'm not sure it is [a good idea since. Consider the problem of finding a \Delta:

in

(Y_o + \Delta )^2=X (1)
expanding:
Y_o^2+2Y_o \Delta + \Delta^2=X (2)

Now if neglect \Delta^2 (3)

and solve for \Delta we get what is equivalent to Newtons method.

\Delta= \frac{X-Y_o^2}{2Y_o} (4)

Notice though that the ratio of \Delta to \Delta^2 increases as delta gets small. This makes me wonder if Newtons method accelerates in convergence (for finding square roots) when \Delta gets small.
 
Last edited:
Some more interesting thoughts. A better approximation then neglecting \Delta^2 would be to write equation (2) as:

Y_o^2+(2Y_o+\Delta)\Delta=X (5)

\Delta=\frac{X-Y_o^2}{2Y_o+\Delta} (6)

Now I wonder if it is worth while to iterate the above expression. If we do so algebraically we could get a higher order root finding method. If we do so numerically, it allows us to reduce the amount of carry operations that we need to do.

For instance. Say the above expression is comparable to Newtons method for the rate of convergence. Then we can pick a Y_o to start with. When \Delta is computed to a large number of significant digits. We just add Y_o to delta to get a new Y_o and then search for a new value of Delta and so on.
 
Last edited:
Hal's "method" is indeed a Newton-Raphson search, for this particular problem of solving

F(x) = x^2 - A = 0

If you have'nt seen it before, the reulting NR iteration process results to a conveinent computation scheme:

x_{\nu+1} = x_{\nu}-\frac{F(x_{\nu})}{F'(x_{\nu})}

with

F'(x_{\nu}) = 2x_{\nu}

the RHS reduces to

x_{\nu+1} = x_{\nu}-\frac{x_{\nu}^2-A}{2x_{\nu}} = \frac{1}{2}(x_{\nu}+\frac{A}{x_{\nu}})

The "trick" here is to reconize the simple, but effective, starting point Xo=12. With this choice, the number of required iterations to reach the stated level of convergence (3 decimals) is quite small when compared to other methods.
 
...Thanks, guys.
 
  • #10
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

I said
Those who are aware of Newton's method should recognize that as Newton's method applied to the equation f(x)= x2- 150= 0.
 
  • #11
"Euclid alone has looked on beauty bare"
 
  • #12
because i thought it was appropriate, there is even a better approximator than Newtons method.

we have x^2 = 150
an educated guess would be to choose x = 12

transform the eqn, x^2 = xy = 150, just as the poster did above. then y = 12.5 if x = 12

now, take the partial derivative of xy = z, in respect to x, which is y = (dz/dx), and evaluate at y = 12.5, and multiply this number by x = 12. Now, take the partial derivative in respect to y and evaluate at x = 12. x = (dz/dy) = 12, and multiply this number by y = 12.5. Now sum these two terms and divide by the the sum of (dz/dx) and (dz/dy).

it should look like,

(12(12.5) + 12.5(12))/(12 + 12.5) = 300/(24.5) = 12.24

and now make this number equal to x, and reiterate.

in general, if you have a function f(x) = 0, make an educated guess for x (this is b), and transform the function into g(x,y)= 0, and solve for y (this is c) when x = b (educated guess).

a good approximation operator would be:

{c(dg/dy) + b(dg/dx)}/{(dg/dy) + (dg/dx)}

where (dg/dy) and (dg/dx) are evaluated at x=b, and y=c

follow?
 
  • #13
This might look noobish

But it makes things easier, you could just use prime factorization and reach easier numbers.

(150)^0.5=(5*3*5*2)^0.5=5*(6)^0.5 or 5*(3)^0.5*(2)^0.5

Now all you have to do is remember the square root of 2 and 3.
 
  • #14
Which I actually do to 8 decimal places, lol. Yes, I have no life :( But either way, In terms of operations (multiplying two 9 digit terms is not that quick), Newtons method is probably still quick, because the whole time it is operated in fractions.

As for mathis314, all you are doing is taking the linear part of the taylor series, which is quite a bit harder than Newtons method. And You can not improve your approximations easily with that method, with Newtons method you can.
 
  • #15
THanks for the information.
 

Similar threads

  • · Replies 15 ·
Replies
15
Views
2K
  • · Replies 7 ·
Replies
7
Views
3K
Replies
1
Views
2K
  • · Replies 22 ·
Replies
22
Views
3K
  • · Replies 16 ·
Replies
16
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
5
Views
2K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 10 ·
Replies
10
Views
3K