root_find_newton
Find roots of mathematical functions using Newton's method by providing the function, its derivative, and an initial guess to compute solutions.
Instructions
Find root of a function using Newton's method (fast but requires derivative) (Domain: calculus, Category: general)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| func | Yes | ||
| fprime | Yes | ||
| x0 | Yes | ||
| tol | No | ||
| max_iter | No |