A blog about mathematics.
Finished Chapter 2: Linear Systems of Equations!

seen from United Kingdom
seen from China

seen from United States
seen from China
seen from Italy
seen from China

seen from United States
seen from United States

seen from United States

seen from United States

seen from Germany

seen from Poland
seen from United States
seen from United States
seen from Chile

seen from United States
seen from United States
seen from Brazil
seen from United States
seen from Pakistan
A blog about mathematics.
Finished Chapter 2: Linear Systems of Equations!
Illustrating the LU algorithm with pivots by example
Illustrating the LU algorithm with pivots by example
[mathjax]
[Click here for a PDF of this post with nicer formatting]
Two previous examples of LU factorizations were given. I found one more to be the key to understanding how to implement this as a matlab algorithm, required for our problem set.
A matrix that contains both pivots and elementary matrix operations is
\begin{equation}\label{eqn:luAlgorithm:20} M= \begin{bmatrix} 0 & 0 & 2 & 1 \\ & 0…
View On WordPress
Numerical LU example where pivoting is required
Numerical LU example where pivoting is required
[mathjax]
[Click here for a PDF of this post with nicer formatting]
I’m having trouble understanding how to apply the LU procedure where pivoting is required. Proceeding with such a factorization, doesn’t produce an LU factorization that is the product of a lower triangular matrix and an upper triangular matrix. What we get instead is what looks like a permutation of a lower triangular matrix…
View On WordPress
Numeric LU factorization example
Numeric LU factorization example
[mathjax]
[Click here for a PDF of this post with nicer formatting]
To get a better feel for LU factorization before attempting a numeric implementation, let’s look at a numeric example in detail. This will strip some of the abstraction away.
Let’s compute the LU factorization for
\begin{equation}\label{eqn:luExample:20} M = \begin{bmatrix} 5 & 1 & 1 \\ 2 & 3 & 4 \\ 3 & 1 & 2 \\ \end{bmatrix}. \e…
View On WordPress