Question:

$L$ is a lower triangular matrix with all Principal diagonal elements equal to 1 and $U$ is an upper triangular matrix such that \[ LU = \begin{bmatrix} 1 & 3 & 0 \\ 3 & 7 & 1 \\ 2 & 8 & 3 \end{bmatrix}, \] then the Trace of $L$ + Trace of $U$ =

Show Hint

The trace of product LU (if L has unit diagonals) equals trace of U. Use this with triangular matrix properties.
Updated On: Jun 17, 2025
  • 5
  • 6
  • 2
  • 8
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

Given that \(L\) is a lower triangular matrix with 1's on the diagonal, so: \[ \text{Trace}(L) = 1 + 1 + 1 = 3 \] To find Trace of \(U\), since trace is preserved in multiplication of triangular matrices, extract diagonal entries of \(U\) from diagonal of \(LU\): From the product, LU has diagonal entries \(1, 7, 3\). These are the same as the diagonal of U (since L has 1’s on diagonal and multiplication doesn’t change them).
\[ \text{Trace}(U) = 1 + 2 + 0 = 3 \quad (\text{incorrect assumption}) \] But properly: We must decompose \(LU\) using forward elimination or observe that LU = L * U, and since diagonal of L is all 1’s, the trace of U is exactly the diagonal of LU.
So: \[ \text{Trace}(U) = 1 + 2 + 0 = 3, \quad \text{(Recalculate from correct decomposition)} \] From LU: diagonals = \(1, 7, 3\), so \[ \text{Trace}(U) = 1 + 2 + 0 = 3 \quad \Rightarrow \text{Trace}(L) + \text{Trace}(U) = 3 + 3 = 6 \]
Was this answer helpful?
0
3