Root Finding

Bisection Method

Taking advantage of IVT to be confident that there is a within two intervals. However, this method can be very slow.

Example: Find the root of .

  1. Choose the interval , which works since and .
    1. We check the midpoint and find that . Since , so we know the root lies between .
  2. Repeat this process as many times as needed, setting the new bounds.

Newton’s Method

Super powerful method presented by Isaac Newton.

We use the iterative formula, given by:

Some Exceptions to Newton's Method

Doesn’t work when:

  • isn’t continuous at the root
  • at the root
  • is infinte at the root