edited by
11,741 views
32 votes
32 votes
In the LU decomposition of the matrix $\begin{bmatrix}2 & 2 \\ 4 & 9\end{bmatrix}$, if the diagonal elements of $U$ are both $1$, then the lower diagonal entry $l_{22}$ of $L$ is_________________.
edited by

5 Answers

0 votes
0 votes

Already, nice answers are given – mostly using $A=LDU$ decomposition.

But I guess we can directly decompose $A=LU$ such that diagonal elements $U$ are $1$.

Given : A = $\begin{bmatrix} 2 &2 \\ 4 &9 \end{bmatrix}$

On applying $R_1 \leftarrow R_1 \div 2$

$\begin{bmatrix} 1 &1 \\ 4 &9 \end{bmatrix} = \begin{bmatrix} \frac{1}{2} &0 \\ 0 &1 \end{bmatrix} \begin{bmatrix} 2 &2 \\ 4 &9 \end{bmatrix}$

So, here elimination matrix $E_{11}$ is $\begin{bmatrix} \frac{1}{2} &0 \\ 0 &1 \end{bmatrix}$

$E_{11}A = \begin{bmatrix} 1 &1 \\ 4 &9 \end{bmatrix}$

On applying $R_2 \leftarrow R_2 - 4R_1$

$\begin{bmatrix} 1 &1 \\ 0 &5 \end{bmatrix} = \begin{bmatrix} 1 &0 \\ -4 &1 \end{bmatrix} \begin{bmatrix} 1 &1 \\ 4 &9 \end{bmatrix}$

So, here elimination matrix $E_{21}$ is $\begin{bmatrix} 1 &0 \\ -4 &1 \end{bmatrix}$

$E_{21}E_{11}A = \begin{bmatrix} 1 &1 \\ 0 &5 \end{bmatrix}$

On applying $R_2 \leftarrow R_2 \div 5$

$\begin{bmatrix} 1 &1 \\ 0 &1 \end{bmatrix} = \begin{bmatrix} 1 &0 \\ 0 &\frac{1}{5} \end{bmatrix} \begin{bmatrix} 1 &1 \\ 0 &5 \end{bmatrix}$

So, here elimination matrix $E_{22}$ is $\begin{bmatrix} 1 &0 \\ 0 &\frac{1}{5} \end{bmatrix}$

$\therefore E_{22}E_{21}E_{11}A = \begin{bmatrix} 1 &1 \\ 0 &1 \end{bmatrix} = U$

$\therefore A = \left( E_{11}^{-1}E_{21}^{-1}E_{22}^{-1} \right)U$

$\therefore A = \left( \begin{bmatrix} \frac{1}{2} &0 \\ 0 &1 \end{bmatrix}^{-1}\begin{bmatrix} 1 &0 \\ -4 &1 \end{bmatrix}^{-1}\begin{bmatrix} 1 &0 \\ 0 &\frac{1}{5} \end{bmatrix}^{-1} \right)U$

$\therefore A = \left( \begin{bmatrix} 2 &0 \\ 0 &1 \end{bmatrix} \begin{bmatrix} 1 &0 \\ 4 &1 \end{bmatrix} \begin{bmatrix} 1 &0 \\ 0 &5 \end{bmatrix} \right)U$

$\therefore A = \begin{bmatrix} 2 &0 \\ 4 &5 \end{bmatrix} U = LU$


The elimination matrices that we got are of the form – 

$E_{11} = \begin{bmatrix} \frac{1}{d_1} &0 \\ 0 &1 \end{bmatrix}, E_{21} = \begin{bmatrix} 1 &0 \\ -l_{21} &1 \end{bmatrix} \text{ and } E_{22} = \begin{bmatrix} 1 &0 \\ 0 &\frac{1}{d_2} \end{bmatrix}$

$E_{11}^{-1} = \begin{bmatrix} d_1 &0 \\ 0 &1 \end{bmatrix}, E_{21}^{-1} = \begin{bmatrix} 1 &0 \\ l_{21} &1 \end{bmatrix} \text{ and } E_{22}^{-1} = \begin{bmatrix} 1 &0 \\ 0 &d_2 \end{bmatrix}$

$L = E_{11}^{-1}E_{21}^{-1}E_{22}^{-1} = \begin{bmatrix} d_1 &0 \\ 0 &1 \end{bmatrix} \begin{bmatrix} 1 &0 \\ l_{21} &1 \end{bmatrix} \begin{bmatrix} 1 &0 \\ 0 &d{2} \end{bmatrix} = \begin{bmatrix} d_1 &0 \\ l_{21} &d_2 \end{bmatrix}$

From here we can conclude, we can directly fill elements of $L$ based on what row operation we performed.

reshown by
Answer:

Related questions

35 votes
35 votes
4 answers
2
18 votes
18 votes
5 answers
3
Arjun asked Feb 18, 2021
15,718 views
Consider the following matrix.$$\begin{pmatrix} 0 & 1 & 1 & 1\\ 1& 0& 1 & 1\\ 1& 1 & 0 & 1 \\1 & 1 & 1 & 0 \end{pmatrix}$$The largest eigenvalue of the above matrix is __...
47 votes
47 votes
14 answers
4
Arjun asked Feb 18, 2021
18,742 views
Suppose that $P$ is a $4 \times 5$ matrix such that every solution of the equation $\text{Px=0}$ is a scalar multiple of $\begin{bmatrix} 2 & 5 & 4 &3 & 1 \end{bmatrix}^T...