Matrices and Determinants
Practice MCQsMatrices help arrange numbers in rows and columns, while determinants help study square matrices, inverse matrices, and systems of linear equations.
Matrices and Determinants form an important part of elementary linear algebra. Matrices help arrange numbers in rows and columns, while determinants help study square matrices, inverse matrices, and systems of linear equations. This chapter covers types of matrices, matrix operations, determinants, properties of determinants, adjoint and inverse of a square matrix, and applications to solving linear equations by Cramer's Rule and Matrix Method.
What are Matrices and Determinants?
A matrix is a rectangular arrangement of numbers, symbols, or expressions arranged in rows and columns. Matrices are useful for representing data, equations, transformations, and systems of linear equations.
A determinant is a special value associated with a square matrix. It is useful for checking whether a matrix has an inverse and for solving simultaneous linear equations.
| Area | What It Covers | Exam Focus |
|---|---|---|
| Types of Matrices | Row, column, square, diagonal, scalar, identity, zero matrices. | Identification and basic properties. |
| Matrix Operations | Addition, subtraction, scalar multiplication, matrix multiplication. | Correct order and compatibility. |
| Determinants | Determinant of \(2 \times 2\) and \(3 \times 3\) matrices. | Expansion and properties. |
| Adjoint and Inverse | Cofactor matrix, adjoint matrix, inverse of square matrix. | Use of \(\operatorname{adj}(A)\) and \(|A|\). |
| Applications | Linear equations in two or three unknowns. | Cramer's Rule and Matrix Method. |
“Matrices organize information; determinants reveal whether that information can be uniquely solved.”
Key points
- A matrix is arranged in rows and columns.
- Order of a matrix is rows \(\times\) columns.
- Only matrices of same order can be added or subtracted.
- Matrix multiplication is possible only when columns of first matrix equal rows of second.
- Determinants are defined only for square matrices.
- A square matrix has inverse only if its determinant is non-zero.
- Cramer's Rule uses determinants to solve equations.
- Matrix Method uses \(X=A^{-1}B\).
Core Formula Bank
Tip: In matrix questions, always check order and compatibility before calculation.
Matrix and Determinant Method Selection Guide
Matrix and determinant questions become easier when the student first identifies whether the problem is about matrix type, order compatibility, determinant, inverse, adjoint, Cramer's Rule, or Matrix Method. The table below helps choose the correct method quickly.
| Question Type | What to Use | Typical Clue |
|---|---|---|
| Identify matrix type | Check rows, columns and element pattern | Row, column, square, diagonal, scalar, identity, zero |
| Order of matrix | Rows \(\times\) columns | Asked to find order or size of matrix |
| Matrix addition or subtraction | Same order condition | Two matrices of equal size are given |
| Scalar multiplication | Multiply every element by the scalar | A number is multiplied with a matrix |
| Matrix multiplication | Columns of first matrix = rows of second matrix | Find \(AB\), check whether product is possible |
| Transpose question | Interchange rows and columns | Find \(A^T\), symmetric or skew-symmetric matrix |
| Determinant question | Use determinant formula | Square matrix is given, find \(|A|\) or \(\det(A)\) |
| \(2 \times 2\) determinant | \(ad-bc\) | \(\begin{vmatrix}a & b\\ c & d\end{vmatrix}\) |
| Zero determinant shortcut | Check identical or proportional rows/columns | Two rows or columns look same or proportional |
| Inverse matrix | \(A^{-1}=\frac{1}{|A|}\operatorname{adj}(A)\) | Find inverse, provided \(|A|\neq 0\) |
| Singular or non-singular | Check determinant value | If \(|A|=0\), singular; if \(|A|\neq 0\), non-singular |
| Cramer's Rule | Use \(D\), \(D_x\), \(D_y\), \(D_z\) | Linear equations in two or three unknowns |
| Matrix Method | Write \(AX=B\), then \(X=A^{-1}B\) | System of equations written using coefficient matrix |
Types of Matrices
Matrices are classified based on their order, shape, and position of elements. Understanding matrix types is essential before performing operations.
| Type of Matrix | Meaning | Example |
|---|---|---|
| Row Matrix | Matrix having only one row. | \(\begin{bmatrix} 2 & 5 & 7 \end{bmatrix}\) |
| Column Matrix | Matrix having only one column. | \(\begin{bmatrix} 3\\ 4\\ 8 \end{bmatrix}\) |
| Rectangular Matrix | Number of rows and columns are different. | \(\begin{bmatrix} 1 & 2 & 3\\ 4 & 5 & 6 \end{bmatrix}\) |
| Square Matrix | Number of rows and columns are equal. | \(\begin{bmatrix} 1 & 2\\ 3 & 4 \end{bmatrix}\) |
| Zero Matrix | All elements are zero. | \(\begin{bmatrix} 0 & 0\\ 0 & 0 \end{bmatrix}\) |
| Diagonal Matrix | All non-diagonal elements are zero. | \(\begin{bmatrix} 2 & 0\\ 0 & 5 \end{bmatrix}\) |
| Scalar Matrix | A diagonal matrix with all diagonal elements equal. | \(\begin{bmatrix} 4 & 0\\ 0 & 4 \end{bmatrix}\) |
| Identity Matrix | Diagonal elements are 1 and all other elements are zero. | \(\begin{bmatrix} 1 & 0\\ 0 & 1 \end{bmatrix}\) |
| Transpose Matrix | Rows and columns are interchanged. | If \(A=\begin{bmatrix} 1 & 2\\ 3 & 4 \end{bmatrix}\), then \(A^T=\begin{bmatrix} 1 & 3\\ 2 & 4 \end{bmatrix}\). |
| Symmetric Matrix | A square matrix for which \(A^T=A\). | \(\begin{bmatrix} 1 & 3\\ 3 & 2 \end{bmatrix}\) |
| Skew-Symmetric Matrix | A square matrix for which \(A^T=-A\). | \(\begin{bmatrix} 0 & 5\\ -5 & 0 \end{bmatrix}\) |
Operations on Matrices
Matrix operations include addition, subtraction, scalar multiplication, multiplication of matrices, and transpose. These operations follow strict rules based on the order of matrices.
| Operation | Condition | Rule |
|---|---|---|
| Addition | Matrices must have same order. | Add corresponding elements. |
| Subtraction | Matrices must have same order. | Subtract corresponding elements. |
| Scalar Multiplication | Any matrix can be multiplied by a scalar. | Multiply every element by the scalar. |
| Matrix Multiplication | Columns of first matrix must equal rows of second matrix. | If \(A\) is \(m \times n\) and \(B\) is \(n \times p\), then \(AB\) is \(m \times p\). |
| Transpose | Applicable to any matrix. | Rows become columns and columns become rows. |
Determinant of a Matrix
The determinant is a scalar value associated with a square matrix. It is commonly denoted by \(|A|\) or \(\det(A)\). A determinant exists only for square matrices.
| Matrix Order | Determinant Formula | Example Use |
|---|---|---|
| \(2 \times 2\) | \[ \begin{vmatrix} a & b\\ c & d \end{vmatrix} =ad-bc \] | Used in inverse and Cramer's Rule for two variables. |
| \(3 \times 3\) | \[ \begin{vmatrix} a & b & c\\ d & e & f\\ g & h & i \end{vmatrix} = a(ei-fh)-b(di-fg)+c(dh-eg) \] | Used in three-variable systems. |
Basic Properties of Determinants
Determinant properties help simplify calculations, especially for larger determinants.
| Property | Statement | Use |
|---|---|---|
| Interchange of Rows or Columns | If two rows or two columns are interchanged, determinant changes sign. | Useful in simplification. |
| Two Equal Rows or Columns | If two rows or columns are identical, determinant is zero. | Quick zero determinant check. |
| Zero Row or Column | If all elements of a row or column are zero, determinant is zero. | Quick calculation. |
| Common Factor | A common factor from a row or column can be taken outside the determinant. | Reduces numerical work. |
| Transpose Property | \(|A|=|A^T|\) | Rows and columns have similar determinant behaviour. |
| Triangular Matrix | Determinant equals product of diagonal elements. | Fast evaluation. |
| Product Property | \(|AB|=|A||B|\) | Used in determinant identities. |
Minor, Cofactor, Adjoint and Inverse
The inverse of a square matrix is found using determinant and adjoint. For this, we need the ideas of minor and cofactor.
| Concept | Meaning / Formula | Use |
|---|---|---|
| Minor | Minor of an element is the determinant obtained by deleting its row and column. | Used to form cofactors. |
| Cofactor | Cofactor of \(a_{ij}\) is: \[ C_{ij}=(-1)^{i+j}M_{ij} \] | Used in adjoint. |
| Adjoint | Transpose of the cofactor matrix. | \(\operatorname{adj}(A)\) |
| Inverse | \[ A^{-1}=\frac{1}{|A|}\operatorname{adj}(A) \] | Exists only when \(|A|\neq 0\). |
| Singular Matrix | \(|A|=0\) | Inverse does not exist. |
| Non-Singular Matrix | \(|A|\neq 0\) | Inverse exists. |
Inverse of a \(2 \times 2\) Matrix
The inverse of a \(2 \times 2\) matrix can be found quickly using a direct formula.
If \[ A= \begin{bmatrix} a & b\\ c & d \end{bmatrix} \] then \[ |A|=ad-bc \]
If \(|A|\neq 0\), then \[ A^{-1} = \frac{1}{ad-bc} \begin{bmatrix} d & -b\\ -c & a \end{bmatrix} \]
Applications: Solving Linear Equations
Matrices and determinants are widely used to solve systems of linear equations in two or three unknowns. Two important methods are Cramer's Rule and the Matrix Method.
Cramer's Rule for Two Unknowns
For equations: \[ a_1x+b_1y=c_1 \] \[ a_2x+b_2y=c_2 \]
Define: \[ D= \begin{vmatrix} a_1 & b_1\\ a_2 & b_2 \end{vmatrix} \] \[ D_x= \begin{vmatrix} c_1 & b_1\\ c_2 & b_2 \end{vmatrix} \] \[ D_y= \begin{vmatrix} a_1 & c_1\\ a_2 & c_2 \end{vmatrix} \]
If \(D\neq 0\), then: \[ x=\frac{D_x}{D}, \quad y=\frac{D_y}{D} \]
Matrix Method
A system of linear equations can be written as: \[ AX=B \]
where \(A\) is the coefficient matrix, \(X\) is the variable matrix, and \(B\) is the constant matrix.
If \(A^{-1}\) exists, then: \[ X=A^{-1}B \]
Cramer's Rule for Three Unknowns
Cramer's Rule can also be used to solve three linear equations in three unknowns.
For equations: \[ a_1x+b_1y+c_1z=d_1 \] \[ a_2x+b_2y+c_2z=d_2 \] \[ a_3x+b_3y+c_3z=d_3 \]
| Determinant | Meaning |
|---|---|
| \[ D= \begin{vmatrix} a_1 & b_1 & c_1\\ a_2 & b_2 & c_2\\ a_3 & b_3 & c_3 \end{vmatrix} \] | Coefficient determinant. |
| \(D_x\) | Replace the \(x\)-coefficient column by constants \(d_1,d_2,d_3\). |
| \(D_y\) | Replace the \(y\)-coefficient column by constants \(d_1,d_2,d_3\). |
| \(D_z\) | Replace the \(z\)-coefficient column by constants \(d_1,d_2,d_3\). |
Step-by-Step Solving Method
| Step | Action | Example Focus |
|---|---|---|
| Step 1 | Identify the type of question. | Matrix operation, determinant, inverse, Cramer's Rule, Matrix Method. |
| Step 2 | Check order and compatibility. | Same order for addition; multiplication compatibility for product. |
| Step 3 | Apply the correct formula. | \(|A|\), \(\operatorname{adj}(A)\), \(A^{-1}\), \(X=A^{-1}B\). |
| Step 4 | Simplify carefully. | Watch signs in determinants and cofactors. |
| Step 5 | Verify result where possible. | For inverse, check \(AA^{-1}=I\). For equations, substitute values. |
Solved Examples
| Question | Method | Answer |
|---|---|---|
| Find the order of \[ A=\begin{bmatrix} 1 & 2 & 3\\ 4 & 5 & 6 \end{bmatrix} \] | Matrix has 2 rows and 3 columns. | \(2 \times 3\) |
| If \[ A=\begin{bmatrix}1 & 2\\3 & 4\end{bmatrix},\quad B=\begin{bmatrix}5 & 6\\7 & 8\end{bmatrix} \] find \(A+B\). | Add corresponding elements. \[ A+B= \begin{bmatrix} 1+5 & 2+6\\ 3+7 & 4+8 \end{bmatrix} \] | \[ \begin{bmatrix} 6 & 8\\ 10 & 12 \end{bmatrix} \] |
| Find \[ \begin{vmatrix} 2 & 3\\ 4 & 5 \end{vmatrix} \] | Use \(ad-bc\): \[ (2)(5)-(3)(4)=10-12=-2 \] | \(-2\) |
| Find inverse of \[ A=\begin{bmatrix} 1 & 2\\ 3 & 4 \end{bmatrix} \] | \[ |A|=1(4)-2(3)=-2 \] \[ A^{-1}=\frac{1}{-2} \begin{bmatrix} 4 & -2\\ -3 & 1 \end{bmatrix} \] | \[ \begin{bmatrix} -2 & 1\\ \frac{3}{2} & -\frac{1}{2} \end{bmatrix} \] |
| Solve using Cramer's Rule: \[ x+y=5 \] \[ x-y=1 \] | \[ D= \begin{vmatrix} 1 & 1\\ 1 & -1 \end{vmatrix} =-2 \] \[ D_x= \begin{vmatrix} 5 & 1\\ 1 & -1 \end{vmatrix} =-6 \] \[ D_y= \begin{vmatrix} 1 & 5\\ 1 & 1 \end{vmatrix} =-4 \] | \(x=\frac{-6}{-2}=3,\quad y=\frac{-4}{-2}=2\) |
| Write the matrix form of: \[ 2x+3y=7 \] \[ x-y=1 \] | Write in the form \(AX=B\). | \[ \begin{bmatrix} 2 & 3\\ 1 & -1 \end{bmatrix} \begin{bmatrix} x\\ y \end{bmatrix} = \begin{bmatrix} 7\\ 1 \end{bmatrix} \] |
Note: In determinant and inverse questions, carefully track signs. In equation-solving questions, verify your answer by substituting back into the original equations.
Common Traps and Shortcuts
Common Traps
- Adding matrices of different orders.
- Multiplying matrices without checking compatibility.
- Assuming \(AB=BA\) in matrix multiplication.
- Trying to find determinant of a non-square matrix.
- Forgetting sign changes in cofactor calculation.
- Trying to find inverse when determinant is zero.
- Confusing adjoint with transpose.
- Replacing the wrong column in Cramer's Rule.
- Writing \(X=BA^{-1}\) instead of \(X=A^{-1}B\).
Useful Shortcuts
- For addition and subtraction, orders must be identical.
- For multiplication, inner orders must match.
- For \(2 \times 2\) determinant, use \(ad-bc\).
- If two rows or columns are identical, determinant is zero.
- If determinant is zero, inverse does not exist.
- For \(2 \times 2\) inverse, swap diagonal elements and change signs of other two.
- In Cramer's Rule, replace one coefficient column at a time with constants.
- In Matrix Method, arrange equations in the same variable order.
Practice
A) Multiple Choice Questions
-
A matrix having only one row is called:
Column Matrix Row Matrix Square Matrix Zero Matrix
-
Determinant is defined only for:
Row matrices Column matrices Square matrices Rectangular matrices
-
If \(A\) is \(2 \times 3\) and \(B\) is \(3 \times 4\), then order of \(AB\) is:
\(2 \times 4\) \(3 \times 3\) \(4 \times 2\) Not possible
-
If \(|A|=0\), then \(A\) is:
Identity Singular Non-singular Scalar
-
If \(AX=B\) and \(A^{-1}\) exists, then \(X\) is:
\(AB^{-1}\) \(BA^{-1}\) \(A^{-1}B\) \(B^{-1}A\)
B) Solve the Higher-Order Problems
- Find the determinant: \[ \begin{vmatrix} 3 & 2\\ 5 & 4 \end{vmatrix} \] (Hint: Use \(ad-bc\).)
- If \[ A=\begin{bmatrix}2 & 1\\4 & 3\end{bmatrix} \] find \(|A|\). (Hint: Use determinant formula for \(2 \times 2\) matrix.)
- Check whether \[ A=\begin{bmatrix}1 & 2\\2 & 4\end{bmatrix} \] is singular or non-singular. (Hint: Find \(|A|\).)
- Solve by Cramer's Rule: \[ x+y=7,\quad x-y=3 \] (Hint: First find \(D\), \(D_x\), and \(D_y\).)
- Write the matrix form of: \[ 3x+2y=8,\quad x+4y=9 \] (Hint: Write in the form \(AX=B\).)
C) Match the Concept with the Correct Rule
| Concept | Correct Rule / Meaning |
|---|---|
| Row Matrix | Matrix having only one row |
| Column Matrix | Matrix having only one column |
| Square Matrix | Number of rows and columns are equal |
| Identity Matrix | Diagonal elements are 1 and remaining elements are 0 |
| Determinant | A scalar value associated with a square matrix |
| Adjoint | Transpose of the cofactor matrix |
| Inverse | \(A^{-1}=\frac{1}{|A|}\operatorname{adj}(A)\) |
| Matrix Method | If \(AX=B\), then \(X=A^{-1}B\) |
Matrices and Determinants Reminder
Matrices organize numbers in rows and columns, while determinants provide important information about square matrices. Matrix operations require order compatibility. Determinants are useful for finding inverse matrices and solving simultaneous linear equations. Cramer's Rule and Matrix Method are two important applications for solving equations in two or three unknowns.
Task: Create five questions using one question each from matrix types, matrix operations, determinant, inverse matrix, and Cramer's Rule.
Show Suggested Answers
Multiple Choice
-
Row Matrix
A matrix having only one row is called a row matrix. -
Square matrices
Determinants are defined only for square matrices. -
\(2 \times 4\)
If \(A\) is \(2 \times 3\) and \(B\) is \(3 \times 4\), then \(AB\) is \(2 \times 4\). -
Singular
If \(|A|=0\), then \(A\) is singular. -
\(A^{-1}B\)
If \(AX=B\), multiply both sides by \(A^{-1}\): \(X=A^{-1}B\).
Higher-Order Problems
- \[ \begin{vmatrix} 3 & 2\\ 5 & 4 \end{vmatrix} = 3(4)-2(5)=12-10=2 \] Answer = 2.
- \[ |A|= \begin{vmatrix} 2 & 1\\ 4 & 3 \end{vmatrix} = 2(3)-1(4)=6-4=2 \] Answer = 2.
- \[ |A|= \begin{vmatrix} 1 & 2\\ 2 & 4 \end{vmatrix} = 1(4)-2(2)=4-4=0 \] Since determinant is zero, the matrix is singular.
- For \[ x+y=7,\quad x-y=3 \] \[ D= \begin{vmatrix} 1 & 1\\ 1 & -1 \end{vmatrix} =-2 \] \[ D_x= \begin{vmatrix} 7 & 1\\ 3 & -1 \end{vmatrix} =-10 \] \[ D_y= \begin{vmatrix} 1 & 7\\ 1 & 3 \end{vmatrix} =-4 \] \[ x=\frac{D_x}{D}=5,\quad y=\frac{D_y}{D}=2 \] Answer = \(x=5,\ y=2\).
- Matrix form: \[ \begin{bmatrix} 3 & 2\\ 1 & 4 \end{bmatrix} \begin{bmatrix} x\\ y \end{bmatrix} = \begin{bmatrix} 8\\ 9 \end{bmatrix} \]
Concept Matching
- Row Matrix → Matrix having only one row
- Column Matrix → Matrix having only one column
- Square Matrix → Number of rows and columns are equal
- Identity Matrix → Diagonal elements are 1 and remaining elements are 0
- Determinant → A scalar value associated with a square matrix
- Adjoint → Transpose of the cofactor matrix
- Inverse → \(A^{-1}=\frac{1}{|A|}\operatorname{adj}(A)\)
- Matrix Method → If \(AX=B\), then \(X=A^{-1}B\)
Clue Explanation
Matrix questions require careful attention to order, signs, and compatibility. Determinants are calculated only for square matrices. Inverse exists only when determinant is non-zero. Cramer's Rule uses determinant replacement, while Matrix Method uses \(X=A^{-1}B\).
Exam tips
- Check matrix order before every operation.
- Add or subtract only matrices of same order.
- For multiplication, inner dimensions must match.
- Remember \(AB\) may not equal \(BA\).
- Find determinant before inverse.
- If determinant is zero, inverse does not exist.
- Use \(ad-bc\) for \(2 \times 2\) determinants.
- Be careful with signs in cofactors.
- In Cramer's Rule, replace the correct column.