In the LU decomposition of the matrix [[2, 2], [4, 9]], if the diagonal elements of U are both 1, then the lower diagonal entry l_21 of L is ___________.

GATE 2015 · Engineering Mathematics · Matrix · medium

Answer: l_22 = 5 (the lower diagonal entry of L is 5)

  1. Set up matrix product L * U = A: Expanding: (1,1): l_11*1 = 2 => l_11 = 2. (1,2): l_11*u_12 = 2 => 2*u_12 = 2 => u_12 = 1.
  2. Solve for l_21 from (2,1) entry: Wait: (2,1) entry of L*U = l_21*1 + l_22*0 = l_21 = 4. But we need to check (2,2): l_21*u_12 + l_22*1 = 9 => 4*1 + l_22 = 9 => l_22 = 5.
  3. Re-examine: matrix is [[2,2],[4,9]] and l_21 computation: From (1,1): l_11 = 2. From (1,2): 2*u_12 = 2, so u_12 = 1. From (2,1): l_21 = 4. From (2,2): l_21*1 + l_22 = 9, so 4 + l_22 = 9, l_22 = 5. The question asks for the lower diagonal entry l_21 of L. Here l_21 = 4, but l_22 (also a diagonal entry of L) = 5. The answer is 5, meaning the question asks for l_22, i.e., the (2,2) entry of L.