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
Which of the following is a valid matrix transformation?
-
Rotation
-
Scaling
-
Translation
-
All of the above
D
Correct answer
Explanation
Rotation, scaling, and translation are all valid matrix transformations.
Which of the following is a valid matrix norm?
-
Frobenius norm
-
Euclidean norm
-
Spectral norm
-
All of the above
D
Correct answer
Explanation
Frobenius norm, Euclidean norm, and Spectral norm are all valid matrix norms.
What is the purpose of the QR algorithm?
-
To find the eigenvalues and eigenvectors of a matrix
-
To find the rank of a matrix
-
To find the determinant of a matrix
-
To find the null space of a matrix
A
Correct answer
Explanation
The QR algorithm is a method for finding the eigenvalues and eigenvectors of a matrix.
What is the main objective of QR Decomposition?
-
To decompose a matrix into a product of two matrices, Q and R
-
To find the eigenvalues and eigenvectors of a matrix
-
To solve systems of linear equations
-
To calculate the determinant of a matrix
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.
What are the properties of the Q matrix in QR Decomposition?
-
It is an orthogonal matrix, meaning its inverse is equal to its transpose.
-
It is a diagonal matrix with positive diagonal entries.
-
It is a lower triangular matrix with zeros above the diagonal.
-
It is a symmetric matrix with all diagonal entries equal to 1.
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.
What are the properties of the R matrix in QR Decomposition?
-
It is an upper triangular matrix with positive diagonal entries.
-
It is a diagonal matrix with positive diagonal entries.
-
It is a lower triangular matrix with zeros above the diagonal.
-
It is a symmetric matrix with all diagonal entries equal to 1.
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.
What is the relationship between QR Decomposition and singular value decomposition (SVD)?
-
QR Decomposition is a special case of SVD when the matrix has full rank.
-
SVD is a generalization of QR Decomposition that can be applied to matrices with any rank.
-
QR Decomposition and SVD are unrelated techniques.
-
SVD is a simplified version of QR Decomposition.
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.
Which of the following matrices can be decomposed using QR Decomposition?
-
A square matrix with full rank
-
A rectangular matrix with full rank
-
A square matrix with rank deficiency
-
A rectangular matrix with rank deficiency
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.
What is the relationship between QR Decomposition and the singular value decomposition (SVD)?
-
QR Decomposition is a special case of SVD when the matrix has full rank.
-
SVD is a special case of QR Decomposition when the matrix has full rank.
-
QR Decomposition and SVD are unrelated techniques.
-
SVD is a simplified version of QR Decomposition.
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.
Which NumPy function is used to calculate the eigenvalues and eigenvectors of a matrix?
-
np.linalg.eig()
-
np.linalg.svd()
-
np.linalg.det()
-
np.linalg.inv()
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.
The stiffness matrix of a structure is a:
-
Square matrix
-
Rectangular matrix
-
Symmetric matrix
-
Positive definite matrix
C
Correct answer
Explanation
The stiffness matrix is symmetric because the structure is assumed to be linear elastic.
The global stiffness matrix is a:
-
Square matrix
-
Rectangular matrix
-
Symmetric matrix
-
Positive definite matrix
C
Correct answer
Explanation
The global stiffness matrix is a symmetric matrix.
What is the determinant of a 2x2 matrix?
-
The product of the diagonal elements
-
The sum of the diagonal elements
-
The difference of the diagonal elements
-
The product of the off-diagonal elements
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.
What is the determinant of a 3x3 matrix?
-
The sum of the diagonal elements
-
The product of the diagonal elements
-
The difference of the diagonal elements
-
None of the above
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.
What is the determinant of the identity matrix?
B
Correct answer
Explanation
The determinant of the identity matrix is always 1, regardless of its size.