Quiz Chapter 07: LU Decomposition Method

MULTIPLE CHOICE TEST

(All Tests)

LU DECOMPOSITION

(More on LU Decomposition)


Pick the most appropriate answer


1. LU decomposition method is computationally more efficient than Naïve Gauss elimination for solving

 
 
 
 

2. The lower triangular matrix \left[ L \right] in the \left[ L \right] \left[ U \right] decomposition of the matrix given below

      • \begin{bmatrix} 25&5&4 \\ 10&8&16 \\ 8&12&22 \\ \end{bmatrix} = \begin{bmatrix} 1&0&0 \\ l_{21}&1&0 \\ l_{31}&l_{32}&1 \\ \end{bmatrix} \begin{bmatrix} u_{11}&u_{12}&u_{13} \\ 0&u_{22}&u_{23} \\ 0&0&u_{33} \\ \end{bmatrix}

is

 
 
 
 

3. The upper triangular matrix \left[ U \right] in the \left[ L \right] \left[ U \right] decomposition of the matrix given below

      • \begin{bmatrix} 25&5&4 \\ 10&8&16 \\ 8&12&22 \\ \end{bmatrix} = \begin{bmatrix} 1&0&0 \\ l_{21}&1&0 \\ l_{31}&l_{32}&1 \\ \end{bmatrix} \begin{bmatrix} u_{11}&u_{12}&u_{13} \\ 0&u_{22}&u_{23} \\ 0&0&u_{33} \\ \end{bmatrix}

is

 
 
 
 

4. For a given 2000 \times 2000 matrix \left[ A \right], assume that it takes about 15 seconds to find the inverse of \left[ A \right] by the use of the \left[ L \right] \left[ U \right] decomposition method, that is, finding the \left[ L \right] \left[ U \right] once, and then doing forward substitution and back substitution 2000 times using the 2000 columns of the identity matrix as the right hand side vector. The approximate time, in seconds, that it will take to find the inverse if found by repeated use of Naïve Gauss Elimination method, that is, doing forward elimination and back substitution 2000 times by using the 2000 columns of the identity matrix as the right hand side vector is

 
 
 
 

5. The algorithm for solving the set of n equations \left[ A \right] \left[ X \right] = \left[ C \right], where \left[ A \right] = \left[ L \right] \left[ U \right] involves solving \left[ L \right] \left[ Z \right] = \left[ C \right] by forward substitution. The algorithm to solve \left[ L \right] \left[ Z \right] = \left[ C \right] is given by

 
 
 
 

6. To solve boundary value problems, the finite difference methods are used resulting in simultaneous linear equations with tridiagonal coefficient matrices. These are solved using the specialized [L][U] decomposition method. The set of equations in matrix form with a tridiagonal coefficient matrix for

      • \dfrac{d^{2}y}{dx^{2}} = 6x - 0.5x^{2}, \, y \left( 0 \right) = 0, \, y \left( 12 \right) = 0,

using the finite difference method with a second order accurate central divided difference method and a step size of h=4 is