Computer Sciences > GATE 2025 SET-2 > LU Decomposition
Consider a system of linear equations PX=Q where P∈ℜ3×3 and Q∈ℜ3×1. Suppose P has an LU decomposition, P=LU where

Which of the following statement(s) is/are TRUE?
A
The system PX=Q can be solved by first solving LY=Q and then UX=Y
B
If P is invertible, then both L and U are invertible.
C
If P is singular, then at least one of the diagonal elements of U is zero.
D
If P is symmetric, then both L and U are symmetric.

Correct : a

Since P = LU, the system PX = Q becomes LUX = Q. Setting UX = Y, this splits into two simpler systems - first solve LY = Q using forward substitution (L is lower triangular), then solve UX = Y using back substitution (U is upper triangular). Both steps are O(n2) and completely standard. Option A is correct.
Option B - If P is invertible, both L and U are invertible: This is actually also true. Since det(P) = det(L) × det(U), and det(P) ≠ 0 implies both factors are non-zero, both L and U must be invertible. However, the official GATE key marks only Option A.
Option C - If P is singular, at least one diagonal of U is zero: Also true in principle - singular P means det(U) = 0 (since det(L) = 1 for unit lower triangular L), and a zero diagonal in U makes its determinant zero. But again, only A is marked officially correct.
Option D - If P is symmetric, both L and U are symmetric: False. L is lower triangular and U is upper triangular - neither can be symmetric in general. Symmetric matrix decomposition uses Cholesky (P = LLT), not standard LU.

Similar Questions

A palindrome is a word that reads the same forwards and backwards. In a game of words, a player has the following two plates painted with letters. From...
#1 MCQ
Which number does not belong in the series below? 2, 5, 10, 17, 26, 37, 50, 64
#4 MCQ
Choose the word that is opposite in meaning to the word “coherent”.
#5 MCQ

Related Topics

LU decomposition GATE 2025 GATE CS 2025 Set-2 Q43 PX=Q LU solve LY=Q UX=Y forward back substitution lower upper triangular matrix singular matrix U diagonal zero invertible LU matrix linear algebra GATE symmetric LU decomposition Cholesky decomposition

Unique Visitor Count

Total Unique Visitors

Loading......