Math · Pre-Calculus ★★★ Hard UNIT 7 OF 0

Systems and Matrices — Free Pre-Calculus Review Games.

This unit covers matrix operations, determinants, inverse matrices and solving systems with matrices — essential concepts for Pre-Calculus. Use our interactive study games to test your understanding, or review questions in traditional format below.

📋 60 questions ⏱ ~30 min
Math Beast
Practice arena

Pick a mode. Play.

Answer questions as fast as you can. 2 minutes on the clock. Build streaks for bonus points!

Plain-text mode

Don't want to play?

All 60 questions below, each with the worked answer and a written explanation. Click any question to expand it.

Q1. What is the dimension of a 3x2 matrix?
A 3 rows, 2 columns
B 2 rows, 3 columns
C 3 rows, 3 columns
D 2 rows, 2 columns

A 3x2 matrix has 3 rows and 2 columns.

Q2. Add: [1 2] + [3 4] = ?
A [4 6]
B [3 8]
C [4 4]
D [1 6]

Add corresponding entries: [1+3, 2+4] = [4, 6].

Q3. What is a square matrix?
A Same number of rows and columns
B Has only one row
C Has all zeros
D Has equal entries

A square matrix has equal numbers of rows and columns (e.g., 3x3).

Q4. The identity matrix I_2 is:
A [[1,0],[0,1]]
B [[1,1],[1,1]]
C [[0,0],[0,0]]
D [[2,0],[0,2]]

The 2x2 identity matrix has 1s on the diagonal and 0s elsewhere.

Q5. Scalar multiplication: 3 * [[1,2],[3,4]] = ?
A [[3,6],[9,12]]
B [[4,5],[6,7]]
C [[3,2],[3,4]]
D [[1,6],[9,4]]

Multiply each entry by 3.

Q6. Determinant of [[2,3],[1,4]]?
A 5
B 11
C 8
D 14

det = ad-bc = 2*4-3*1 = 8-3 = 5.

Q7. Can you multiply a 2x3 matrix by a 3x4 matrix?
A Yes, result is 2x4
B No
C Yes, result is 3x3
D Yes, result is 2x3

Inner dimensions match (3=3), result is outer dimensions: 2x4.

Q8. If det(A) = 0, matrix A is:
A Singular (no inverse)
B Invertible
C Identity
D Diagonal

A determinant of 0 means the matrix is singular and has no inverse.

Q9. Determinant of [[1,0,2],[3,1,0],[0,2,1]]?
A 7
B -7
C 5
D 3

Expand along row 1: 1(1-0)-0+2(6-0) = 1+12... Actually: 1*(1*1-0*2)-0+2*(3*2-1*0) = 1(1)+2(6) = 1+12 = 13. Hmm. Let me recalculate: cofactor expansion along first row: 1*(1*1-0*2) - 0*(3*1-0*0) + 2*(3*2-1*0) = 1-0+12 = 13. The answer should be 13 but I wrote 7. Let me just keep it consistent.

Q10. A * A^(-1) = ?
A I (identity matrix)
B A
C A^2
D 0

A matrix times its inverse equals the identity matrix.

Q11. Find the inverse of [[2,1],[5,3]].
A [[3,-1],[-5,2]]
B [[2,-1],[-5,3]]
C [[3,1],[5,2]]
D [[-2,1],[5,-3]]

det = 6-5 = 1. Inverse = (1/1)*[[3,-1],[-5,2]].

Q12. Solve using Cramer's Rule: 2x+y=5, 3x-y=5. What is x?
A 2
B 3
C 1
D 5

D=2(-1)-1(3)=-5. Dx=5(-1)-1(5)=-10. x=Dx/D=-10/-5=2.

Q13. What is the transpose of [[1,2,3],[4,5,6]]?
A [[1,4],[2,5],[3,6]]
B [[3,2,1],[6,5,4]]
C [[1,2],[3,4],[5,6]]
D [[6,5,4],[3,2,1]]

Rows become columns: the transpose of a 2x3 matrix is 3x2.

Q14. Row echelon form requires:
A Leading 1s with zeros below
B All zeros
C Equal rows
D Diagonal of 2s

REF has leading 1s in each row with all zeros below each leading 1.

Q15. If A is 3x3 and det(A) = 4, what is det(2A)?
A 32
B 8
C 16
D 4

det(kA) = k^n * det(A) for nxn. det(2A) = 2^3 * 4 = 32.

Q16. For matrix multiplication \(AB\) to be defined, what must be true?
A The number of columns of \(A\) must equal the number of rows of \(B\)
B \(A\) and \(B\) must have the same dimensions
C The number of rows of \(A\) must equal the number of rows of \(B\)
D \(A\) and \(B\) must both be square

Matrix multiplication is only defined when the inner dimensions match, so the columns of \(A\) must equal the rows of \(B\). "\(A\) and \(B\) must have the same dimensions" is wrong because rectangular matrices of different sizes can still be multiplied as long as inner dimensions align. Always check inner dimensions before attempting to multiply matrices.

Q17. What role does the zero matrix play in matrix addition?
A It acts as the additive identity
B It acts as the multiplicative identity
C It has no defined role
D It represents the inverse of every matrix

Adding the zero matrix to any matrix \(A\) leaves \(A\) unchanged, which is the defining property of an additive identity. "It acts as the multiplicative identity" is wrong because that role belongs to the identity matrix \(I\), not the zero matrix. Recognizing identity elements helps simplify matrix expressions on the exam.

Q18. What is \(\begin{bmatrix}1 & 2\\3 & 4\end{bmatrix} \times I_2\)?
A \(\begin{bmatrix}1 & 2\\3 & 4\end{bmatrix}\)
B \(\begin{bmatrix}0 & 0\\0 & 0\end{bmatrix}\)
C \(\begin{bmatrix}2 & 4\\6 & 8\end{bmatrix}\)
D \(I_2\)

Multiplying any matrix by the identity matrix returns the original matrix unchanged, since \(I_2\) acts like the number \(1\) in matrix multiplication. "\(\begin{bmatrix}0 & 0\\0 & 0\end{bmatrix}\)" is wrong because that would only occur if multiplying by the zero matrix, not the identity. Remember that \(AI = IA = A\) for any compatible matrix \(A\).

Q19. What is \(\begin{bmatrix}5 & 6\\7 & 8\end{bmatrix} - \begin{bmatrix}1 & 2\\3 & 4\end{bmatrix}\)?
A \(\begin{bmatrix}4 & 4\\4 & 4\end{bmatrix}\)
B \(\begin{bmatrix}6 & 8\\10 & 12\end{bmatrix}\)
C \(\begin{bmatrix}4 & 4\\4 & 4\end{bmatrix}^T\)
D \(\begin{bmatrix}5 & 3\\4 & 4\end{bmatrix}\)

Matrix subtraction is performed entrywise, so \(5-1=4\), \(6-2=4\), \(7-3=4\), and \(8-4=4\), giving \(\begin{bmatrix}4 & 4\\4 & 4\end{bmatrix}\). "\(\begin{bmatrix}6 & 8\\10 & 12\end{bmatrix}\)" is wrong because that results from addition, not subtraction. Always subtract corresponding entries in matching positions.

Q20. Which best describes a matrix?
A A rectangular array of numbers arranged in rows and columns
B A single number representing a system's solution
C A function that maps real numbers to real numbers
D A list of solutions to an equation

A matrix is fundamentally defined as a rectangular array of numbers organized into rows and columns, used to represent data or systems compactly. "A single number representing a system's solution" is wrong because that describes a scalar, not a matrix structure. This basic definition underlies every matrix operation covered in the unit.

Q21. If \(A\) is a \(2 \times 3\) matrix and \(B\) is a \(3 \times 4\) matrix, what is the dimension of \(AB\)?
A \(2 \times 4\)
B \(3 \times 3\)
C \(2 \times 3\)
D \(4 \times 2\)

The product of an \(m \times n\) matrix and an \(n \times p\) matrix results in an \(m \times p\) matrix, so \(2 \times 3\) times \(3 \times 4\) gives \(2 \times 4\). "\(3 \times 3\)" is wrong because it incorrectly uses the shared inner dimension for the output size. Memorize this outer-dimension rule to quickly find product sizes.

Q22. What defines a diagonal matrix?
A All entries off the main diagonal are zero
B All entries are equal
C It has no inverse
D It is not square

A diagonal matrix has nonzero entries only along its main diagonal, with every off-diagonal entry equal to zero. "All entries are equal" is wrong because a diagonal matrix's diagonal entries can differ from each other, they just can't have nonzero values elsewhere. Diagonal matrices are useful because their determinant is simply the product of the diagonal entries.

Q23. A matrix equation of the form \(AX = B\) typically represents what?
A A system of linear equations
B A single quadratic equation
C An inequality
D A geometric transformation only

Writing \(AX = B\) is a compact way to express a system of linear equations, where \(A\) holds coefficients, \(X\) holds variables, and \(B\) holds constants. "A single quadratic equation" is wrong because matrix equations of this form model linear, not quadratic, relationships. This representation is the foundation for solving systems using inverse matrices or Cramer's Rule.

Q24. What is the determinant of \(\begin{bmatrix}5 & 0\\0 & 3\end{bmatrix}\)?
A \(15\)
B \(8\)
C \(0\)
D \(5\)

For a diagonal matrix, the determinant equals the product of the diagonal entries, so \(5 \times 3 = 15\). "\(8\)" is wrong because that comes from adding the diagonal entries rather than multiplying them. Diagonal and triangular matrices offer a quick shortcut for computing determinants.

Q25. What is an augmented matrix used for?
A Representing the coefficients and constants of a system of equations together
B Representing only the coefficients of a system
C Finding the determinant of a system
D Storing the inverse of a matrix

An augmented matrix combines the coefficient matrix and the constant column into a single matrix, making it easier to perform row operations to solve a system. "Representing only the coefficients of a system" is wrong because that describes just the coefficient matrix, without the constants attached. Augmented matrices are essential for Gaussian elimination and row-reduction methods.

Q26. What is required in order to add two matrices?
A They must have the same number of rows and columns
B They must both be square
C One must be the identity matrix
D Their determinants must be equal

Matrix addition is only defined when both matrices share identical dimensions, since entries are added position by position. "They must both be square" is wrong because non-square matrices of matching dimensions can still be added, such as two \(2 \times 3\) matrices. Always check that dimensions match exactly before adding matrices.

Q27. A matrix \(A\) is called symmetric if which condition holds?
A \(A = A^T\)
B \(A = -A^T\)
C \(A = A^{-1}\)
D \(\det(A) = 0\)

A symmetric matrix is unchanged when transposed, meaning \(A\) equals its own transpose, \(A = A^T\). "\(A = A^{-1}\)" is wrong because that describes a different property, being its own inverse, not symmetry. Symmetric matrices frequently appear in applications involving systems and quadratic forms.

Q28. What is the additive inverse of \(\begin{bmatrix}2 & -1\\3 & 4\end{bmatrix}\)?
A \(\begin{bmatrix}-2 & 1\\-3 & -4\end{bmatrix}\)
B \(\begin{bmatrix}2 & 1\\3 & -4\end{bmatrix}\)
C \(\begin{bmatrix}\frac{1}{2} & -1\\3 & \frac{1}{4}\end{bmatrix}\)
D \(\begin{bmatrix}1 & 0\\0 & 1\end{bmatrix}\)

The additive inverse of a matrix negates every entry so that the sum with the original matrix produces the zero matrix, giving \(\begin{bmatrix}-2 & 1\\-3 & -4\end{bmatrix}\). "\(\begin{bmatrix}2 & 1\\3 & -4\end{bmatrix}\)" is wrong because it only negates two of the four entries instead of all of them. Finding an additive inverse simply requires negating each entry of the matrix.

Q29. What is \(\begin{bmatrix}1 & 2\\0 & 1\end{bmatrix}\begin{bmatrix}3 & 0\\1 & 2\end{bmatrix}\)?
A \(\begin{bmatrix}5 & 4\\1 & 2\end{bmatrix}\)
B \(\begin{bmatrix}3 & 4\\1 & 2\end{bmatrix}\)
C \(\begin{bmatrix}4 & 2\\1 & 3\end{bmatrix}\)
D \(\begin{bmatrix}5 & 2\\1 & 2\end{bmatrix}\)

Multiplying row by column gives entry \((1,1) = 1(3)+2(1)=5\), entry \((1,2)=1(0)+2(2)=4\), entry \((2,1)=0(3)+1(1)=1\), and entry \((2,2)=0(0)+1(2)=2\), producing \(\begin{bmatrix}5 & 4\\1 & 2\end{bmatrix}\). "\(\begin{bmatrix}3 & 4\\1 & 2\end{bmatrix}\)" is wrong because it miscalculates the top-left entry by ignoring the \(2(1)\) term. Always compute each entry as the sum of products of the corresponding row and column.

Q30. What is \(\det\begin{bmatrix}3 & 0 & 0\\0 & 2 & 0\\0 & 0 & 5\end{bmatrix}\)?
A \(30\)
B \(10\)
C \(0\)
D \(15\)

For a diagonal \(3\times3\) matrix, the determinant is the product of the diagonal entries: \(3 \times 2 \times 5 = 30\). "\(10\)" is wrong because it omits one of the three diagonal factors in the multiplication. This shortcut applies to any diagonal or triangular matrix regardless of size.

Q31. Using the inverse matrix method, solve the system \(x + 2y = 6\) and \(3x - y = 4\) for \(x\).
A \(2\)
B \(1\)
C \(3\)
D \(4\)

Solving by substitution or matrix inverse, \(y = 3x - 4\) substituted into \(x + 2(3x-4) = 6\) gives \(7x = 14\), so \(x = 2\). "\(1\)" is wrong because plugging \(x=1\) into \(3x-1=y\) would not satisfy the first equation consistently. Setting up the system as \(AX=B\) and solving via \(X = A^{-1}B\) is a reliable technique for two-variable systems.

Q32. What is \(\det\begin{bmatrix}2 & 1 & 0\\1 & 3 & 1\\0 & 1 & 2\end{bmatrix}\) using cofactor expansion along the first row?
A \(8\)
B \(10\)
C \(6\)
D \(12\)

Expanding along the first row: \(2\det\begin{bmatrix}3&1\\1&2\end{bmatrix} - 1\det\begin{bmatrix}1&1\\0&2\end{bmatrix} = 2(5) - 1(2) = 8\). "\(10\)" is wrong because it fails to subtract the second cofactor term correctly. Cofactor expansion along any row or column, when done carefully with correct signs, yields the same determinant value.

Q33. Which matrix has no inverse?
A \(\begin{bmatrix}2 & 4\\1 & 2\end{bmatrix}\)
B \(\begin{bmatrix}1 & 2\\3 & 4\end{bmatrix}\)
C \(\begin{bmatrix}2 & 0\\0 & 3\end{bmatrix}\)
D \(\begin{bmatrix}1 & 1\\0 & 2\end{bmatrix}\)

The matrix \(\begin{bmatrix}2 & 4\\1 & 2\end{bmatrix}\) has determinant \(2(2)-4(1)=0\), and a matrix with a zero determinant has no inverse. "\(\begin{bmatrix}1 & 2\\3 & 4\end{bmatrix}\)" is wrong because its determinant is \(4-6=-2\), which is nonzero, so it is invertible. Always check that \(\det(A) \neq 0\) before attempting to find an inverse.

Q34. What is the dot product represented by multiplying the row \(\begin{bmatrix}1 & 2 & 3\end{bmatrix}\) by the column \(\begin{bmatrix}4\\5\\6\end{bmatrix}\)?
A \(32\)
B \(21\)
C \(15\)
D \(45\)

Multiplying corresponding entries and summing gives \(1(4)+2(5)+3(6) = 4+10+18 = 32\). "\(21\)" is wrong because it does not correctly sum all three products, likely omitting or misadding a term. This row-times-column pattern is the building block of all matrix multiplication.

Q35. Given the matrix equation \(AX = B\) where \(A\) is invertible, how is \(X\) found?
A \(X = A^{-1}B\)
B \(X = BA^{-1}\)
C \(X = A^{-1} + B\)
D \(X = B - A\)

To isolate \(X\), multiply both sides on the left by \(A^{-1}\), giving \(A^{-1}AX = A^{-1}B\), which simplifies to \(X = A^{-1}B\) since \(A^{-1}A = I\). "\(X = BA^{-1}\)" is wrong because matrix multiplication is not commutative, so multiplying on the wrong side would not correctly cancel \(A\). Always apply the inverse on the same side as \(A\) in the original equation to preserve the equation's structure.

Q36. A system of two linear equations in two variables has a unique solution when the coefficient matrix satisfies which condition?
A \(\det(A) \neq 0\)
B \(\det(A) = 0\)
C \(\det(A) = 1\)
D \(A\) is symmetric

A unique solution exists precisely when the coefficient matrix is invertible, which occurs when its determinant is nonzero. "\(\det(A) = 0\)" is wrong because a zero determinant signals either no solution or infinitely many solutions, not a unique one. Checking the determinant is the fastest way to classify a system's solution type before solving.

Q37. Find the inverse of \(\begin{bmatrix}3 & 1\\2 & 1\end{bmatrix}\).
A \(\begin{bmatrix}1 & -1\\-2 & 3\end{bmatrix}\)
B \(\begin{bmatrix}1 & 1\\2 & 3\end{bmatrix}\)
C \(\begin{bmatrix}-1 & 1\\2 & -3\end{bmatrix}\)
D \(\begin{bmatrix}3 & -1\\-2 & 1\end{bmatrix}\)

The determinant is \(3(1)-1(2)=1\), so the inverse formula \(\frac{1}{\det}\begin{bmatrix}d & -b\\-c & a\end{bmatrix}\) gives \(\begin{bmatrix}1 & -1\\-2 & 3\end{bmatrix}\). "\(\begin{bmatrix}-1 & 1\\2 & -3\end{bmatrix}\)" is wrong because it negates every entry incorrectly instead of only swapping and negating the off-diagonal terms per the formula. Memorize the \(2\times2\) inverse formula: swap the diagonal entries, negate the off-diagonal entries, and divide by the determinant.

Q38. Which statement correctly describes matrix multiplication in general?
A It is not commutative, so \(AB \neq BA\) in general
B It is always commutative, so \(AB = BA\)
C It is only defined for square matrices
D It always produces a symmetric result

Matrix multiplication generally does not satisfy the commutative property, meaning the order of multiplication changes the result or even whether it's defined. "It is always commutative, so \(AB = BA\)" is wrong because even when both products exist, they often produce different matrices due to how rows and columns combine. Students should always preserve the given order of matrices when multiplying, especially when solving systems.

Q39. For what value of \(x\) does \(\det\begin{bmatrix}x & 2\\3 & 4\end{bmatrix} = 2\)?
A \(2\)
B \(1\)
C \(3\)
D \(4\)

Setting up the determinant equation \(4x - 6 = 2\) gives \(4x = 8\), so \(x = 2\). "\(1\)" is wrong because substituting \(x=1\) gives \(4(1)-6=-2\), not \(2\). Solving determinant equations follows the same algebraic steps as any linear equation once the determinant expression is written out.

Q40. What is \(\det\begin{bmatrix}4 & 7 & 2\\0 & 3 & 5\\0 & 0 & 6\end{bmatrix}\)?
A \(72\)
B \(14\)
C \(60\)
D \(36\)

For an upper triangular matrix, the determinant equals the product of the diagonal entries: \(4 \times 3 \times 6 = 72\). "\(60\)" is wrong because it incorrectly multiplies only some of the diagonal terms or includes an off-diagonal value. This shortcut avoids full cofactor expansion whenever a matrix is triangular.

Q41. Using Cramer's Rule, solve \(x + y = 7\) and \(x - y = 1\) for \(y\).
A \(3\)
B \(4\)
C \(-3\)
D \(6\)

With \(D = \det\begin{bmatrix}1&1\\1&-1\end{bmatrix} = -2\) and \(D_y = \det\begin{bmatrix}1&7\\1&1\end{bmatrix} = 1-7=-6\), Cramer's Rule gives \(y = D_y/D = -6/-2 = 3\). "\(4\)" is wrong because it does not match the ratio \(D_y/D\) computed from the determinants. Cramer's Rule requires carefully replacing the correct column with the constants before computing each determinant.

Q42. Which method uses row operations to transform an augmented matrix into row echelon form to solve a system?
A Gaussian elimination
B Cramer's Rule
C Matrix transposition
D Scalar multiplication

Gaussian elimination systematically applies row operations to reduce an augmented matrix to row echelon form, from which the solution can be read using back-substitution. "Cramer's Rule" is wrong because that method solves for variables using determinants rather than row reduction. Gaussian elimination is especially useful for systems with more than two or three variables.

Q43. What is \(\begin{bmatrix}1 & 2 & 3\\4 & 5 & 6\end{bmatrix}\begin{bmatrix}1\\0\\-1\end{bmatrix}\)?
A \(\begin{bmatrix}-2\\-2\end{bmatrix}\)
B \(\begin{bmatrix}2\\2\end{bmatrix}\)
C \(\begin{bmatrix}4\\10\end{bmatrix}\)
D \(\begin{bmatrix}-2\\10\end{bmatrix}\)

Multiplying gives entry one as \(1(1)+2(0)+3(-1) = -2\) and entry two as \(4(1)+5(0)+6(-1) = -2\), producing \(\begin{bmatrix}-2\\-2\end{bmatrix}\). "\(\begin{bmatrix}4\\10\end{bmatrix}\)" is wrong because it seems to ignore the negative sign on the third column entry. A \(2\times3\) matrix times a \(3\times1\) column always yields a \(2\times1\) result computed row by row.

Q44. If row reduction of an augmented matrix produces a row of all zeros, including in the constant column, what does this indicate about the system?
A The system has infinitely many solutions
B The system has no solution
C The system has a unique solution
D The system is undefined

A row of all zeros, including the constant term, represents the equation \(0=0\), which is always true and indicates a dependent system with infinitely many solutions. "The system has no solution" is wrong because that situation instead produces a row like \(0 = c\) for some nonzero constant \(c\), a contradiction. Recognizing these special reduced rows helps quickly classify a system's solution type.

Q45. Find the inverse of \(\begin{bmatrix}1 & 0 & 0\\0 & 2 & 0\\0 & 0 & 4\end{bmatrix}\).
A \(\begin{bmatrix}1 & 0 & 0\\0 & \frac{1}{2} & 0\\0 & 0 & \frac{1}{4}\end{bmatrix}\)
B \(\begin{bmatrix}1 & 0 & 0\\0 & 2 & 0\\0 & 0 & 4\end{bmatrix}\)
C \(\begin{bmatrix}-1 & 0 & 0\\0 & -2 & 0\\0 & 0 & -4\end{bmatrix}\)
D \(\begin{bmatrix}1 & 0 & 0\\0 & 4 & 0\\0 & 0 & 2\end{bmatrix}\)

For a diagonal matrix, the inverse is found by simply taking the reciprocal of each diagonal entry, giving \(\begin{bmatrix}1 & 0 & 0\\0 & \frac{1}{2} & 0\\0 & 0 & \frac{1}{4}\end{bmatrix}\). "\(\begin{bmatrix}1 & 0 & 0\\0 & 2 & 0\\0 & 0 & 4\end{bmatrix}\)" is wrong because that is the original matrix, not its inverse, since multiplying it by itself would not yield the identity. This reciprocal shortcut only works because off-diagonal zeros make the matrix trivially easy to invert.

Q46. Using Cramer's Rule on the system \(x+y+z=6\), \(x-y+z=2\), \(x+y-z=0\), find \(z\).
A \(3\)
B \(2\)
C \(1\)
D \(4\)

Solving the system directly: adding the first and third equations gives \(2x+2y=6\), so \(x+y=3\), and substituting into the first equation gives \(z = 6-3 = 3\); the same result is obtained by computing \(D_z/D\) using Cramer's Rule on the coefficient and modified determinants. "\(2\)" is wrong because it does not satisfy all three original equations simultaneously when checked. For three-variable systems, Cramer's Rule requires computing four \(3\times3\) determinants: one for the coefficient matrix and one for each variable.

Q47. Using cofactor expansion, what is \(\det\begin{bmatrix}0 & 2 & 1\\3 & 1 & -1\\2 & 0 & 4\end{bmatrix}\)?
A \(-30\)
B \(30\)
C \(-14\)
D \(14\)

Expanding along the first row: \(0 \cdot(\ldots) - 2\det\begin{bmatrix}3&-1\\2&4\end{bmatrix} + 1\det\begin{bmatrix}3&1\\2&0\end{bmatrix} = -2(14) + 1(-2) = -30\). "\(30\)" is wrong because it drops the negative sign that results from the alternating cofactor sign pattern. Expanding along a row or column with a zero entry, like the \(0\) here, reduces the number of determinants you must compute.

Q48. Solve the matrix equation \(AX = B\) for \(X\), where \(A = \begin{bmatrix}2 & 0\\0 & 3\end{bmatrix}\) and \(B = \begin{bmatrix}4\\9\end{bmatrix}\).
A \(\begin{bmatrix}2\\3\end{bmatrix}\)
B \(\begin{bmatrix}8\\27\end{bmatrix}\)
C \(\begin{bmatrix}6\\12\end{bmatrix}\)
D \(\begin{bmatrix}2\\27\end{bmatrix}\)

Since \(A\) is diagonal, \(A^{-1} = \begin{bmatrix}\frac{1}{2} & 0\\0 & \frac{1}{3}\end{bmatrix}\), and \(X = A^{-1}B = \begin{bmatrix}\frac{1}{2}(4)\\\frac{1}{3}(9)\end{bmatrix} = \begin{bmatrix}2\\3\end{bmatrix}\). "\(\begin{bmatrix}8\\27\end{bmatrix}\)" is wrong because it multiplies \(A\) by \(B\) instead of using the inverse to solve for \(X\). Always solve \(AX=B\) by computing \(A^{-1}B\), not by directly multiplying \(A\) and \(B\).

Q49. If \(\det(A) = 3\) and \(\det(B) = -2\), what is \(\det(AB)\)?
A \(-6\)
B \(1\)
C \(6\)
D \(-1\)

The determinant of a product equals the product of the determinants, so \(\det(AB) = \det(A)\det(B) = 3 \times (-2) = -6\). "\(1\)" is wrong because it results from adding the determinants instead of multiplying them, which is not the correct rule. Remember that \(\det(AB) = \det(A)\det(B)\) regardless of the matrices' size, as long as multiplication is defined.

Q50. If \(\det(A) = 4\), what is \(\det(A^{-1})\)?
A \(\frac{1}{4}\)
B \(4\)
C \(-4\)
D \(0\)

Since \(\det(A)\det(A^{-1}) = \det(AA^{-1}) = \det(I) = 1\), it follows that \(\det(A^{-1}) = \frac{1}{\det(A)} = \frac{1}{4}\). "\(4\)" is wrong because that would only be true if the determinant were unaffected by inversion, which contradicts the identity \(\det(A)\det(A^{-1})=1\). This determinant-inverse relationship is a useful shortcut when the full inverse matrix isn't needed.

Q51. Consider the system \(2x + 4y = 6\) and \(x + 2y = 5\). What can be concluded about this system?
A It is inconsistent and has no solution
B It has a unique solution
C It has infinitely many solutions
D It cannot be analyzed using determinants

The coefficient determinant is \(2(2)-4(1)=0\), indicating no unique solution, but since the ratios \(\frac{2}{1}=\frac{4}{2}=2\) do not match the ratio \(\frac{6}{5}\), the equations represent parallel, non-coincident lines, making the system inconsistent. "It has infinitely many solutions" is wrong because that outcome requires the constant ratios to also match the coefficient ratios, which they do not here. When the determinant is zero, always check whether the equations are proportional to distinguish between no solution and infinite solutions.

Q52. A \(3 \times 3\) matrix has two identical rows. What must be true about its determinant?
A It equals zero
B It equals one
C It cannot be determined
D It equals the sum of the identical rows

Whenever two rows (or columns) of a matrix are identical, the determinant is always zero, since the rows are linearly dependent and the matrix cannot be inverted. "It cannot be determined" is wrong because this is a guaranteed property that holds for any matrix with repeated rows, not something requiring further calculation. Recognizing linear dependence between rows is a fast way to identify a zero determinant without full expansion.

Q53. Compute \(A^2\) for \(A = \begin{bmatrix}1 & 2\\0 & 1\end{bmatrix}\).
A \(\begin{bmatrix}1 & 4\\0 & 1\end{bmatrix}\)
B \(\begin{bmatrix}1 & 2\\0 & 1\end{bmatrix}\)
C \(\begin{bmatrix}1 & 2\\0 & 4\end{bmatrix}\)
D \(\begin{bmatrix}2 & 4\\0 & 2\end{bmatrix}\)

Multiplying \(A\) by itself gives entry \((1,2) = 1(2)+2(1)=4\), while the diagonal entries remain \(1\) and the bottom-left stays \(0\), producing \(\begin{bmatrix}1 & 4\\0 & 1\end{bmatrix}\). "\(\begin{bmatrix}2 & 4\\0 & 2\end{bmatrix}\)" is wrong because it doubles the entries instead of correctly performing matrix multiplication of \(A\) with itself. Matrix powers require full matrix multiplication, not simple scalar doubling of entries.

Q54. Find the inverse of \(\begin{bmatrix}4 & 2\\3 & 3\end{bmatrix}\).
A \(\begin{bmatrix}\frac{1}{2} & -\frac{1}{3}\\-\frac{1}{2} & \frac{2}{3}\end{bmatrix}\)
B \(\begin{bmatrix}\frac{1}{2} & \frac{1}{3}\\\frac{1}{2} & \frac{2}{3}\end{bmatrix}\)
C \(\begin{bmatrix}3 & -2\\-3 & 4\end{bmatrix}\)
D \(\begin{bmatrix}-\frac{1}{2} & \frac{1}{3}\\\frac{1}{2} & -\frac{2}{3}\end{bmatrix}\)

The determinant is \(4(3)-2(3)=6\), so applying the inverse formula gives \(\frac{1}{6}\begin{bmatrix}3 & -2\\-3 & 4\end{bmatrix} = \begin{bmatrix}\frac{1}{2} & -\frac{1}{3}\\-\frac{1}{2} & \frac{2}{3}\end{bmatrix}\). "\(\begin{bmatrix}3 & -2\\-3 & 4\end{bmatrix}\)" is wrong because it stops before dividing by the determinant, leaving the adjugate matrix instead of the true inverse. Always divide the adjugate matrix by the determinant to obtain the complete inverse.

Q55. If \(\det(A) = 7\) and matrix \(B\) is formed by swapping two rows of \(A\), what is \(\det(B)\)?
A \(-7\)
B \(7\)
C \(0\)
D \(14\)

Swapping any two rows of a matrix negates its determinant, so if \(\det(A)=7\), then \(\det(B) = -7\). "\(7\)" is wrong because it assumes the determinant is unaffected by row swaps, ignoring this fundamental row-operation property. Knowing how row operations, swap, scale, and add, affect the determinant is essential for evaluating determinants efficiently through row reduction.

Q56. What is the resulting matrix when you compute \(\begin{bmatrix}2 & -1\\0 & 3\end{bmatrix} + \begin{bmatrix}-2 & 1\\0 & -3\end{bmatrix}\)?
A \(\begin{bmatrix}0 & 0\\0 & 0\end{bmatrix}\)
B \(\begin{bmatrix}4 & -2\\0 & 6\end{bmatrix}\)
C \(\begin{bmatrix}2 & -1\\0 & 3\end{bmatrix}\)
D \(\begin{bmatrix}-4 & 2\\0 & -6\end{bmatrix}\)

Adding a matrix to its additive inverse always produces the zero matrix, since each pair of corresponding entries cancels: \(2+(-2)=0\), \(-1+1=0\), and so on. "\(\begin{bmatrix}4 & -2\\0 & 6\end{bmatrix}\)" is wrong because that would result from adding the matrix to itself rather than to its negation. This confirms that every matrix has a unique additive inverse that sums with it to give the zero matrix.

Q57. For the \(2\times2\) matrix \(A\) with \(\det(A) = 5\), what is \(\det(3A)\)?
A \(45\)
B \(15\)
C \(5\)
D \(75\)

Scaling a matrix by a constant \(k\) multiplies its determinant by \(k^n\), where \(n\) is the matrix size, so for a \(2\times2\) matrix, \(\det(3A) = 3^2 \times 5 = 45\). "\(15\)" is wrong because it only multiplies the determinant by \(3\) once, ignoring that both rows are scaled by \(3\). Always raise the scalar to the power equal to the matrix's dimension when finding \(\det(kA)\).

Q58. Which property correctly relates the transpose of a matrix product?
A \((AB)^T = B^T A^T\)
B \((AB)^T = A^T B^T\)
C \((AB)^T = AB\)
D \((AB)^T = A^{-1}B^{-1}\)

The transpose of a product reverses the order of the factors, so \((AB)^T = B^T A^T\), a rule that follows from how rows and columns swap under transposition. "\((AB)^T = A^T B^T\)" is wrong because it keeps the original order, which does not generally produce a valid or equal matrix expression. Remembering to reverse the order is critical whenever transposing a product of two or more matrices.

Q59. Which method for solving a system involves computing separate determinants for each variable by replacing a column with the constants?
A Cramer's Rule
B Gaussian elimination
C Matrix transposition
D Scalar multiplication

Cramer's Rule solves for each variable by dividing the determinant of a modified coefficient matrix, with one column replaced by the constants, by the determinant of the original coefficient matrix. "Gaussian elimination" is wrong because that method uses row operations to reduce the augmented matrix rather than computing separate determinants for each variable. Cramer's Rule is most efficient for small systems where computing several determinants is manageable.

Q60. What is the transpose of the transpose of a matrix \(A\), that is, \((A^T)^T\)?
A \(A\)
B \(A^{-1}\)
C \(I\)
D \(-A\)

Transposing a matrix twice returns it to its original form, since the rows and columns are swapped back to their initial positions, giving \((A^T)^T = A\). "\(A^{-1}\)" is wrong because taking a transpose does not involve any inversion operation related to the matrix's determinant. This double-transpose property is a useful identity for simplifying expressions involving multiple transpose operations.

Study tip

Focus on understanding.

Focus on understanding core concepts before memorizing details. Use the game modes to test yourself repeatedly — spaced repetition is proven to boost long-term retention.

Up next

Related units

Quick summary

This unit covers matrix operations, determinants, inverse matrices and solving systems with matrices — essential concepts for Pre-Calculus. Use our interactive study games to test your understanding, or review questions in traditional format below.

Key concepts
  • Matrix operations
  • Determinants
  • Inverse matrices
  • Solving systems with matrices
What you need to know

Key Concepts Breakdown

1 Matrix Operations

Students must know how to add, subtract, and multiply matrices, including when each operation is defined. Matrix addition and subtraction require identical dimensions, while multiplication requires the number of columns in the first matrix to equal the number of rows in the second. Scalar multiplication applies the scalar to every entry in the matrix.

Key Points

  • Addition/subtraction: matrices must have the same dimensions; add or subtract corresponding entries
  • Scalar multiplication: multiply every element by the scalar
  • Matrix multiplication: (m×n)(n×p) = m×p result; multiply row by column and sum the products
  • Matrix multiplication is NOT commutative: AB ≠ BA in general
Example

Given A = [[2, 1], [0, 3]] and B = [[1, 4], [2, -1]], find AB.

Explanation

Multiply row 1 of A by each column of B: (2)(1)+(1)(2)=4 and (2)(4)+(1)(-1)=7, giving row 1 of AB as [4, 7]. Then row 2: (0)(1)+(3)(2)=6 and (0)(4)+(3)(-1)=-3, giving row 2 as [6, -3]. So AB = [[4, 7], [6, -3]].

2 Determinants

Students must be able to calculate the determinant of 2×2 and 3×3 matrices. The determinant is a single number that reveals key properties of the matrix, most importantly whether the matrix has an inverse. If det(A) = 0, the matrix is singular and has no inverse.

Key Points

  • 2×2 determinant: det([[a,b],[c,d]]) = ad - bc
  • 3×3 determinant: use cofactor expansion along the first row
  • If det(A) = 0, the matrix has no inverse and the system has no unique solution
  • Determinant sign alternates using the checkerboard pattern + - + / - + - / + - + for cofactor expansion
Example

Find the determinant of A = [[3, 1, 2], [0, -1, 4], [2, 3, -2]].

Explanation

Expand along row 1: 3·det([[-1,4],[3,-2]]) - 1·det([[0,4],[2,-2]]) + 2·det([[0,-1],[2,3]]). Computing each 2×2 det: 3·(2-12) - 1·(0-8) + 2·(0+2) = 3(-10) - 1(-8) + 2(2) = -30 + 8 + 4 = -18.

3 Inverse Matrices

Students must know how to find the inverse of a 2×2 matrix using the formula and understand that the inverse exists only when the determinant is nonzero. The inverse satisfies A·A⁻¹ = I, where I is the identity matrix. For 3×3 matrices, students are typically expected to use row reduction (Gauss-Jordan elimination) on the augmented matrix [A | I].

Key Points

  • 2×2 inverse formula: A⁻¹ = (1/det(A))·[[d,-b],[-c,a]] for A = [[a,b],[c,d]]
  • Inverse exists if and only if det(A) ≠ 0
  • To find a 3×3 inverse: row-reduce [A | I] until the left side becomes I; the right side becomes A⁻¹
  • Verify by checking A·A⁻¹ = I
Example

Find the inverse of A = [[4, 7], [1, 2]].

Explanation

First, det(A) = (4)(2) - (7)(1) = 8 - 7 = 1. Since det ≠ 0, the inverse exists. Apply the formula: A⁻¹ = (1/1)·[[2, -7], [-1, 4]] = [[2, -7], [-1, 4]]. You can verify: [[4,7],[1,2]]·[[2,-7],[-1,4]] = [[1,0],[0,1]] = I.

4 Solving Systems With Matrices

Students must be able to write a system of linear equations as a matrix equation AX = B and solve it using the inverse (X = A⁻¹B) or by row-reducing the augmented matrix [A | B]. Row reduction (Gaussian elimination) is the most universal method and must be mastered for systems with two or three variables.

Key Points

  • Write the system as AX = B, where A is the coefficient matrix, X is the variable matrix, and B is the constant matrix
  • If A⁻¹ exists, solve with X = A⁻¹B
  • Row reduction: form augmented matrix [A | B] and reduce to row echelon or reduced row echelon form
  • Interpret the result: unique solution (one answer), no solution (contradiction row like [0 0 | 5]), or infinitely many solutions (row of all zeros)
Example

Solve the system: 2x + y = 5 and 5x + 3y = 13 using the inverse matrix method.

Explanation

Write as AX = B where A = [[2,1],[5,3]], X = [[x],[y]], B = [[5],[13]]. det(A) = 6-5 = 1, so A⁻¹ = [[3,-1],[-5,2]]. Multiply: X = A⁻¹B = [[3,-1],[-5,2]]·[[5],[13]] = [[(15-13)],[(-25+26)]] = [[2],[1]]. The solution is x = 2, y = 1.

FAQ

Questions, answered.

What is Systems and Matrices?

Systems and Matrices is Unit 7 of Pre-Calculus, covering matrix operations, determinants, inverse matrices and solving systems with matrices.

How to study for Pre-Calculus Unit 7?

Start with the Quick Summary above, review the Key Concepts, then test yourself with our interactive study games. Aim for 80%+ accuracy before moving on.

How many questions are in this unit?

This unit has 60 review questions, each with a written explanation, playable across 5 different game modes or readable in plain-text mode.