This repository contains Octave code for solving nonlinear equations using two classical numerical algorithms: Bisection Method and Newton's Method. It was submitted as part of Homework 5 for the MATG ...
The bisection method is the simplest of the root finding methods. When given this problem from scratch this is the method that most people come up with. We still have the question of how many times to ...
The bisection method, also known as the binary search method, uses a binary search to find the roots of a real-valued function. It works by narrowing down an interval where the square root lies until ...