Deriving the Cube Root Formula with Newton-Rhapson's Method

  • Thread starter Thread starter SherlockOhms
  • Start date Start date
  • Tags Tags
    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
2 replies · 2K views
SherlockOhms
Messages
309
Reaction score
0

Homework Statement



Derive cube root formula using Newton-Rhapson's method. x - y^3 = 0.

Homework Equations


xn + 1 = xn - f(xn)/f'(xn)


The Attempt at a Solution


I know that the solution is (2y + (x/y^2))/3
I tried using implicit differentiation and stuff but I can't get this out. Any tips?
 
Physics news on Phys.org
DAPOS said:

Homework Statement



Derive cube root formula using Newton-Rhapson's method. x - y^3 = 0.

Homework Equations


xn + 1 = xn - f(xn)/f'(xn)


The Attempt at a Solution


I know that the solution is (2y + (x/y^2))/3
I tried using implicit differentiation and stuff but I can't get this out. Any tips?

I think your use of x and y is confusing you. If you want the cube root of ##n## you might solve ##f(x) = x^3 - n## for its roots using your above formula. No implicit differentiation needed and you can switch the names of the variables at the end if you want to.
 
LCKurtz said:
I think your use of x and y is confusing you. If you want the cube root of ##n## you might solve ##f(x) = x^3 - n## for its roots using your above formula. No implicit differentiation needed and you can switch the names of the variables at the end if you want to.

So, differentiate "n" as a constant and "x^3" as normal? Thanks for that.