TypeScript
TypeScript copied to clipboard
feat(maths): add bisection method
This PR adds the Bisection Method to the maths module.
Changes:
- Added
bisectionfunction to solve equations of the formf(x) = 0. - Created tests for the new function.
Issue Reference:
Closes #10
Notes:
- The bisection method finds roots by repeatedly halving the interval.