Systems of equations
This chapter rigorously examines methods for solving systems of linear equations, a fundamental concept in linear algebra with broad applications across mathematics and science. Mastery of these techniques, including matrix representation, inverse matrix solutions, and consistency analysis, is crucial for success in the CMI BS Hons examination, particularly in problems involving vectors, matrices, and 3D geometry.
---
Chapter Contents
|
| Topic |
|---|-------| | 1 | Matrix form of linear system | | 2 | Inverse matrix method | | 3 | Consistency of system |---
We begin with Matrix form of linear system.
Part 1: Matrix form of linear system
Matrix Form of Linear System
Overview
Writing a system of linear equations in matrix form is the natural first step before using elimination, determinants, inverse matrices, or rank ideas. The form organizes the system clearly and makes its structure visible. In exam problems, matrix form is not just notation — it often tells you immediately what the coefficient matrix is, whether the system is homogeneous, and what algebraic tools are available. ---Learning Objectives
After studying this topic, you will be able to:
- Write a linear system in the form .
- Identify the coefficient matrix, variable matrix, and constant matrix.
- Write the augmented matrix correctly.
- Distinguish homogeneous and non-homogeneous systems.
- Relate matrix form to solution methods.
Core Idea
A system of linear equations can be written as
where:
- is the coefficient matrix,
- is the column matrix of unknowns,
- is the column matrix of constants.
Components of the Matrix Form
The matrix formed by the coefficients of the variables is called the coefficient matrix.
For the system
the coefficient matrix is
The variable matrix is
and the constant matrix is
Dimensions Matter
If is an matrix, then:
- must be an column matrix,
- must be an column matrix.
Only then is the product defined.
Augmented Matrix
The augmented matrix of the system is obtained by appending the constant column to the coefficient matrix :
Homogeneous and Non-Homogeneous Systems
A system is called homogeneous if
that is, if all constants are zero.
Every homogeneous system has at least the trivial solution
Minimal Worked Examples
Example 1 Write the system in matrix form. We write $\qquad A=\begin{pmatrix}1&2&-1\\2&-1&3\\3&1&2\end{pmatrix},\quad X=\begin{pmatrix}x\\y\\z\end{pmatrix},\quad B=\begin{pmatrix}1\\4\\5\end{pmatrix}$ Hence --- Example 2 The system is homogeneous, since the constant matrix is ::: ---Why Matrix Form Is Useful
Matrix form helps with:
- inverse matrix method,
- elimination and row operations,
- determinant tests for square systems,
- homogeneous vs non-homogeneous structure,
- counting equations and variables quickly.
Common Mistakes
- ❌ Mixing coefficients and constants into the same matrix when writing
- ❌ Writing the variable matrix as a row instead of a column
- ❌ Forgetting the zero constants in a homogeneous system
- ❌ Using the wrong matrix dimensions
CMI Strategy
- Read the coefficients row by row.
- Place variables in a column vector.
- Put constants into a separate column vector.
- Check dimensions.
- If asked for the augmented matrix, append the constant column after the coefficient matrix.
Practice Questions
:::question type="MCQ" question="The coefficient matrix of the system is" options=["","","",""] answer="A" hint="Take only the coefficients of the variables." solution="The coefficient matrix is formed from the coefficients of and only, so it is . Hence the correct option is ." ::: :::question type="NAT" question="A linear system has equations and unknowns. How many rows does its coefficient matrix have?" answer="3" hint="Rows correspond to equations." solution="The coefficient matrix has one row for each equation. Since there are equations, it has rows." ::: :::question type="MSQ" question="Which of the following are true?" options=["In , is the coefficient matrix","In , is the column matrix of variables","If , the system is homogeneous","A non-square system can never be written in matrix form"] answer="A,B,C" hint="Think about the roles of ." solution="1. True. 2. True. 3. True. 4. False. Rectangular coefficient matrices are also allowed in matrix form. Hence the correct answer is ." ::: :::question type="SUB" question="Write the system in the form , and also write its augmented matrix." answer="" hint="Take coefficients row by row." solution="The coefficient matrix is $\qquad A=\begin{pmatrix} 1&2&-1\\ 2&-1&3\\ 3&1&2 \end{pmatrix}$ The variable matrix is The constant matrix is So the system is Its augmented matrix is $\qquad \left[\begin{array}{ccc|c} 1&2&-1&1\\ 2&-1&3&4\\ 3&1&2&5 \end{array}\right]$ Hence the required matrices are written correctly." ::: ---Summary
- Matrix form organizes a linear system as .
- The coefficient matrix, variable matrix, and constant matrix have different roles.
- The augmented matrix is useful for elimination.
- Homogeneous systems are exactly those with .
- Dimension checking prevents many notation errors.
---
Proceeding to Inverse matrix method.
---
Part 2: Inverse matrix method
Inverse Matrix Method
Overview
The inverse matrix method solves a linear system by writing it in matrix form and then multiplying by the inverse of the coefficient matrix. It is one of the cleanest algebraic methods for systems of equations, but it works only when the coefficient matrix is invertible. In exam problems, the important skills are checking invertibility, finding the inverse correctly, and interpreting what invertibility means for the system. ---Learning Objectives
After studying this topic, you will be able to:
- Write a system as .
- Recognize when the inverse matrix method is applicable.
- Compute the inverse of a matrix correctly.
- Solve systems using .
- Understand why an invertible coefficient matrix gives a unique solution.
Core Idea
Suppose a linear system is written as
where:
- is the coefficient matrix,
- is the column matrix of variables,
- is the column matrix of constants.
If is invertible, then multiplying both sides by gives
so
When Does It Work?
The inverse matrix method works only when:
- the coefficient matrix is square, and
- is invertible.
For a square matrix, invertibility is equivalent to
Inverse of a Matrix
If
and
,
then
Do not forget the factor
and do not change the signs incorrectly on the off-diagonal entries.
What Invertibility Means for the System
If is invertible, then the system
has exactly one solution, namely
Minimal Worked Examples
Example 1 Solve Write $\qquad A=\begin{pmatrix}2&1\\1&2\end{pmatrix},\quad X=\begin{pmatrix}x\\y\end{pmatrix},\quad B=\begin{pmatrix}5\\4\end{pmatrix}$ Now So Hence $\qquad X=A^{-1}B =\dfrac{1}{3}\begin{pmatrix}2&-1\\-1&2\end{pmatrix}\begin{pmatrix}5\\4\end{pmatrix} =\dfrac{1}{3}\begin{pmatrix}6\\3\end{pmatrix} =\begin{pmatrix}2\\1\end{pmatrix}$ So --- Example 2 For , the inverse exists only when So the inverse matrix method is applicable exactly when ::: ---Common Mistakes
- ❌ Using the inverse method when the coefficient matrix is not square
- ❌ Ignoring the determinant condition
- ❌ Writing the inverse formula incorrectly
- ❌ Multiplying matrices in the wrong order
- ❌ Forgetting that , not
CMI Strategy
- First write the system as .
- Check whether is square.
- Compute before trying to invert.
- If , find and compute .
- If a parameter is present, first find when the determinant is nonzero.
Practice Questions
:::question type="MCQ" question="The inverse matrix method for solving is applicable when" options=[" is any matrix"," is square and "," only"," is triangular"] answer="B" hint="Think about when exists." solution="The inverse matrix method requires the inverse of to exist. This happens when is square and . Therefore the correct option is ." ::: :::question type="NAT" question="For the system , find ." answer="2" hint="Use the inverse method or solve directly after forming the matrix." solution="The coefficient matrix is with determinant , so the inverse method applies. Solving gives . Hence the required value is ." ::: :::question type="MSQ" question="Which of the following are true?" options=["If is invertible, then is unique","If , then is invertible","If is invertible, then has only the trivial solution","If is invertible and , then "] answer="A,C,D" hint="Use standard properties of invertible matrices." solution="1. True. 2. False. If , then is singular. 3. True. 4. True, because multiplying by gives . Hence the correct answer is ." ::: :::question type="SUB" question="Solve the system using the inverse matrix method." answer="" hint="Form and compute ." solution="Write $\qquad A=\begin{pmatrix}2&1\\1&2\end{pmatrix},\quad X=\begin{pmatrix}x\\y\end{pmatrix},\quad B=\begin{pmatrix}5\\4\end{pmatrix}$ Now Hence Therefore $\qquad X=A^{-1}B =\dfrac{1}{3}\begin{pmatrix}2&-1\\-1&2\end{pmatrix}\begin{pmatrix}5\\4\end{pmatrix} =\dfrac{1}{3}\begin{pmatrix}6\\3\end{pmatrix} =\begin{pmatrix}2\\1\end{pmatrix}$ So the solution is ." ::: ---Summary
- The inverse matrix method solves via .
- It works only when is square and invertible.
- For a matrix, invertibility is equivalent to nonzero determinant.
- The method automatically gives uniqueness of the solution.
- Accuracy in inverse computation is essential.
---
Proceeding to Consistency of system.
---
Part 3: Consistency of system
Consistency of System
Overview
A system of linear equations is called consistent if it has at least one solution and inconsistent if it has no solution. For a system, consistency is governed by one central quantity: the determinant of the coefficient matrix. In CMI-style questions, this topic is tested not just by solving equations, but by deciding whether the system has exactly one solution, no solution, or infinitely many solutions, often in terms of parameters. ---Learning Objectives
After studying this topic, you will be able to:
- determine whether a linear system is consistent,
- distinguish between unique, no, and infinitely many solutions,
- use the determinant condition correctly,
- solve parameter-dependent consistency problems,
- connect algebraic criteria with the geometry of lines in the plane.
Core Setup
Consider the system
with coefficient matrix
The determinant of the coefficient matrix is
Determinant Criterion
If
then the system has exactly one solution.
The Case
If
then the coefficient rows are linearly dependent.
In this case, the system cannot have exactly one solution. It has either:
- no solution, or
- infinitely many solutions.
Consistency When
If , then the two left-hand sides are proportional. Therefore:
- if the right-hand sides are proportional in the same way, the system has infinitely many solutions,
- otherwise the system has no solution.
Cramer's Rule
If
then the unique solution is
Geometric Interpretation
Each equation represents a line in the -plane.
- means the lines intersect at exactly one point.
- and consistent means the lines coincide.
- and inconsistent means the lines are parallel and distinct.
Special Structure of the Symmetric System
For the system
the coefficient matrix is symmetric:
This symmetry often makes the determinant easy to read:
Minimal Worked Examples
Example 1 Determine the nature of solutions of Here So the system has exactly one solution. --- Example 2 Determine the nature of solutions of Here The coefficient rows are proportional, since the second left-hand side is twice the first. But the right-hand side should also be doubled, and . Hence the system has no solution. --- Example 3 Determine the nature of solutions of Now Also the second equation is obtained by multiplying the first by because $\qquad \sqrt{\frac{3}{2}}\cdot 2 = \sqrt{6}, \qquad \sqrt{\frac{3}{2}}\cdot \sqrt{6} = 3, \qquad \sqrt{\frac{3}{2}}\cdot \sqrt{2} = \sqrt{3}$ So both equations represent the same line. Hence the system has infinitely many solutions. ---AM-GM Insight for the Special Topic
If
and are distinct, then by AM-GM,
So
Common Patterns
- check whether is zero or nonzero,
- decide between unique, no, and infinitely many solutions,
- determine parameter values for consistency,
- prove a statement about using ,
- use Cramer's rule when the determinant is nonzero.
Common Mistakes
- ❌ assuming means infinitely many solutions,
- ❌ checking only the coefficient rows when ,
- ❌ solving directly before testing the determinant,
- ❌ forgetting that exactly one solution is impossible when ,
CMI Strategy
- Compute immediately.
- If , say "exactly one solution" and solve if needed.
- If , test whether one equation is a scalar multiple of the other including the right-hand side.
- Use geometry when helpful: intersecting, parallel, or coincident lines.
- In proof questions, exploit with AM-GM or proportionality.
Practice Questions
:::question type="MCQ" question="The system has exactly one solution when" options=["","","",""] answer="B" hint="Check the determinant of the coefficient matrix." solution="The coefficient matrix is Its determinant is A system has exactly one solution precisely when this determinant is nonzero. Hence the correct option is ." ::: :::question type="NAT" question="For the system , how many solutions does the system have?" answer="0" hint="Check whether the second equation is a compatible multiple of the first." solution="The determinant is So the system cannot have a unique solution. The second left-hand side is twice the first, but the right-hand side should then also be twice the first right-hand side. Since , the system is inconsistent. Hence the number of solutions is ." ::: :::question type="MSQ" question="Which of the following statements are true for the system ?" options=["If , the system has exactly one solution","If , the system can have infinitely many solutions","If , the system can have no solution","If , the system has exactly one solution"] answer="A,B,C" hint="Zero determinant is the no-solution or infinitely-many-solutions case." solution="1. True. Nonzero determinant gives a unique solution.- exactly one solution for
- no solution for
- infinitely many solutions for
Summary
❗ Key Takeaways for CMI- For a system, the determinant is the first consistency test.
- gives exactly one solution.
- gives either no solution or infinitely many solutions.
- In the zero-determinant case, compare the full equations, not just the coefficients.
- For positive distinct parameters with , AM-GM often becomes useful.
- Geometry and determinant logic should be used together.
---
Chapter Summary
❗ Systems of equations — Key PointsA system of linear equations can be compactly represented in matrix form as , where is the coefficient matrix, is the vector of variables, and is the constant vector.
The solvability of a square system is largely determined by the determinant of the coefficient matrix, .
If , the matrix is non-singular and invertible. In this case, a unique solution exists, given by .
If , the matrix is singular. The system may then have infinitely many solutions (consistent) or no solutions (inconsistent).
Consistency of a system is rigorously determined by comparing the rank of the coefficient matrix with the rank of the augmented matrix .
A system is consistent if and only if . If this common rank equals the number of variables, , a unique solution exists. If it is less than , infinitely many solutions exist.
* A system is inconsistent (no solutions) if . Homogeneous systems () are always consistent, having at least the trivial solution . Non-trivial solutions exist for homogeneous systems if and only if .---
Chapter Review Questions
:::question type="MCQ" question="Consider the system of equations:
Which of the following statements is true regarding the solution of this system?" options=["The system has a unique solution.","The system has infinitely many solutions.","The system is inconsistent.","The system has a trivial solution."] answer="The system has a unique solution." hint="Calculate the determinant of the coefficient matrix. If it's non-zero, a unique solution exists." solution="The coefficient matrix is .
The determinant of is
.
Since , the matrix is non-singular, and thus the system has a unique solution."
::::::question type="NAT" question="For what value of does the system of equations
have infinitely many solutions?" answer="3" hint="For infinitely many solutions, the determinant of the coefficient matrix must be zero, and the ranks of the coefficient and augmented matrices must be equal and less than the number of variables." solution="The coefficient matrix is .
For the system to have infinitely many solutions, must be zero.
.
Setting , we get .
Now we check the consistency for using the augmented matrix:
Perform row operations:
:
:
:
Here, and . Since the number of variables and , the system has infinitely many solutions for ."
::::::question type="MCQ" question="Consider the homogeneous system , where is a matrix. Which of the following conditions guarantees that the system has non-trivial solutions?" options=["",""," is invertible",""] answer="" hint="A homogeneous system always has the trivial solution. Non-trivial solutions exist if and only if the coefficient matrix is singular." solution="For a homogeneous system , non-trivial solutions exist if and only if the matrix is singular, meaning . This condition is equivalent to , where is the number of variables (here, ). Therefore, guarantees non-trivial solutions. Options A, B, and C all imply that is non-singular, which means only the trivial solution exists for ."
::::::question type="MCQ" question="If is an non-singular matrix, and is a system of linear equations, which of the following is true?" options=["The system has infinitely many solutions.","The system has a unique solution given by .","The system is inconsistent.","The system has a trivial solution only if ."] answer="The system has a unique solution given by ." hint="A non-singular matrix implies its determinant is non-zero and its inverse exists." solution="A non-singular matrix means that . This implies that is invertible, and its inverse exists. For a system , if exists, we can multiply both sides by to get . This unique solution guarantees that the system is consistent and does not have infinitely many solutions. The concept of a trivial solution (where ) applies specifically to homogeneous systems () and is only a possibility when ."
:::---
What's Next?
💡 Continue Your CMI JourneyThe concepts of matrices, determinants, and rank are foundational for advanced topics in linear algebra. You will encounter these again when studying vector spaces, linear transformations, and eigenvalues and eigenvectors. Understanding how systems of equations relate to the intersection of geometric objects (lines, planes) will also be crucial in 3D Geometry.
- no solution for