This document describes implementing the inverse power method to find the least eigenvalue of a matrix. It provides:
1) An objective to create an M-file to implement the inverse power method and check for convergence.
2) A brief theory section explaining that the inverse power method is similar to the power method but uses A^-1 instead of A to find the largest eigenvalue of A^-1, which corresponds to the smallest eigenvalue of A.
3) An M-file function that performs the inverse power method iterations, calculates the error at each step, and returns the least eigenvalue and corresponding eigenvector once the error converges below a tolerance.