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

In NumPy, which function is used to compute the determinant of a matrix?

  1. linalg.det()

  2. linalg.inv()

  3. linalg.norm()

  4. linalg.solve()

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

The linalg.det() function in NumPy is used to calculate the determinant of a square matrix.

Multiple choice

In Eigen, which function is used to compute the eigenvalues and eigenvectors of a matrix?

  1. eigenSolver()

  2. svd()

  3. lu()

  4. qr()

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

The eigenSolver() function in Eigen is used to compute the eigenvalues and eigenvectors of a matrix.

Multiple choice

In Julia's LinearAlgebra package, which function is used to compute the determinant of a matrix?

  1. det()

  2. inv()

  3. norm()

  4. solve()

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

The det() function in Julia's LinearAlgebra package is used to calculate the determinant of a square matrix.

Multiple choice

In MATLAB's Linear Algebra Toolbox, which function is used to compute the eigenvalues and eigenvectors of a matrix?

  1. eig()

  2. svd()

  3. lu()

  4. qr()

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

The eig() function in MATLAB's Linear Algebra Toolbox is used to compute the eigenvalues and eigenvectors of a matrix.

Multiple choice

In R's Matrix package, which function is used to compute the determinant of a matrix?

  1. det()

  2. inv()

  3. norm()

  4. solve()

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

The det() function in R's Matrix package is used to calculate the determinant of a square matrix.

Multiple choice

What is a matrix?

  1. A rectangular array of numbers

  2. A set of vectors

  3. A linear transformation

  4. A vector space

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

A matrix is a rectangular array of numbers. It can be used to represent a system of linear equations, a transformation, or a vector space.

Multiple choice

What is the determinant of a matrix?

  1. The sum of the elements in the matrix

  2. The product of the elements in the matrix

  3. The difference of the elements in the matrix

  4. A number that is associated with a square matrix

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

The determinant of a matrix is a number that is associated with a square matrix. It is used to determine whether the matrix is invertible or not.

Multiple choice

The set of all matrices of order $m \times n$ is a subspace of the vector space of all matrices.

  1. True

  2. False

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

The set of all matrices of order $m \times n$ is a subspace because it is non-empty, closed under matrix addition, and closed under scalar multiplication.

Multiple choice

Which mathematical concept is central to the study of matrices?

  1. Determinants

  2. Eigenvalues

  3. Trace

  4. Rank

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

Determinants are a central concept in the study of matrices, as they provide a measure of the size and orientation of a matrix and are used in various applications, such as solving systems of linear equations and calculating matrix inverses.

Multiple choice

Given the matrices (A = \begin{bmatrix} 1 & 2 \ 3 & 4 \end{bmatrix}) and (B = \begin{bmatrix} 5 & 6 \ 7 & 8 \end{bmatrix}), find the product (AB).

  1. \begin{bmatrix} 19 & 22 \ 43 & 50 \end{bmatrix}

  2. \begin{bmatrix} 11 & 14 \ 25 & 30 \end{bmatrix}

  3. \begin{bmatrix} 17 & 20 \ 39 & 46 \end{bmatrix}

  4. \begin{bmatrix} 23 & 26 \ 51 & 58 \end{bmatrix}

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

To find the product (AB), multiply the elements of the rows of (A) by the elements of the columns of (B) and add the products.

Multiple choice

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

  1. 1

  2. -1

  3. 5

  4. -5

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

The determinant of a 2x2 matrix is calculated using the formula (ad - bc), where (a, b, c, d) are the elements of the matrix. In this case, the determinant of (C) is ((-2)(-1) - (3)(5) = 2 - 15 = -13).

Multiple choice

Which of the following matrices is the identity matrix of order 3?

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

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

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

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

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

The identity matrix of order 3 is a square matrix with 1s on the diagonal and 0s everywhere else.

Multiple choice

If (A) is a square matrix and (A^2 = 0), then which of the following statements is true?

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

If (A^2 = 0), then the determinant of (A) must be zero, as the determinant of a matrix is equal to the product of its eigenvalues.

Multiple choice

What is the rank of the matrix (D = \begin{bmatrix} 1 & 2 & 3 \ 2 & 4 & 6 \ 3 & 6 & 9 \end{bmatrix})?

  1. 1

  2. 2

  3. 3

  4. 4

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

The rank of a matrix is the maximum number of linearly independent rows or columns. In this case, the rows of (D) are linearly dependent, so the rank of (D) is 1.

Multiple choice

Which of the following matrices is a symmetric matrix?

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

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

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

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

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

A symmetric matrix is a square matrix that is equal to its transpose. In this case, only (\begin{bmatrix} 1 & 0 \ 0 & 1 \end{bmatrix}) is symmetric.