Mathematics

Linear Algebra

449 Questions

Linear algebra involves the study of matrices, vectors, and linear transformations. Common topics include finding the rank of a matrix, calculating eigenvalues and eigenvectors, and performing LU decomposition. These advanced mathematical concepts are frequently tested in engineering, statistics, and civil service examinations.

Matrix rank calculationLU decompositionEigenvalues and eigenvectorsMatrix invertibilityDeterminant properties

Linear Algebra Questions

Multiple choice

What is the trace of the matrix (E = \begin{bmatrix} 5 & 2 \ 3 & -1 \end{bmatrix})?

  1. 4

  2. 2

  3. 0

  4. -2

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The trace of a matrix is the sum of its diagonal elements. In this case, the trace of (E) is (5 + (-1) = 4).

Multiple choice

If (F) is a square matrix and (F^T = -F), then which of the following statements is true?

  1. All eigenvalues of \(F\) are zero.
  2. All eigenvalues of \(F\) are non-zero.
  3. The determinant of \(F\) is zero.
  4. The trace of \(F\) is zero.
Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

If (F^T = -F), then the determinant of (F) must be zero, as the determinant of a matrix is equal to the product of its eigenvalues.

Multiple choice

Which of the following matrices is an orthogonal matrix?

  1. \begin{bmatrix} \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} \ \frac{1}{\sqrt{2}} & -\frac{1}{\sqrt{2}} \end{bmatrix}

  2. \begin{bmatrix} \frac{1}{\sqrt{3}} & \frac{1}{\sqrt{3}} & \frac{1}{\sqrt{3}} \ \frac{1}{\sqrt{3}} & \frac{1}{\sqrt{3}} & -\frac{1}{\sqrt{3}} \ \frac{1}{\sqrt{3}} & -\frac{1}{\sqrt{3}} & \frac{1}{\sqrt{3}} \end{bmatrix}

  3. \begin{bmatrix} 0 & 1 \ 1 & 0 \end{bmatrix}

  4. \begin{bmatrix} 1 & 0 \ 0 & -1 \end{bmatrix}

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

An orthogonal matrix is a square matrix whose inverse is equal to its transpose. In this case, only (\begin{bmatrix} \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} \ \frac{1}{\sqrt{2}} & -\frac{1}{\sqrt{2}} \end{bmatrix}) is orthogonal.

Multiple choice

What is the null space of the matrix (G = \begin{bmatrix} 1 & 2 \ 3 & 4 \end{bmatrix})?

  1. The set of all vectors \(x\) such that \(Gx = 0\).
  2. The set of all vectors \(x\) such that \(xG = 0\).
  3. The set of all vectors \(x\) such that \(G^Tx = 0\).
  4. The set of all vectors \(x\) such that \(x^TG = 0\).
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The null space of a matrix is the set of all vectors that, when multiplied by the matrix, result in the zero vector.

Multiple choice

Which of the following matrices is a diagonalizable matrix?

  1. \begin{bmatrix} 1 & 2 \ 3 & 4 \end{bmatrix}

  2. \begin{bmatrix} 1 & 0 \ 0 & 2 \end{bmatrix}

  3. \begin{bmatrix} 1 & 2 \ 2 & 1 \end{bmatrix}

  4. \begin{bmatrix} 1 & 2 \ 3 & 6 \end{bmatrix}

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A diagonalizable matrix is a square matrix that can be expressed as a product of two matrices, one of which is a diagonal matrix. In this case, only (\begin{bmatrix} 1 & 0 \ 0 & 2 \end{bmatrix}) is diagonalizable.

Multiple choice

What is the characteristic polynomial of the matrix (H = \begin{bmatrix} 2 & 3 \ -1 & 2 \end{bmatrix})?

  1. \(x^2 - 4x + 7\)
  2. \(x^2 - 3x + 2\)
  3. \(x^2 + 4x + 7\)
  4. \(x^2 + 3x + 2\)
Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The characteristic polynomial of a matrix is a polynomial whose roots are the eigenvalues of the matrix. In this case, the characteristic polynomial of (H) is (x^2 - 4x + 7).

Multiple choice

Which of the following matrices is a singular matrix?

  1. \begin{bmatrix} 1 & 2 \ 3 & 4 \end{bmatrix}

  2. \begin{bmatrix} 1 & 0 \ 0 & 0 \end{bmatrix}

  3. \begin{bmatrix} 1 & 2 \ 2 & 4 \end{bmatrix}

  4. \begin{bmatrix} 1 & 2 \ 3 & 6 \end{bmatrix}

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A singular matrix is a square matrix whose determinant is zero. In this case, only (\begin{bmatrix} 1 & 0 \ 0 & 0 \end{bmatrix}) is singular.

Multiple choice

What is the cofactor of the element (a_{23}) of the matrix (J = \begin{bmatrix} 1 & 2 & 3 \ 4 & 5 & 6 \ 7 & 8 & 9 \end{bmatrix})?

  1. -3

  2. 3

  3. -9

  4. 9

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The cofactor of an element (a_{ij}) of a matrix is the determinant of the submatrix obtained by deleting the (i)-th row and (j)-th column of the matrix, multiplied by ((-1)^{i+j}). In this case, the cofactor of (a_{23}) is ((-1)^{2+3}) times the determinant of the submatrix (\begin{bmatrix} 1 & 2 \ 7 & 8 \end{bmatrix}), which is (-9).

Multiple choice

What is the general form of the Singular Value Decomposition (SVD) of a matrix?

  1. A = UΣV^T

  2. A = UΣV

  3. A = UΣ^T V^T

  4. A = UΣ^T V

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The SVD of a matrix A is given by A = UΣV^T, where U and V are orthogonal matrices and Σ is a diagonal matrix containing the singular values of A.

Multiple choice

What are the singular values of a matrix?

  1. The eigenvalues of the matrix

  2. The square roots of the eigenvalues of the matrix

  3. The diagonal entries of the matrix

  4. The non-zero entries of the matrix

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The singular values of a matrix are the square roots of the eigenvalues of the matrix A^T A.

Multiple choice

What is the relationship between the singular values and the rank of a matrix?

  1. The rank of a matrix is equal to the number of non-zero singular values

  2. The rank of a matrix is equal to the number of singular values

  3. The rank of a matrix is equal to the sum of the singular values

  4. The rank of a matrix is equal to the product of the singular values

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The rank of a matrix is equal to the number of linearly independent rows or columns of the matrix, which is also equal to the number of non-zero singular values.

Multiple choice

What is the geometric interpretation of the singular value decomposition?

  1. It rotates and scales the matrix to make it diagonal

  2. It projects the matrix onto a subspace

  3. It decomposes the matrix into a sum of rank-one matrices

  4. It finds the eigenvectors and eigenvalues of the matrix

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The SVD decomposes the matrix into a sum of rank-one matrices, where each rank-one matrix is the product of a singular value and two orthogonal vectors.

Multiple choice

What is the computational complexity of the singular value decomposition?

  1. O(n^3)

  2. O(n^2)

  3. O(n log n)

  4. O(n)

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The computational complexity of the SVD is typically O(n^3), where n is the size of the matrix.

Multiple choice

What is the relationship between the SVD and the eigenvalue decomposition?

  1. The SVD is a generalization of the eigenvalue decomposition

  2. The eigenvalue decomposition is a generalization of the SVD

  3. The SVD and the eigenvalue decomposition are unrelated

  4. The SVD and the eigenvalue decomposition are equivalent

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The SVD is a generalization of the eigenvalue decomposition in the sense that the eigenvalue decomposition can be obtained from the SVD by setting some of the singular values to zero.