logics
- 137
- 0
what is the quickest way to find \sqrt[3]{n} [on a pocket calculator] whitout using any \sqrt{} or log key?
The discussion revolves around methods for calculating the cubic root of a number \( n \) without using logarithmic or square root functions on a pocket calculator. Participants explore various algorithms, particularly Newton's method and adaptations of Babylonian methods, while considering the efficiency and speed of these calculations.
Participants express differing opinions on the best method for calculating cube roots, with no consensus on a single approach. There are multiple competing views regarding the efficiency and practicality of the proposed algorithms.
Participants highlight the dependence on the choice of starting value and the specific algorithm used, which affects the number of operations and the speed of convergence. There are also unresolved questions about the convergence properties of modified formulas.
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.