Skip to content

Bisection

Oscar Veliz edited this page May 21, 2022 · 5 revisions

Root Finding

Bisection video

The video for Bisection can be https://youtu.be/MlP_W-obuNg. Example code is given in the FalsePosition.c file, written in C, which compares Bisection Method against False Position Method. More information can be found here.

Solving Nonlinear Systems

Generalized Bisection video

The video for Generalized Bisection Method can be found here https://youtu.be/rMg61nfkZ3M. You can run the program online via repl.it. Code can also be found here. To run the program locally have Python installed (including numpy and matplotlib) then type python3 GeneralizedBisection.py. To create documentation use the command python -m pydoc -w GeneralizedBisection.

Reference links