This document summarizes lecture notes on Lagrange interpolation and Neville's method. It introduces Lagrange interpolation as a method for constructing a polynomial that exactly fits discrete data points. The key steps are: (1) defining Lagrange basis polynomials that are 1 at a data point and 0 at other points, allowing the interpolating polynomial to be written as a linear combination of these basis polynomials and the data values; (2) providing an example of using Lagrange interpolation to find a degree-3 polynomial fitting 4 data points. It then describes Neville's method, which recursively computes interpolating polynomials to allow adding new data points without recomputing everything.