Nth root algorithm: Difference between revisions

Content deleted Content added
Manual approximation of the nth root of a positive number
move new text to nth root
Line 1:
The principal [[nth root|''n''th root]] <math>\sqrt[n]{A}</math> of a [[negative and positive numbers|positive]] [[real number]] ''A'', is the positive real solution of the equation
 
:<math>x^n = A</math>
Line 45:
leading to the general ''n''<sup>th</sup> root algorithm.
 
== MANUAL NTH ROOT APPROXIMATION METHOD ==
 
Approximation of the nth root of a positive number may be done with the following method:
 
<math>X<sup>1/n</sup> = (A+B)<sup>1/n</sup>= A<sup>1/n</sup>+ B/(n(A<sup>1/n</sup>)<sup>n-1</sup></math>
where A is the n expansion of a trial root, which is close to X, and B is the complement of A to complete X.
Example; find the 5th root of 34.
Solution; 2<sup>5</sup> = 32 hence; 34<sup>1/5</sup> = (32 + 2)<sup>1/5</sup> = 2 + 2/(5x16) = 2 + 0.025 =2.025
The error in the approximation is only about 0.06 %
[[Category:Root-finding algorithms]]