**Bisection Method:** Finds roots of `f(x)=0` by repeatedly halving an interval where `f(x)` changes sign.
Ex: If `f(a)f(b)<0`, a root lies between `a` and `b`.
Pro-Tip: Guaranteed to converge (slowly!) if a root exists in your initial bracket – very robust!
#NumericalMethods #RootFinding #STEM #StudyNotes