Casio ClassPad II Custom Commands

bmeth (Program)

Command last updated 7/2/2023.

Download

bmeth(f, xl, xh, n)

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

Example

Find the \(x\)-value for a root of \(\sin(x)\) estimated by the bisection method, with an initial range of \([3, 5]\), after 2 iterations.

bmeth(sin(x), 3, 5, 2)

Contributed by Nhan