Thread Closed

Cubic Root

 
Share Thread Thread Tools
Oct29-07, 01:26 PM   #1
 

Cubic Root


I still remember how to extract a square root without a computer but could somebody remind me the technique to find a cubic root just with the pencil and paper?
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Bird's playlist could signal mental strengths and weaknesses
>> Minus environment, patterns still emerge: Computational study tracks E. coli cells' regulatory mechanisms
>> Bacterium uses natural 'thermometer' to trigger diarrheal disease, scientists find
Oct29-07, 02:53 PM   #2
 
Recognitions:
Gold Membership Gold Member
Homework Helper Homework Help
Science Advisor Science Advisor
I would suggest using some Newton-Raphson scheme.

1. Let [tex]f(x)=x^{3}-a[/tex]
You are to find X so that f(X)=0.

2. Pick an initial value [tex]x_{0}\to{f}(x_{0})=x_{0}^{3}-a[/tex]

3. The equation for the tangent line L(x)=at [tex](x_{0},f(x_{0})[/tex] is given by:
[tex]L(x)=f(x_{0})+f'(x_{0})(x-x_{0})[/tex]

4- Let the next iteration point be the x-intercept of L(x):
[tex]L(x_{1})=0\to{x}_{1}=x_{0}-\frac{f(x_{0})}{f'(x_{0}}[/tex]

5. Or, in this case, the iterative scheme becomes:
[tex]x_{n}=x_{n-1}-\frac{x_{n-1}-\frac{a}{x_{n-1}^{2}}}{3}[/tex]
That is:
[tex]x_{n}=\frac{2x_{n-1}^{3}+a}{3x_{n-1}^{2}}, n\geq{1}[/tex]
Oct30-07, 12:06 AM   #3

Homework Helper 2012
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
I'm actually old enough to remember this. It's been somewhat wisely forgotten. http://www.nist.gov/dads/HTML/cubeRoot.html. You may wish to also check out the Isaac Asimov story, "The Feeling of Power". Kind of haunting, these days.
Oct30-07, 11:57 AM   #4
 

Cubic Root


Quote by Dick View Post
I'm actually old enough to remember this. It's been somewhat wisely forgotten. http://www.nist.gov/dads/HTML/cubeRoot.html. You may wish to also check out the Isaac Asimov story, "The Feeling of Power". Kind of haunting, these days.
Thanks, now it is coming back!!
Thread Closed
Thread Tools


Similar Threads for: Cubic Root
Thread Forum Replies
cubic formula? General Math 6
Getting Cubic Function Calculus & Beyond Homework 5
Calculating cubic ft/ min and PSI General Engineering 12
Solving a cubic (or rather simplifying a real root in complex form) Calculus & Beyond Homework 2
need proof that a cubic equation has at least one real root General Math 2