logics
- 137
- 0
what is the quickest way to find \sqrt[3]{n} [on a pocket calculator] whitout using any \sqrt{} or log key?
HallsofIvy said:Now use 'Newton's algorithm" to solve that equation-...
logics said:how long does that take to find the cube root of a 30-digit number, [on a 10-digit-display calculator] ?
isn't there any better and simpler way?
scurty said:Here is the formula you should use on your calculator. Type in your starting number and press the Enter button. Now type in (using Hall's formula):...
logics said:....without using a pencil. Is that trick generally known?
can you find x = \sqrt[3]{377933067} using only logics, knowing that n = x³ ?
TheDestroyer said:
logics said:what is the quickest way to find \sqrt[3]{n}
Newton's method requires 7 operations per round : [(2 * x * x * x) - a] : (3 * x * x)HallsofIvy said:x_{n+1}= x_n- \frac{x_n^3- a}{3x_n^2}= \frac{2x_n^3- a}{3x_n^2}
Why start with such a huge number?, if a is 377933067 a/3 is 125,977,689. Starting with this x0, it takes 38 rounds to get x, which means 266 operations!The starting value, x_0 doesn't matter a great deal but probably something like a/3 would be good.
It depends on the algorithm you choose and on the staring value (x0)Elsie93 said:http://www.infoocean.info/avatar2.jpg how long does that take to find the cube root of a 30-digit number, [on a 10-digit-display calculator] ?
(Just for future readers)scurty said:\frac{2ANS^3 -a }{3ANS^2} and ... press the Enter key.