Casio ClassPad II Custom Commands

nmeth (Program)

Command last updated 7/2/2023.

Download

nmeth(f, xa, n)

Applies Newton’s method for n iterations. Prints the details of each iteration and returns the coordinates following the n-th iteration.

Example

Find the number of iterations of Newton’s method, with an initial guess of \(x_0 = 1\), after which the \(x\)-value of the non-zero root of \(f(x) = \dfrac{x^3}{5} - \sqrt{x}\) is first approximated correct to 3 decimal places. (Sample Methods Exam 2 Section A Question 2)

nmeth(f(x), 1, 9)

Contributed by Nhan