Finding a cube root of a number without using calculator .

  • Context: High School 
  • Thread starter Thread starter Emmanuel_Euler
  • Start date Start date
  • Tags Tags
    Calculator Cube Root
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 6K views
Emmanuel_Euler
Messages
142
Reaction score
11
HI EVERYONE
I was thinking if we could find a cube root without using a calculator.
square root was easy to find without calculator,but cube root i have no idea to find it.
any help??
for example(cube root of 3 or 2)
 
Mathematics news on Phys.org
finding a square root without using calculator.
 
A numerical recipe for calculating [itex]\sqrt[3]{a}[/itex]. Set [itex]x_{1}=\frac{a}{3}[/itex] and recursively calculate [itex]x_{n+1}=\frac{1}{3}(2x_{n}+\frac{a}{x_{n}^{2}})[/itex]. Stop when |xn+1 - xn| is "small enough".
 
  • Like
Likes   Reactions: Emmanuel_Euler
Thank you so much for help.