2.6 MCQs-Matrices and Determinants
MCQs
Matrices and Determinants
Basic Concepts and Definitions
1. A matrix is defined as:
A rectangular array of numbers arranged in rows and columns
A single column of numbers
A square table of numbers
A collection of mathematical functions
Show me the answer
Answer: 1. A rectangular array of numbers arranged in rows and columns
Explanation: A matrix is a rectangular arrangement of numbers (called elements or entries) organized in rows and columns. The size of a matrix is described by its order: m×n, where m is the number of rows and n is the number of columns.
Example: A 2×3 matrix:
2. The element a23 in matrix A refers to:
Element in row 2, column 3
Element in row 3, column 2
The sum of elements in row 2 and column 3
The product of elements in row 2 and column 3
Show me the answer
Answer: 1. Element in row 2, column 3
Explanation: In matrix notation, aij represents the element located at the i-th row and j-th column. Therefore, a23 is the element in the second row and third column.
Example: If A=(142536), then a23=6.
3. A square matrix is one where:
All elements are equal
Number of rows equals number of columns
Number of rows is greater than number of columns
Number of columns is greater than number of rows
Show me the answer
Answer: 2. Number of rows equals number of columns
Explanation: A square matrix has the same number of rows and columns (m=n). The order of a square matrix is typically written as n×n or simply as order n.
Example: A 3×3 square matrix:
4. The identity matrix of order 3 is:
000000000
111111111
100010001
010101010
Show me the answer
Answer: 3. 100010001
Explanation: The identity matrix, denoted by In, is a square matrix with 1's on the main diagonal and 0's elsewhere. For any square matrix A of the same order, AI=IA=A.
The general form of an n×n identity matrix is:
Types of Matrices
5. A diagonal matrix is:
A matrix with non-zero elements only on the main diagonal
A matrix with all elements equal
A matrix with zeros on the main diagonal
A matrix with all elements non-zero
Show me the answer
Answer: 1. A matrix with non-zero elements only on the main diagonal
Explanation: A diagonal matrix is a square matrix where all elements outside the main diagonal are zero. The elements on the main diagonal can be zero or non-zero.
Example of a 3×3 diagonal matrix:
6. Which matrix is both symmetric and skew-symmetric?
Identity matrix
Zero matrix
Diagonal matrix
No such matrix exists
Show me the answer
Answer: 2. Zero matrix
Explanation:
A symmetric matrix satisfies AT=A.
A skew-symmetric matrix satisfies AT=−A.
For a matrix to be both symmetric and skew-symmetric, we must have A=AT and A=−AT, which implies A=−A, so 2A=0, thus A=0.
Therefore, only the zero matrix satisfies both conditions.
7. A matrix A is symmetric if:
A=−AT
A=AT
A=A−1
A=−A
Show me the answer
Answer: 2. A=AT
Explanation: A symmetric matrix is equal to its transpose. This means that for all i and j, aij=aji. Symmetric matrices are always square.
Example of a symmetric matrix:
Note that s12=s21=2, s13=s31=3, and s23=s32=5.
Matrix Operations
8. For two matrices A and B to be added, they must:
Have the same number of elements
Have the same order (same number of rows and columns)
Both be square matrices
Have the same determinant
Show me the answer
Answer: 2. Have the same order (same number of rows and columns)
Explanation: Matrix addition is defined only for matrices of the same order. If A is m×n and B is p×q, then A+B exists only if m=p and n=q.
Example: If A=(1324) and B=(5768), then:
9. If A is a 2×3 matrix and B is a 3×4 matrix, then the product AB:
Is a 2×4 matrix
Is a 3×3 matrix
Is a 2×3 matrix
Does not exist
Show me the answer
Answer: 1. Is a 2×4 matrix
Explanation: For matrix multiplication AB to be defined, the number of columns in A must equal the number of rows in B. If A is m×n and B is n×p, then AB is m×p.
Here, A is 2×3 and B is 3×4, so:
Number of columns in A = 3
Number of rows in B = 3 ✓ (condition satisfied)
Resulting matrix AB will be 2×4.
10. The transpose of matrix A=(142536) is:
123456
135246
(142536)
(635241)
Show me the answer
Answer: 1. 123456
Explanation: The transpose of a matrix A, denoted AT, is obtained by interchanging rows and columns. If A is m×n, then AT is n×m.
For the given matrix:
Its transpose is:
11. For any square matrix A, the trace is defined as:
The product of diagonal elements
The sum of all elements
The sum of diagonal elements
The determinant of the matrix
Show me the answer
Answer: 3. The sum of diagonal elements
Explanation: The trace of a square matrix A, denoted tr(A), is the sum of its diagonal elements. For an n×n matrix A=[aij]:
Example: For A=(1324), tr(A) = 1 + 4 = 5.
Determinants
12. The determinant of a 2×2 matrix A=(acbd) is:
ad+bc
ad−bc
ab−cd
ac−bd
Show me the answer
Answer: 2. ad−bc
Explanation: For a 2×2 matrix, the determinant is calculated as:
Example:
13. The determinant of a 3×3 matrix A=adgbehcfi using the first row is:
a(ei−fh)−b(di−fg)+c(dh−eg)
a(ei−fh)+b(di−fg)+c(dh−eg)
a(ei−fh)−b(di−fg)−c(dh−eg)
a(ei+fh)−b(di+fg)+c(dh+eg)
Show me the answer
Answer: 1. a(ei−fh)−b(di−fg)+c(dh−eg)
Explanation: The determinant of a 3×3 matrix can be expanded along any row or column. Expanding along the first row:
14. If all elements of a row (or column) of a square matrix are zeros, then its determinant is:
1
0
The product of diagonal elements
Cannot be determined
Show me the answer
Answer: 2. 0
Explanation: If any row or column of a matrix consists entirely of zeros, then the determinant of that matrix is zero. This property can be understood by expanding the determinant along that row or column.
Example:
Because expanding along the second row gives: 0×(some cofactor)+0×(some cofactor)+0×(some cofactor)=0.
15. If two rows (or columns) of a square matrix are identical, then its determinant is:
1
0
Twice the value of the determinant
The square of the determinant
Show me the answer
Answer: 2. 0
Explanation: If two rows or two columns of a square matrix are identical, then its determinant is zero. This property comes from the fact that swapping two identical rows doesn't change the matrix, but swapping any two rows changes the sign of the determinant. Thus, det(A)=−det(A), which implies det(A)=0.
Example:
Properties of Determinants
16. If each element of a row (or column) of a determinant is multiplied by a constant k, then the value of the determinant:
Becomes k times the original determinant
Becomes 1/k times the original determinant
Remains unchanged
Becomes k2 times the original determinant
Show me the answer
Answer: 1. Becomes k times the original determinant
Explanation: If each element of a row (or column) is multiplied by k, the determinant gets multiplied by k. This is because the determinant is a linear function of each row/column separately.
Example: If D=acbd=ad−bc, then:
17. If any two rows (or columns) of a determinant are interchanged, then the value of the determinant:
Remains the same
Changes sign
Becomes zero
Becomes doubled
Show me the answer
Answer: 2. Changes sign
Explanation: Interchanging any two rows (or columns) of a determinant changes its sign. This property is fundamental to the alternating nature of determinants.
Example: Let D=acbd=ad−bc. If we interchange rows:
18. The determinant of a matrix and its transpose are:
Negatives of each other
Reciprocals of each other
Equal
Unrelated
Show me the answer
Answer: 3. Equal
Explanation: For any square matrix A, the determinant of A equals the determinant of its transpose: det(A)=det(AT).
Example:
Both determinants are equal to -2.
19. If A and B are square matrices of the same order, then det(AB) equals:
det(A)+det(B)
det(A)−det(B)
det(A)×det(B)
det(A)/det(B)
Show me the answer
Answer: 3. det(A)×det(B)
Explanation: This is the multiplicative property of determinants. For square matrices A and B of the same order: det(AB)=det(A)×det(B).
Example:
Indeed, det(A)×det(B)=1×6=6=det(AB).
Matrix Inverses
20. A square matrix A is invertible (non-singular) if and only if:
det(A)=0
det(A)=0
A is symmetric
A is diagonal
Show me the answer
Answer: 2. det(A)=0
Explanation: A square matrix A has an inverse (denoted A−1) if and only if its determinant is non-zero. Such matrices are called non-singular or invertible. If det(A)=0, the matrix is singular and does not have an inverse.
The inverse satisfies: AA−1=A−1A=I, where I is the identity matrix.
21. The inverse of a 2×2 matrix A=(acbd) is:
ad−bc1(d−c−ba)
ad−bc1(−dcb−a)
ad+bc1(d−c−ba)
ad−bc1(dcba)
Show me the answer
Answer: 1. ad−bc1(d−c−ba)
Explanation: For a 2×2 matrix, the inverse formula is:
This formula works only when det(A)=ad−bc=0.
Verification: AA−1=(acbd)⋅ad−bc1(d−c−ba)=ad−bc1(ad−bc00ad−bc)=(1001).
22. If A is an invertible matrix, then (A−1)−1 equals:
A
AT
I
−A
Show me the answer
Answer: 1. A
Explanation: The inverse of an inverse gives back the original matrix. This is similar to how (x−1)−1=x for non-zero numbers.
Formally, if A is invertible, then A−1 exists and AA−1=A−1A=I. By definition, (A−1)−1 is the matrix that when multiplied by A−1 gives I. Since A(A−1)=I, we have (A−1)−1=A.
23. For invertible matrices A and B of the same order, (AB)−1 equals:
A−1B−1
B−1A−1
AB
BA
Show me the answer
Answer: 2. B−1A−1
Explanation: The inverse of a product is the product of the inverses in reverse order. To verify:
Similarly:
Thus, B−1A−1 is indeed the inverse of AB.
Solving Linear Equations
24. The system of linear equations AX=B has a unique solution if:
det(A)=0
det(A)=0
A is a square matrix
B is the zero vector
Show me the answer
Answer: 2. det(A)=0
Explanation: For a system of linear equations AX=B, where A is an n×n coefficient matrix:
If det(A)=0, then A is invertible, and the system has a unique solution: X=A−1B.
If det(A)=0, then either there is no solution or infinitely many solutions.
This result is known as Cramer's Rule when applied to each variable individually.
25. Using Cramer's Rule, the solution for x in the system: a1x+b1y=c1 a2x+b2y=c2 is:
a1a2b1b2c1c2b1b2
a1a2b1b2a1a2c1c2
c1c2b1b2a1a2b1b2
a1a2b1b2b1b2c1c2
Show me the answer
Answer: 1. a1a2b1b2c1c2b1b2
Explanation: Cramer's Rule states that for the system: a1x+b1y=c1 a2x+b2y=c2
Let D=a1a2b1b2 (determinant of the coefficient matrix).
Let Dx=c1c2b1b2 (replace the x-coefficients with constants).
Let Dy=a1a2c1c2 (replace the y-coefficients with constants).
If D=0, then:
Special Matrices and Properties
26. An orthogonal matrix satisfies:
AT=A
AT=−A
AT=A−1
A2=A
Show me the answer
Answer: 3. AT=A−1
Explanation: An orthogonal matrix is a square matrix whose transpose equals its inverse: AT=A−1. Equivalently, AAT=ATA=I.
Properties of orthogonal matrices:
The columns (and rows) are orthonormal vectors (unit vectors that are mutually perpendicular).
det(A)=±1.
Preserves lengths and angles: for any vector x, ∥Ax∥=∥x∥.
Example: Rotation matrices are orthogonal.
27. For an orthogonal matrix A, the determinant det(A) equals:
0
1
-1
1 or -1
Show me the answer
Answer: 4. 1 or -1
Explanation: For an orthogonal matrix A, we have AAT=I. Taking determinants on both sides: det(AAT)=det(I) det(A)det(AT)=1 Since det(AT)=det(A), we get: [det(A)]2=1 Thus, det(A)=±1.
Orthogonal matrices with determinant +1 are called proper orthogonal matrices (rotations). Those with determinant -1 are called improper orthogonal matrices (reflections).
28. A nilpotent matrix is one where:
A2=A
A2=I
Ak=0 for some positive integer k
AT=A
Show me the answer
Answer: 3. Ak=0 for some positive integer k
Explanation: A nilpotent matrix is a square matrix A such that Ak=0 for some positive integer k. The smallest such k is called the index of nilpotency.
Properties:
All eigenvalues of a nilpotent matrix are 0.
The determinant and trace are both 0.
The only nilpotent matrix that is diagonalizable is the zero matrix.
Example: A=(0010) is nilpotent because A2=(0000)=0.
29. The adjoint (adjugate) of a matrix A is related to its inverse by:
A−1=det(A)1⋅adj(A)
A−1=det(A)⋅adj(A)
A−1=adj(A)
A−1=det(A)adj(A)
Show me the answer
Answer: 1. A−1=det(A)1⋅adj(A)
Explanation: The adjoint (or adjugate) of a square matrix A, denoted adj(A), is the transpose of the cofactor matrix of A.
The relationship between the inverse and adjoint is:
This formula holds when det(A)=0.
Additionally, we have: A⋅adj(A)=adj(A)⋅A=det(A)⋅I.
30. The rank of a matrix is:
The number of non-zero rows in its row echelon form
The number of columns in the matrix
The determinant of the matrix
The trace of the matrix
Show me the answer
Answer: 1. The number of non-zero rows in its row echelon form
Explanation: The rank of a matrix is the maximum number of linearly independent rows (or columns) in the matrix. Equivalently, it is the number of non-zero rows in its row echelon form or reduced row echelon form.
Properties:
Rank(A) ≤ min(number of rows, number of columns)
Rank(A) = Rank(AT)
For an n×n matrix A, if Rank(A) = n, then A is invertible (non-singular).
The rank gives important information about the solutions of linear systems and the invertibility of matrices.