Numerical Methods Library
Clear explanations, formulas, worked examples, and an interactive solver for every major numerical analysis algorithm. Bookmark this for your coursework.
Try the Interactive Solver — No Sign-in NeededRoot Finding
Newton-Raphson Method
The fastest root-finding method for smooth functions — converges quadratically when it works.
Bisection Method
The simplest, most reliable root-finding algorithm — slow but guaranteed to converge.
Secant Method
Newton-Raphson without the derivative — superlinear convergence using two starting points.
Fixed-Point Iteration
Solve f(x) = 0 by rearranging to x = g(x) — elegant but convergence depends on the rearrangement.
Approximation
Lagrange Interpolation
Construct the unique polynomial passing exactly through any set of data points.
Simpson's Rule
Approximate definite integrals by fitting parabolas — far more accurate than the Trapezoidal Rule.
Don't just read — experiment
NumericaLTI's interactive solver lets you visualize every step of each algorithm, compare convergence rates side-by-side, and export results for your assignments.