How do you find the cubic root of n without using log keys?

In summary, the conversation discusses different methods for finding the cube root of a number on a pocket calculator without using the square root or log keys. The most efficient method is Newton's algorithm, which requires 7 operations per round. However, it is possible to adapt Babylon's method to the cube, which only requires 5 operations per round. The conversation also explores the idea of finding the cube root of a 9-digit number directly and discusses how these methods can be used to solve cubic functions. Finally, there is a discussion about a modification to Newton's formula and whether it has the same convergence as the original formula.
  • #1
logics
137
0
what is the quickest way to find [itex]\sqrt[3]{n}[/itex] [on a pocket calculator] whitout using any [itex]\sqrt{}[/itex] or log key?
 
Mathematics news on Phys.org
  • #2
If x is the cube root of a, then [itex]x^3= a[/itex] or [itex]x^3- a= 0[/itex].

Now use 'Newton's algorithm" to solve that equation- it is of the form f(x)= 0 so Newton's algorithm requires starting with some [itex]x_0[/itex] and the iterating [itex]x_{n+1}= x_n- f(x_n)/f'(x_n)[/itex].

In particular, with [itex]f(x)= x^3- a[/itex] [itex]f'(x)= 3x^2[/itex] so the algorithm becomes
[tex]x_{n+1}= x_n- \frac{x_n^3- a}{3x_n^2}= \frac{2x_n^3- a}{3x_n^2}[/tex]

The starting value, [itex]x_0[/itex] doesn't matter a great deal but probably something like a/3 would be good.
 
  • #3
HallsofIvy said:
Now use 'Newton's algorithm" to solve that equation-...

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?
 
  • #4
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?

How long on a calculator? Using the "ANS" button in your algorithm to continuously loop the algorithm and depending on how fast you can press the Enter button, 3-5 seconds seems like a good range.

Edit: 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):

[itex]\displaystyle\frac{2ANS^3-a}{3ANS^2}[/itex] and continuously press the Enter key and you will have your answer shortly.
 
Last edited:
  • #5
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):...

Is it possible to get a result without using the n³ key?

In junior school we used to find the cube root of a 6- or even 9-digit number such as [635³] without using a pencil. Is that trick generally known?
For example, can you find x = [itex]\sqrt[3]{377933067}[/itex] using only logics, knowing that n = x³ ?
 
Last edited:
  • #7
logics said:
....without using a pencil. Is that trick generally known?
can you find x = [itex]\sqrt[3]{377933067}[/itex] using only logics, knowing that n = x³ ?
TheDestroyer said:

Can you find 723 using no tool whatsoever? Only logics and your mind [knowing 2³...9³, of course]?
 
Last edited:
  • #8
logics said:
what is the quickest way to find [itex]\sqrt[3]{n}[/itex]
HallsofIvy said:
[tex]x_{n+1}= x_n- \frac{x_n^3- a}{3x_n^2}= \frac{2x_n^3- a}{3x_n^2}[/tex]
Newton's method requires 7 operations per round : [(2 * x * x * x) - a] : (3 * x * x)
Babylon [adapted] only 4 [x + (a : x * x)] : 2.
Can you find a method that requires only 3?
The starting value, [itex]x_0[/itex] doesn't matter a great deal but probably something like a/3 would be good.
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!
 
Last edited:
  • #9
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] ?
It depends on the algorithm you choose and on the staring value (x0)

As sar as I know, the best known algorithm would still be 'Babylon', if you adapt it to the cube: [itex]\frac{1}{3}\, \left(2x+\frac{a}{x²}\right)[/itex] as it requires 5 operations per round, but I started this thread to learn, one may find quicker methods that require less (3 or even 2) operations...
..as to (x0) If a = 7123456789³ [3.6147...^29] and if you are able, as you certainly are, to guess the first digit [7], you have to press 3 times Enter, which makes 15 operations, in about one second. If you make an error (x0 in the order 10^9 it will take 5 rounds, 2 seconds, and so on.

Being able to find directly the cube root of a 9-digit number is useful to solve [reduced] cubic funtions such as x³+x = 378,005.367: x = 72.3, or x³+8x = 377,354.667...
With pencil and paper one can solve in a few seconds cubic functions with 4/5-digit solution
 
Last edited by a moderator:
  • #10
scurty said:
[itex]\frac{2ANS^3 -a }{3ANS^2}[/itex] and ... press the Enter key.
(Just for future readers)
There is a typo there, the right formula is 2* ans³ + a.

I am remarking this only because it is interesting to note that the formula works all the same, in spite of the mistake, and with same convergence, and gives a negative result.
The point is that if you start, as you should, with a positive x0 you need more iterations, and you get the impression that the method is less powerful.
In reality it is as powerful as Babylon-adapted but requires more ops.

I have a question:
if we modify Newton's formula in a different way :
( ans³ +a) : 2 ans²
would you say this has the same quadratic convergence as Newton's?
 
Last edited:

1. How can I find the cubic root of a number without using log keys?

To find the cubic root of a number without using log keys, you can use the traditional method of repeated division. Divide the number by any number that you think might be close to the cubic root, then repeat the process with the result until you get a number that is very close to the cubic root. This method may take longer for larger numbers, but it is a reliable way to find the cubic root without using log keys.

2. Is there a faster way to find the cubic root of a number without using log keys?

Yes, there is a faster method called the "guess and check" method. It involves making an educated guess for the cubic root and then checking if the result is close enough to the actual cubic root. If it is not close enough, adjust your guess and repeat the process until you get a close enough result. This method is faster than repeated division, but it may require some trial and error.

3. Can I use a calculator to find the cubic root of a number without using log keys?

Yes, most calculators have a function for finding the cubic root of a number. However, if you want to find the cubic root without using log keys, you may need to use the "guess and check" method or repeated division manually on the calculator.

4. Why can't I just use log keys to find the cubic root of a number?

You can use log keys to find the cubic root of a number, but it may not be the most efficient method. Also, some people may not have access to a calculator or device with log keys, so it is helpful to know alternate methods for finding the cubic root.

5. Are there any other methods for finding the cubic root of a number without using log keys?

Yes, there are other methods such as the "prime factorization" method and the "decimal expansion" method. However, these methods may be more complex and require more mathematical knowledge. The "guess and check" and repeated division methods are the most commonly used for finding the cubic root without using log keys.

Similar threads

Replies
10
Views
1K
Replies
9
Views
1K
Replies
15
Views
2K
Replies
15
Views
1K
Replies
9
Views
2K
  • General Math
Replies
15
Views
2K
  • General Math
Replies
2
Views
1K
  • General Math
Replies
16
Views
3K
Replies
10
Views
2K
Replies
1
Views
832
Back
Top