-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# VIDEOS FOR CHAPTER 2 | ||
|
||
[Elementary Matrix Operations]([https://www.youtube.com/watch?v=27h1lN6Lx1I]) This video describes elementary matrix (row/column) operations with illustrated examples.. | ||
|
||
[Solution of Upper-/Lower Triangular System of Linear Equations](https://www.youtube.com/watch?v=OD53a2GlTyU) This video describes forward and backward substitution algorithms, using 4 x 4 upper- and lower-triangular system of linear equations. | ||
|
||
[Matrix Inversion using the Gauss-Jordan Method] (https://www.youtube.com/watch?v=3qlvkEkMKYU) This video illustrates the matrix inversion of a 4x4 matrix using the Gauss-Jordan Method. | ||
|
||
[Naive Gauss Elimination & Gauss Jordan Methods] (https://www.youtube.com/watch?v=bD7kEly3nwU) In this video lecture, the general procedure for solving systems of linear equations with naive Gauss elimination is presented. A numerical example involving a four-by-four system of linear equations is used to illustrate the Gauss Elimination and Gauss Jordan methods. | ||
|
||
[Gauss Elimination with Partial Pivoting] (https://www.youtube.com/watch?v=Rbw24G9HQec) This lecture video covers the solution of system of linear equations using the direct method of Gauss Elimination with Partial Pivoting. A system of four by four equations is used to illustrate the step by step solution procedure. | ||
|
||
[Ill-Conditioned Linear Systems and Ill-Conditioned Matrices] (https://www.youtube.com/watch?v=D6Zp9XIJ8Do) Norms of the vectors and matrices are covered. Types of condition numbers and estimation tools are presented. Ill-Conditioned matrices and linear systems are illustrated with examples. | ||
|
||
[Decomposition Methods, The Doolittle Algorithm] (https://www.youtube.com/watch?v=iZ8jWcekSPw) This video discusses Doolittle LU Decomposition algorithm with its benefits and drawbacks. The method is explained using a numerical example. | ||
|
||
[Decomposition Methods, The Cholesky Decomposition] (https://www.youtube.com/watch?v=5QL1Hx5WXUQ) This video covers Cholesky Decomposition (or Cholesky Factorization) method and includes a numerical example. | ||
|
||
[Thomas Algorithm For Tridiagonal Systems and Tridiagonal Matrix Decomposition Algorithms] (https://www.youtube.com/watch?v=1HjbCWQKYjk) This video covers the Thomas Algorithm for solving a tridiagonal system of equations. A numerical example that illustrates how the Thomas algorithm works is presented. The LU decomposition of non-symmetric as well as Cholesky decomposition of tridiagonal systems are covered. |