This document summarizes two iterative methods for solving linear equation systems: Thomas method and Cholesky decomposition. Thomas method uses LU factorization to solve tridiagonal matrices. Cholesky decomposition can solve symmetric and positive definite matrices by finding the lower triangular matrix L such that A = LLT. The document provides examples of applying each method to sample matrices to illustrate how they work.