Newton's Method: An iterative technique for finding roots of a function using tangent lines, requiring computation of derivatives. The update formula is $x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}$.
Root-Finding Algorithm: Any algorithm used to find solutions (roots) where a function equals zero.
Derivative: A measure of how a function changes as its input changes; it represents an instantaneous rate of change.