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

Which of the following is a valid matrix transformation?

  1. Rotation

  2. Scaling

  3. Translation

  4. All of the above

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

Rotation, scaling, and translation are all valid matrix transformations.

Multiple choice

Which of the following is a valid matrix norm?

  1. Frobenius norm

  2. Euclidean norm

  3. Spectral norm

  4. All of the above

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

Frobenius norm, Euclidean norm, and Spectral norm are all valid matrix norms.

Multiple choice

What is the purpose of the QR algorithm?

  1. To find the eigenvalues and eigenvectors of a matrix

  2. To find the rank of a matrix

  3. To find the determinant of a matrix

  4. To find the null space of a matrix

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

The QR algorithm is a method for finding the eigenvalues and eigenvectors of a matrix.

Multiple choice

What is the main objective of QR Decomposition?

  1. To decompose a matrix into a product of two matrices, Q and R

  2. To find the eigenvalues and eigenvectors of a matrix

  3. To solve systems of linear equations

  4. To calculate the determinant of a matrix

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

QR Decomposition aims to decompose a given matrix into the product of an orthogonal matrix Q and an upper triangular matrix R.

Multiple choice

What are the properties of the Q matrix in QR Decomposition?

  1. It is an orthogonal matrix, meaning its inverse is equal to its transpose.

  2. It is a diagonal matrix with positive diagonal entries.

  3. It is a lower triangular matrix with zeros above the diagonal.

  4. It is a symmetric matrix with all diagonal entries equal to 1.

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

The Q matrix in QR Decomposition is an orthogonal matrix, which means its inverse is equal to its transpose. This property ensures that Q preserves the length and orthogonality of vectors.

Multiple choice

What are the properties of the R matrix in QR Decomposition?

  1. It is an upper triangular matrix with positive diagonal entries.

  2. It is a diagonal matrix with positive diagonal entries.

  3. It is a lower triangular matrix with zeros above the diagonal.

  4. It is a symmetric matrix with all diagonal entries equal to 1.

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

The R matrix in QR Decomposition is an upper triangular matrix with positive diagonal entries. This structure makes it convenient for solving systems of linear equations and performing other matrix operations.

Multiple choice

What is the relationship between QR Decomposition and singular value decomposition (SVD)?

  1. QR Decomposition is a special case of SVD when the matrix has full rank.

  2. SVD is a generalization of QR Decomposition that can be applied to matrices with any rank.

  3. QR Decomposition and SVD are unrelated techniques.

  4. SVD is a simplified version of QR Decomposition.

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

QR Decomposition is a special case of SVD when the matrix has full rank. This means that if a matrix can be decomposed using QR Decomposition, it can also be decomposed using SVD. However, SVD can be applied to matrices with any rank, making it a more general technique.

Multiple choice

Which of the following matrices can be decomposed using QR Decomposition?

  1. A square matrix with full rank

  2. A rectangular matrix with full rank

  3. A square matrix with rank deficiency

  4. A rectangular matrix with rank deficiency

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

QR Decomposition can be applied to square matrices with full rank. This means that the matrix must have the same number of rows and columns, and its determinant must be nonzero. Matrices with rank deficiency or rectangular matrices cannot be decomposed using QR Decomposition.

Multiple choice

What is the relationship between QR Decomposition and the singular value decomposition (SVD)?

  1. QR Decomposition is a special case of SVD when the matrix has full rank.

  2. SVD is a special case of QR Decomposition when the matrix has full rank.

  3. QR Decomposition and SVD are unrelated techniques.

  4. SVD is a simplified version of QR Decomposition.

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

QR Decomposition is a special case of SVD when the matrix has full rank. This means that if a matrix can be decomposed using QR Decomposition, it can also be decomposed using SVD. However, SVD can be applied to matrices with any rank, making it a more general technique.

Multiple choice

Which NumPy function is used to calculate the eigenvalues and eigenvectors of a matrix?

  1. np.linalg.eig()

  2. np.linalg.svd()

  3. np.linalg.det()

  4. np.linalg.inv()

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

The np.linalg.eig() function in NumPy is used to calculate the eigenvalues and eigenvectors of a square matrix, which are important for linear algebra operations.

Multiple choice

The stiffness matrix of a structure is a:

  1. Square matrix

  2. Rectangular matrix

  3. Symmetric matrix

  4. Positive definite matrix

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

The stiffness matrix is symmetric because the structure is assumed to be linear elastic.

Multiple choice

The global stiffness matrix is a:

  1. Square matrix

  2. Rectangular matrix

  3. Symmetric matrix

  4. Positive definite matrix

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

The global stiffness matrix is a symmetric matrix.

Multiple choice

What is the determinant of a 2x2 matrix?

  1. The product of the diagonal elements

  2. The sum of the diagonal elements

  3. The difference of the diagonal elements

  4. The product of the off-diagonal elements

Reveal answer Fill a bubble to check yourself
Correct answer
Explanation

The determinant of a 2x2 matrix can be calculated using the formula: det(A) = ad - bc, where a, b, c, and d represent the elements of the matrix.

Multiple choice

What is the determinant of a 3x3 matrix?

  1. The sum of the diagonal elements

  2. The product of the diagonal elements

  3. The difference of the diagonal elements

  4. None of the above

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

The determinant of a 3x3 matrix cannot be calculated using a simple formula like that of a 2x2 matrix. It requires a more complex calculation involving cofactors and minors.

Multiple choice

What is the determinant of the identity matrix?

  1. 0

  2. 1

  3. -1

  4. None of the above

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

The determinant of the identity matrix is always 1, regardless of its size.