MATRICES
Test your understanding of matrices with this short quiz! Covers key concepts including matrix types, operations (addition, multiplication), determinants, inverses, and applications.
1 / 72
A matrix with 3 rows and 2 columns is called a:
Matrices are described by rows × columns.
2 / 72
The element a23 in the matrix [123456] is:
a23 is the element in the 2nd row, 3rd column.
3 / 72
Two matrices can be added if they have:
Matrix addition requires identical dimensions.
4 / 72
The transpose of
[142536]
is:
Rows become columns in the transpose.
5 / 72
A matrix with only one row is called a:
A row matrix has dimensions 1×n.
6 / 72
The order of the matrix product
A2×3⋅B3×4
The product has rows of
A
and columns of
B
.
7 / 72
The trace of [1023] is:
Trace is the sum of diagonal elements: 1+3=4.
8 / 72
A matrix is symmetric if:
Symmetric matrices equal their transpose.
9 / 72
The product
[12][34]
Dot product:
(1)(3)+(2)(4)=11
10 / 72
The identity matrix
I3
Identity matrices have 1s on the diagonal and 0s elsewhere.
11 / 72
A diagonal matrix with all diagonal elements equal to 1 is called a:
Identity matrices are diagonal with 1s on the diagonal.
12 / 72
The matrix [02−20] is:
Skew-symmetric matrices satisfy AT=−A.
13 / 72
A matrix with all elements zero is called a:
Zero matrices have all entries as 0.
14 / 72
The matrix [5005] is a:
Scalar matrices are diagonal with equal diagonal elements.
15 / 72
An upper triangular matrix has:
Upper triangular matrices may have non-zero diagonal elements.
16 / 72
A matrix is orthogonal if:
Orthogonal matrices satisfy
ATA=I
17 / 72
The matrix [100000001] is:
Diagonal matrices have non-zero elements only on the diagonal.
18 / 72
A nilpotent matrix satisfies:
Nilpotent matrices become zero when raised to a power.
19 / 72
The matrix [123045006] is:
All elements below the diagonal are zero.
20 / 72
A Hermitian matrix satisfies:
Hermitian matrices equal their conjugate transpose.
21 / 72
If
A=[1234]
and
B=[5678]
, then
A+B
Add corresponding elements.
22 / 72
[1234][56]
Row-by-column multiplication:
(1)(5)+(2)(6)=17
,
(3)(5)+(4)(6)=39
23 / 72
The determinant of [2314] is:
(2)(4)−(3)(1)=8−3=5.
24 / 72
A matrix is invertible if its determinant is:
Only matrices with non-zero determinants are invertible.
25 / 72
The determinant of a 3×3 matrix [100020003] is:
For diagonal matrices, the determinant is the product of diagonal elements.
26 / 72
If two rows of a matrix are identical, its determinant is:
Identical rows make the determinant zero.
27 / 72
The determinant of [01−10] is:
(0)(0)−(1)(−1)=1.
28 / 72
The determinant of an identity matrix is:
The determinant of In is always 1.
29 / 72
If A is 2×2 with det(A)=4, then det(3A) is:
For n×n matrices, det(kA)=kndet(A).
30 / 72
The determinant of a triangular matrix is:
This property holds for both upper and lower triangular matrices.
31 / 72
If det(A)=2 and det(B)=3, then det(AB) is:
det(AB)=det(A)det(B)
32 / 72
The determinant of a skew-symmetric matrix of odd order is:
For odd n, det(A)=0
33 / 72
The inverse of
[1101]
Verify by multiplication:
AA−1=I
34 / 72
A matrix is invertible if and only if:
Non-zero determinant ensures invertibility
35 / 72
[2003]
Inverses of diagonal matrices are obtained by inverting diagonal elements
36 / 72
are invertible, then
(AB)−1=
:
The inverse of a product reverses the order of inverses
37 / 72
The inverse of a rotation matrix
[cosθ−sinθsinθcosθ]
Rotation matrices are orthogonal, so
A−1=AT
38 / 72
A2=I
A−1=
A⋅A=I
implies
A−1=A
39 / 72
The inverse of a symmetric matrix is:
(A−1)T=(AT)−1=A−1
40 / 72
The matrix [1224] is:
Its determinant is (1)(4)−(2)(2)=0
41 / 72
is invertible, then
(AT)−1=
The inverse of the transpose is the transpose of the inverse
42 / 72
The inverse of an elementary matrix is:
Elementary matrices are invertible
43 / 72
The cofactor of element 2 in [1234] is:
Cofactor =(−1)1+2⋅3=−3
44 / 72
The adjoint of
[abcd]
Adjoint is the transpose of the cofactor matrix
45 / 72
For a
3×3
matrix, the cofactor of
aij
Cofactors include a sign factor based on position
46 / 72
The adjoint of a diagonal matrix is:
The adjoint of a diagonal matrix is also diagonal
47 / 72
is
2×2
A⋅adj(A)=
For any square matrix,
A⋅adj(A)=det(A)⋅I
48 / 72
The minor of an element is the determinant of:
Minors are derived from submatrices
49 / 72
The cofactor matrix of
I
2 is:
Cofactors of the identity matrix match its elements
50 / 72
adj(A−1)=
adj(A−1)=adj(A)det(A)
51 / 72
The adjoint of a singular matrix is:
For singular matrices, adj(A) may be zero (if rank < n-1)
52 / 72
The cofactor expansion is used to compute:
Cofactor expansion is a method for calculating determinants
53 / 72
The system {2x+3y=5, 4x+6y=10} has:
The second equation is a multiple of the first
54 / 72
Cramer’s Rule applies to systems where:
Cramer’s Rule requires a non-zero determinant
55 / 72
The system {x+y=2, 2x+2y=5} has:
The equations represent parallel lines
56 / 72
If A is the coefficient matrix of AX=B, the system has a unique solution if:
A non-zero determinant ensures a unique solution
57 / 72
The solution to {x-y=1, 2x+y=5} is:
Solve by substitution or elimination
58 / 72
A homogeneous system AX=0 always has:
The trivial solution X=0 always exists
59 / 72
The inverse method for solving AX=B gives:
Multiply both sides by A⁻¹
60 / 72
The system {x+2y=3, 3x+6y=9} is:
61 / 72
For a system AX=B, if rank(A)=rank([A|B]) < n, the system has:
The system is consistent but underdetermined
62 / 72
The number of solutions to {x+y+z=1, 2x+2y+2z=2} is:
The second equation is redundant
63 / 72
Matrices are used in computer graphics to perform:
Translation, rotation, and scaling use matrices
64 / 72
In Markov chains, the transition matrix is:
Transition probabilities must sum to 1
65 / 72
The adjacency matrix of a graph is always:
For undirected graphs, Aij=Aji
66 / 72
In solving linear differential equations, matrices are used to:
Matrices simplify systems of linear ODEs
67 / 72
The Leslie matrix is used in:
It models age-structured population growth
68 / 72
The Jacobian matrix is applied in:
It represents coordinate transformations
69 / 72
In economics, input-output models use matrices to:
Leontief’s input-output analysis uses matrices
70 / 72
The Hessian matrix is used in:
It contains second-order partial derivatives
71 / 72
In quantum mechanics, matrices represent:
Operators like spin are represented by matrices
72 / 72
The rotation matrix in 2D for angle θ is:
This matrix rotates vectors by angle θ
Your score is
Restart quiz Exit