Alright, future engineers!
**Newton-Raphson:** An iterative method to find roots (zeros) of a function.
Formula: `x_new = x_old - f(x_old) / f'(x_old)`
Pro-Tip: A good initial guess is CRUCIAL for fast convergence!

#NumericalMethods #RootFinding #STEM #StudyNotes