This document discusses the Newton-Raphson method, an iterative method for finding the roots of a function. It provides the algorithm for the Newton-Raphson method, beginning with an initial guess that is improved upon in each step by using the tangent line of the function to get closer to the root. The document also includes source code in C that implements the secant method, another root-finding algorithm, to find the root of the function f(x) = xlog10(x) - 1.2.