solve_root
Numerically find the root of an equation within a bracket using bisection. Input an expression, lower and upper bounds, and optional tolerance.
Instructions
Numerically solve f(x)=0 on a bracket using robust bisection.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lower | Yes | ||
| upper | Yes | ||
| tolerance | No | ||
| expression | Yes | ||
| maxIterations | No |