100% FREE Updated: Apr 2026 Vectors, Matrices and 3D Geometry Matrices and Determinants

Systems of equations

Comprehensive study notes on Systems of equations for CMI BS Hons preparation. This chapter covers key concepts, formulas, and examples needed for your exam.

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 AX=B\qquad AX=B 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

By the End of This Topic

After studying this topic, you will be able to:

  • Write a linear system in the form AX=BAX=B.

  • 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

📖 Matrix Form

A system of linear equations can be written as

AX=B\qquad AX=B

where:

    • AA is the coefficient matrix,

    • XX is the column matrix of unknowns,

    • BB is the column matrix of constants.

For example, the system x+2y=3\qquad x+2y=3 3xy=5\qquad 3x-y=5 can be written as (1231)(x\y)=(35)\qquad \begin{pmatrix}1 & 2\\3 & -1\end{pmatrix}\begin{pmatrix}x\y\end{pmatrix}=\begin{pmatrix}3\\5\end{pmatrix} ::: ---

Components of the Matrix Form

📐 Coefficient Matrix

The matrix formed by the coefficients of the variables is called the coefficient matrix.

For the system

a11x1+a12x2++a1nxn=b1\qquad a_{11}x_1+a_{12}x_2+\cdots+a_{1n}x_n=b_1

a21x1+a22x2++a2nxn=b2\qquad a_{21}x_1+a_{22}x_2+\cdots+a_{2n}x_n=b_2

\qquad \vdots

am1x1+am2x2++amnxn=bm\qquad a_{m1}x_1+a_{m2}x_2+\cdots+a_{mn}x_n=b_m

the coefficient matrix is

A=(aij)m×n\qquad A=(a_{ij})_{m\times n}

📐 Variable and Constant Matrices

The variable matrix is

X=(x1\x2xn)\qquad X=\begin{pmatrix}x_1\x_2\\ \vdots \\ x_n\end{pmatrix}

and the constant matrix is

B=(b1\b2bm)\qquad B=\begin{pmatrix}b_1\b_2\\ \vdots \\ b_m\end{pmatrix}

---

Dimensions Matter

Dimension Check

If AA is an m×nm\times n matrix, then:

    • XX must be an n×1n\times 1 column matrix,

    • BB must be an m×1m\times 1 column matrix.


Only then is the product AXAX defined.

This is one of the first things to check in matrix form problems. ::: ---

Augmented Matrix

📐 Augmented Matrix

The augmented matrix of the system AX=BAX=B is obtained by appending the constant column BB to the coefficient matrix AA:

[AB]\qquad [A\mid B]

For the system x+2y=3,3xy=5\qquad x+2y=3,\quad 3x-y=5 the augmented matrix is [123315]\qquad \left[\begin{array}{cc|c}1 & 2 & 3\\3 & -1 & 5\end{array}\right] ::: This is especially useful in elimination and row reduction. ::: ---

Homogeneous and Non-Homogeneous Systems

📖 Homogeneous System

A system is called homogeneous if

AX=0\qquad AX=0

that is, if all constants are zero.

Immediate Fact

Every homogeneous system has at least the trivial solution

X=0\qquad X=0

A non-homogeneous system has the form AX=B\qquad AX=B with B0B\ne 0. ::: ---

Minimal Worked Examples

Example 1 Write the system x+2yz=1\qquad x+2y-z=1 2xy+3z=4\qquad 2x-y+3z=4 3x+y+2z=5\qquad 3x+y+2z=5 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 AX=B\qquad AX=B --- Example 2 The system x+y=0\qquad x+y=0 2xy=0\qquad 2x-y=0 is homogeneous, since the constant matrix is (00)\qquad \begin{pmatrix}0\\0\end{pmatrix} ::: ---

Why Matrix Form Is Useful

💡 What Matrix Form Helps You See

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

⚠️ Avoid These Errors
    • ❌ Mixing coefficients and constants into the same matrix when writing AA
    • ❌ 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

💡 How to Attack These Questions

  • 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 x+2y=3, 3xy=5x+2y=3,\ 3x-y=5 is" options=["(1231)\begin{pmatrix}1 & 2\\3 & -1\end{pmatrix}","(123315)\begin{pmatrix}1 & 2 & 3\\3 & -1 & 5\end{pmatrix}","(x\y)\begin{pmatrix}x\y\end{pmatrix}","(35)\begin{pmatrix}3\\5\end{pmatrix}"] answer="A" hint="Take only the coefficients of the variables." solution="The coefficient matrix is formed from the coefficients of xx and yy only, so it is (1231)\qquad \begin{pmatrix}1 & 2\\3 & -1\end{pmatrix}. Hence the correct option is A\boxed{A}." ::: :::question type="NAT" question="A linear system has 33 equations and 22 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 33 equations, it has 3\boxed{3} rows." ::: :::question type="MSQ" question="Which of the following are true?" options=["In AX=BAX=B, AA is the coefficient matrix","In AX=BAX=B, XX is the column matrix of variables","If B=0B=0, 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 A,X,BA,X,B." solution="1. True. 2. True. 3. True. 4. False. Rectangular coefficient matrices are also allowed in matrix form. Hence the correct answer is A,B,C\boxed{A,B,C}." ::: :::question type="SUB" question="Write the system x+2yz=1, 2xy+3z=4, 3x+y+2z=5x+2y-z=1,\ 2x-y+3z=4,\ 3x+y+2z=5 in the form AX=BAX=B, and also write its augmented matrix." answer="A=(121213312), X=(x\y\z), B=(145)A=\begin{pmatrix}1 & 2 & -1\\2 & -1 & 3\\3 & 1 & 2\end{pmatrix},\ X=\begin{pmatrix}x\y\z\end{pmatrix},\ B=\begin{pmatrix}1\\4\\5\end{pmatrix}" 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 X=(x\y\z)\qquad X=\begin{pmatrix}x\y\z\end{pmatrix} The constant matrix is B=(145)\qquad B=\begin{pmatrix}1\\4\\5\end{pmatrix} So the system is AX=B\qquad AX=B 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

Key Takeaways for CMI

  • Matrix form organizes a linear system as AX=BAX=B.

  • The coefficient matrix, variable matrix, and constant matrix have different roles.

  • The augmented matrix is useful for elimination.

  • Homogeneous systems are exactly those with B=0B=0.

  • Dimension checking prevents many notation errors.

---

💡 Next Up

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

By the End of This Topic

After studying this topic, you will be able to:

  • Write a system as AX=BAX=B.

  • Recognize when the inverse matrix method is applicable.

  • Compute the inverse of a 2×22\times 2 matrix correctly.

  • Solve systems using X=A1BX=A^{-1}B.

  • Understand why an invertible coefficient matrix gives a unique solution.

---

Core Idea

📖 Inverse Matrix Method

Suppose a linear system is written as

AX=B\qquad AX=B

where:

    • AA is the coefficient matrix,

    • XX is the column matrix of variables,

    • BB is the column matrix of constants.


If AA is invertible, then multiplying both sides by A1A^{-1} gives

A1AX=A1B\qquad A^{-1}AX = A^{-1}B

so

X=A1B\qquad X = A^{-1}B

This is the inverse matrix method. ::: ---

When Does It Work?

Applicability Condition

The inverse matrix method works only when:

  • the coefficient matrix AA is square, and

  • AA is invertible.


For a square matrix, invertibility is equivalent to

det(A)0\qquad \det(A)\ne 0

So for a 2×22\times 2 system, the method works exactly when the determinant is nonzero. ::: ---

Inverse of a 2×22\times 2 Matrix

📐 Standard Formula

If

A=(abcd)\qquad A=\begin{pmatrix} a & b \\ c & d \end{pmatrix}

and

adbc0\qquad ad-bc\ne 0,

then

A1=1adbc(dbca)\qquad A^{-1}=\dfrac{1}{ad-bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}

⚠️ Main Trap

Do not forget the factor

1adbc\qquad \dfrac{1}{ad-bc}

and do not change the signs incorrectly on the off-diagonal entries.

---

What Invertibility Means for the System

Unique Solution

If AA is invertible, then the system

AX=B\qquad AX=B

has exactly one solution, namely

X=A1B\qquad X=A^{-1}B

Also, the homogeneous system AX=0\qquad AX=0 has only the trivial solution X=0\qquad X=0 ::: ---

Minimal Worked Examples

Example 1 Solve 2x+y=5\qquad 2x+y=5 x+2y=4\qquad x+2y=4 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 det(A)=41=30\qquad \det(A)=4-1=3\ne 0 So A1=13(2112)\qquad A^{-1}=\dfrac{1}{3}\begin{pmatrix}2 & -1\\-1 & 2\end{pmatrix} 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 x=2, y=1\qquad x=2,\ y=1 --- Example 2 For A=(112k)\qquad A=\begin{pmatrix}1 & 1\\2 & k\end{pmatrix}, the inverse exists only when det(A)=k20\qquad \det(A)=k-2\ne 0 So the inverse matrix method is applicable exactly when k2\qquad k\ne 2 ::: ---

Common Mistakes

⚠️ Avoid These Errors
    • ❌ 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 A1A=IA^{-1}A=I, not AA1=0AA^{-1}=0
---

CMI Strategy

💡 How to Attack These Questions

  • First write the system as AX=BAX=B.

  • Check whether AA is square.

  • Compute det(A)\det(A) before trying to invert.

  • If det(A)0\det(A)\ne 0, find A1A^{-1} and compute A1BA^{-1}B.

  • If a parameter is present, first find when the determinant is nonzero.

---

Practice Questions

:::question type="MCQ" question="The inverse matrix method for solving AX=BAX=B is applicable when" options=["AA is any matrix","AA is square and det(A)0\det(A)\ne 0","B=0B=0 only","AA is triangular"] answer="B" hint="Think about when A1A^{-1} exists." solution="The inverse matrix method requires the inverse of AA to exist. This happens when AA is square and det(A)0\det(A)\ne 0. Therefore the correct option is B\boxed{B}." ::: :::question type="NAT" question="For the system 2x+y=5, x+2y=42x+y=5,\ x+2y=4, find xx." answer="2" hint="Use the inverse method or solve directly after forming the matrix." solution="The coefficient matrix is (2112)\qquad \begin{pmatrix}2 & 1\\1 & 2\end{pmatrix} with determinant 303\ne 0, so the inverse method applies. Solving gives x=2, y=1\qquad x=2,\ y=1. Hence the required value is 2\boxed{2}." ::: :::question type="MSQ" question="Which of the following are true?" options=["If AA is invertible, then A1A^{-1} is unique","If det(A)=0\det(A)=0, then AA is invertible","If AA is invertible, then AX=0AX=0 has only the trivial solution","If AA is invertible and AB=ACAB=AC, then B=CB=C"] answer="A,C,D" hint="Use standard properties of invertible matrices." solution="1. True. 2. False. If det(A)=0\det(A)=0, then AA is singular. 3. True. 4. True, because multiplying by A1A^{-1} gives B=CB=C. Hence the correct answer is A,C,D\boxed{A,C,D}." ::: :::question type="SUB" question="Solve the system 2x+y=5, x+2y=42x+y=5,\ x+2y=4 using the inverse matrix method." answer="x=2, y=1x=2,\ y=1" hint="Form AX=BAX=B and compute A1A^{-1}." 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 det(A)=2211=30\qquad \det(A)=2\cdot 2-1\cdot 1=3\ne 0 Hence A1=13(2112)\qquad A^{-1}=\dfrac{1}{3}\begin{pmatrix}2 & -1\\-1 & 2\end{pmatrix} 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 x=2, y=1\qquad \boxed{x=2,\ y=1}." ::: ---

Summary

Key Takeaways for CMI

  • The inverse matrix method solves AX=BAX=B via X=A1BX=A^{-1}B.

  • It works only when AA is square and invertible.

  • For a 2×22\times 2 matrix, invertibility is equivalent to nonzero determinant.

  • The method automatically gives uniqueness of the solution.

  • Accuracy in inverse computation is essential.

---

💡 Next Up

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 2×22\times 2 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

By the End of This Topic

After studying this topic, you will be able to:

  • determine whether a 2×22\times 2 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

📖 General 2×22\times 2 Linear System

Consider the system

ax+by=u\qquad ax + by = u

bx+cy=v\qquad bx + cy = v

with coefficient matrix

A=(abbc)\qquad A = \begin{pmatrix} a & b \\ b & c \end{pmatrix}

The determinant of the coefficient matrix is

Δ=acb2\qquad \Delta = ac - b^2

This determinant is the main quantity that controls the nature of solutions. ---

Determinant Criterion

📐 Exactly One Solution

If

Δ=acb20\qquad \Delta = ac - b^2 \ne 0

then the system has exactly one solution.

This is because the matrix is invertible, or equivalently, the two equations represent two distinct non-parallel lines. ---

The Case Δ=0\Delta = 0

What Happens When the Determinant Is Zero?

If

Δ=acb2=0\qquad \Delta = ac - b^2 = 0

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.

So the determinant zero case is the delicate consistency case. ---

Consistency When Δ=0\Delta = 0

📐 Infinite or No Solutions

If Δ=0\Delta = 0, 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.

For the system ax+by=u\qquad ax + by = u bx+cy=v\qquad bx + cy = v with Δ=0\Delta = 0, consistency requires the two equations to represent the same line. If they represent parallel but distinct lines, there is no solution. ---

Cramer's Rule

📐 When Δ0\Delta \ne 0

If

Δ=acb20\qquad \Delta = ac - b^2 \ne 0

then the unique solution is

x=ucbvacb2\qquad x = \frac{uc - bv}{ac-b^2}

y=avbuacb2\qquad y = \frac{av - bu}{ac-b^2}

For the special system ax+by=2\qquad ax + by = \sqrt{2} bx+cy=3\qquad bx + cy = \sqrt{3} the unique solution is x=c2b3acb2\qquad x = \frac{c\sqrt{2} - b\sqrt{3}}{ac-b^2} y=a3b2acb2\qquad y = \frac{a\sqrt{3} - b\sqrt{2}}{ac-b^2} ::: ---

Geometric Interpretation

📖 Two Lines in the Plane

Each equation represents a line in the xyxy-plane.

    • Δ0\Delta \ne 0 means the lines intersect at exactly one point.

    • Δ=0\Delta = 0 and consistent means the lines coincide.

    • Δ=0\Delta = 0 and inconsistent means the lines are parallel and distinct.

This geometric picture is often the fastest way to understand the answer. ---

Special Structure of the Symmetric System

Symmetric Coefficient Matrix

For the system

ax+by=u\qquad ax + by = u

bx+cy=v\qquad bx + cy = v

the coefficient matrix is symmetric:

(abbc)\qquad \begin{pmatrix} a & b \\ b & c \end{pmatrix}

This symmetry often makes the determinant easy to read:

Δ=acb2\qquad \Delta = ac - b^2

Many parameter questions reduce immediately to checking whether acb2ac-b^2 vanishes. ---

Minimal Worked Examples

Example 1 Determine the nature of solutions of x+2y=1\qquad x + 2y = 1 2x+5y=4\qquad 2x + 5y = 4 Here Δ=1522=54=10\qquad \Delta = 1\cdot 5 - 2^2 = 5-4 = 1 \ne 0 So the system has exactly one solution. --- Example 2 Determine the nature of solutions of x+2y=1\qquad x + 2y = 1 2x+4y=3\qquad 2x + 4y = 3 Here Δ=1422=0\qquad \Delta = 1\cdot 4 - 2^2 = 0 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 21=232\cdot 1 = 2 \ne 3. Hence the system has no solution. --- Example 3 Determine the nature of solutions of 2x+6y=2\qquad 2x + \sqrt{6}\,y = \sqrt{2} 6x+3y=3\qquad \sqrt{6}\,x + 3y = \sqrt{3} Now Δ=23(6)2=66=0\qquad \Delta = 2\cdot 3 - (\sqrt{6})^2 = 6-6 = 0 Also the second equation is obtained by multiplying the first by 32\qquad \sqrt{\frac{3}{2}} 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

📐 When ac=b2ac=b^2 with Positive Distinct a,ca,c

If

ac=b2\qquad ac=b^2

and a,c>0a,c>0 are distinct, then by AM-GM,

a+c2>ac=b\qquad \frac{a+c}{2} > \sqrt{ac} = b

So

a+c>2b\qquad a+c > 2b

This is a useful structural fact in problems involving determinant zero. ---

Common Patterns

📐 Patterns to Recognize

  • check whether Δ\Delta is zero or nonzero,

  • decide between unique, no, and infinitely many solutions,

  • determine parameter values for consistency,

  • prove a statement about a,b,ca,b,c using ac=b2ac=b^2,

  • use Cramer's rule when the determinant is nonzero.

---

Common Mistakes

⚠️ Avoid These Errors
    • ❌ assuming Δ=0\Delta = 0 means infinitely many solutions,
✅ it can also mean no solution
    • ❌ checking only the coefficient rows when Δ=0\Delta = 0,
✅ also check the right-hand sides
    • ❌ solving directly before testing the determinant,
✅ determinant first, solving later
    • ❌ forgetting that exactly one solution is impossible when Δ=0\Delta = 0,
✅ zero determinant means either none or infinitely many
---

CMI Strategy

💡 How to Solve Fast

  • Compute Δ=acb2\Delta = ac-b^2 immediately.

  • If Δ0\Delta \ne 0, say "exactly one solution" and solve if needed.

  • If Δ=0\Delta = 0, 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 ac=b2ac=b^2 with AM-GM or proportionality.

---

Practice Questions

:::question type="MCQ" question="The system   ax+by=u,  bx+cy=v  \; ax+by=u,\; bx+cy=v \; has exactly one solution when" options=["acb2=0ac-b^2=0","acb20ac-b^2\ne 0","a+b+c=0a+b+c=0","u=vu=v"] answer="B" hint="Check the determinant of the coefficient matrix." solution="The coefficient matrix is (abbc)\qquad \begin{pmatrix} a & b \\ b & c \end{pmatrix} Its determinant is acb2\qquad ac-b^2 A 2×22\times 2 system has exactly one solution precisely when this determinant is nonzero. Hence the correct option is B\boxed{B}." ::: :::question type="NAT" question="For the system   x+2y=1,  2x+4y=3  \; x+2y=1,\; 2x+4y=3 \;, 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 1422=0\qquad 1\cdot 4 - 2^2 = 0 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 21=232\cdot 1=2 \ne 3, the system is inconsistent. Hence the number of solutions is 0\boxed{0}." ::: :::question type="MSQ" question="Which of the following statements are true for the system   ax+by=u,  bx+cy=v  \; ax+by=u,\; bx+cy=v \;?" options=["If acb20ac-b^2\ne 0, the system has exactly one solution","If acb2=0ac-b^2=0, the system can have infinitely many solutions","If acb2=0ac-b^2=0, the system can have no solution","If acb2=0ac-b^2=0, 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.
  • True. If the equations are proportional including the right-hand side, the system has infinitely many solutions.
  • True. If the equations are proportional on the left but not on the right, the system has no solution.
  • False. Zero determinant rules out a unique solution.
  • Hence the correct answer is A,B,C\boxed{A,B,C}." ::: :::question type="SUB" question="Find all values of kk for which the system   (k1)x+y=1,  2x+(k+1)y=3  \; (k-1)x+y=1,\; 2x+(k+1)y=3 \; has exactly one solution, no solution, or infinitely many solutions." answer="Exactly one solution for k±3k\ne \pm\sqrt{3}, no solution for k=±3k=\pm\sqrt{3}, infinitely many solutions for no value of kk" hint="Use the determinant first." solution="The coefficient matrix is (k112k+1)\qquad \begin{pmatrix} k-1 & 1 \\ 2 & k+1 \end{pmatrix} Its determinant is (k1)(k+1)2=k23\qquad (k-1)(k+1)-2 = k^2-3 So the system has exactly one solution when k230\qquad k^2-3 \ne 0 that is, k±3\qquad k \ne \pm\sqrt{3} Now consider k=3\qquad k=\sqrt{3} Then the equations become (31)x+y=1\qquad (\sqrt{3}-1)x+y=1 2x+(3+1)y=3\qquad 2x+(\sqrt{3}+1)y=3 The coefficient rows are proportional because 231=3+1=3+11\qquad \frac{2}{\sqrt{3}-1} = \sqrt{3}+1 = \frac{\sqrt{3}+1}{1} But the right-hand side ratio is 31=33+1\qquad \frac{3}{1}=3 \ne \sqrt{3}+1 So the system has no solution. Similarly, for k=3\qquad k=-\sqrt{3} the determinant is also zero, the coefficient rows are proportional, but the right-hand side ratio again does not match, so the system has no solution. Therefore:
    • exactly one solution for k±3\boxed{k\ne \pm\sqrt{3}}
      • no solution for k=±3\boxed{k=\pm\sqrt{3}}
        • infinitely many solutions for no value of k\boxed{\text{no value of }k}
        ::: ---

        Summary

        Key Takeaways for CMI

        • For a 2×22\times 2 system, the determinant is the first consistency test.

        • Δ0\Delta \ne 0 gives exactly one solution.

        • Δ=0\Delta = 0 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 ac=b2ac=b^2, AM-GM often becomes useful.

        • Geometry and determinant logic should be used together.

        ---

        Chapter Summary

        Systems of equations — Key Points

        A system of linear equations can be compactly represented in matrix form as Ax=bAx=b, where AA is the coefficient matrix, xx is the vector of variables, and bb is the constant vector.
        The solvability of a square system Ax=bAx=b is largely determined by the determinant of the coefficient matrix, det(A)\det(A).
        If det(A)0\det(A) \neq 0, the matrix AA is non-singular and invertible. In this case, a unique solution exists, given by x=A1bx=A^{-1}b.
        If det(A)=0\det(A) = 0, the matrix AA is singular. The system may then have infinitely many solutions (consistent) or no solutions (inconsistent).
        Consistency of a system Ax=bAx=b is rigorously determined by comparing the rank of the coefficient matrix AA with the rank of the augmented matrix [Ab][A|b].
        A system is consistent if and only if rank(A)=rank([Ab])\operatorname{rank}(A) = \operatorname{rank}([A|b]). If this common rank equals the number of variables, nn, a unique solution exists. If it is less than nn, infinitely many solutions exist.
        * A system is inconsistent (no solutions) if rank(A)rank([Ab])\operatorname{rank}(A) \neq \operatorname{rank}([A|b]). Homogeneous systems (Ax=0Ax=0) are always consistent, having at least the trivial solution x=0x=0. Non-trivial solutions exist for homogeneous systems if and only if det(A)=0\det(A)=0.

        ---

        Chapter Review Questions

        :::question type="MCQ" question="Consider the system of equations:

        x+2yz=12xy+z=33x+y+2z=4\begin{aligned}x + 2y - z & = 1 \\
        2x - y + z & = 3 \\
        3x + y + 2z & = 4\end{aligned}

        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 A=(121211312)A = \begin{pmatrix} 1 & 2 & -1 \\ 2 & -1 & 1 \\ 3 & 1 & 2 \end{pmatrix}.
        The determinant of AA is det(A)=1((1)(2)(1)(1))2((2)(2)(1)(3))+(1)((2)(1)(1)(3))\det(A) = 1((-1)(2) - (1)(1)) - 2((2)(2) - (1)(3)) + (-1)((2)(1) - (-1)(3))
        =1(21)2(43)1(2+3)= 1(-2-1) - 2(4-3) - 1(2+3)
        =32(1)1(5)= -3 - 2(1) - 1(5)
        =325=10= -3 - 2 - 5 = -10.
        Since det(A)=100\det(A) = -10 \neq 0, the matrix AA is non-singular, and thus the system has a unique solution."
        :::

        :::question type="NAT" question="For what value of kk does the system of equations

        x+y+z=6x+2y+3z=10x+2y+kz=10\begin{aligned}x + y + z & = 6 \\
        x + 2y + 3z & = 10 \\
        x + 2y + kz & = 10\end{aligned}

        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 A=(11112312k)A = \begin{pmatrix} 1 & 1 & 1 \\ 1 & 2 & 3 \\ 1 & 2 & k \end{pmatrix}.
        For the system to have infinitely many solutions, det(A)\det(A) must be zero.
        det(A)=1(2k6)1(k3)+1(22)=2k6k+3=k3\det(A) = 1(2k-6) - 1(k-3) + 1(2-2) = 2k-6 - k+3 = k-3.
        Setting det(A)=0\det(A)=0, we get k3=0    k=3k-3=0 \implies k=3.
        Now we check the consistency for k=3k=3 using the augmented matrix:
        [Ab]=(11161231012310)[A|b] = \begin{pmatrix} 1 & 1 & 1 & | & 6 \\ 1 & 2 & 3 & | & 10 \\ 1 & 2 & 3 & | & 10 \end{pmatrix}
        Perform row operations:
        R2R2R1R_2 \to R_2 - R_1: (1116012412310)\begin{pmatrix} 1 & 1 & 1 & | & 6 \\ 0 & 1 & 2 & | & 4 \\ 1 & 2 & 3 & | & 10 \end{pmatrix}
        R3R3R1R_3 \to R_3 - R_1: (111601240124)\begin{pmatrix} 1 & 1 & 1 & | & 6 \\ 0 & 1 & 2 & | & 4 \\ 0 & 1 & 2 & | & 4 \end{pmatrix}
        R3R3R2R_3 \to R_3 - R_2: (111601240000)\begin{pmatrix} 1 & 1 & 1 & | & 6 \\ 0 & 1 & 2 & | & 4 \\ 0 & 0 & 0 & | & 0 \end{pmatrix}
        Here, rank(A)=2\operatorname{rank}(A) = 2 and rank([Ab])=2\operatorname{rank}([A|b]) = 2. Since the number of variables n=3n=3 and rank(A)=rank([Ab])<n\operatorname{rank}(A) = \operatorname{rank}([A|b]) < n, the system has infinitely many solutions for k=3k=3."
        :::

        :::question type="MCQ" question="Consider the homogeneous system Ax=0Ax=0, where AA is a 3×33 \times 3 matrix. Which of the following conditions guarantees that the system has non-trivial solutions?" options=["rank(A)=3\operatorname{rank}(A) = 3","det(A)0\det(A) \neq 0","AA is invertible","rank(A)<3\operatorname{rank}(A) < 3"] answer="rank(A)<3\operatorname{rank}(A) < 3" 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 Ax=0Ax=0, non-trivial solutions exist if and only if the matrix AA is singular, meaning det(A)=0\det(A)=0. This condition is equivalent to rank(A)<n\operatorname{rank}(A) < n, where nn is the number of variables (here, n=3n=3). Therefore, rank(A)<3\operatorname{rank}(A) < 3 guarantees non-trivial solutions. Options A, B, and C all imply that AA is non-singular, which means only the trivial solution exists for Ax=0Ax=0."
        :::

        :::question type="MCQ" question="If AA is an n×nn \times n non-singular matrix, and Ax=bAx=b 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 x=A1bx=A^{-1}b.","The system is inconsistent.","The system has a trivial solution only if b=0b=0."] answer="The system has a unique solution given by x=A1bx=A^{-1}b." hint="A non-singular matrix implies its determinant is non-zero and its inverse exists." solution="A non-singular matrix AA means that det(A)0\det(A) \neq 0. This implies that AA is invertible, and its inverse A1A^{-1} exists. For a system Ax=bAx=b, if A1A^{-1} exists, we can multiply both sides by A1A^{-1} to get A1(Ax)=A1b    Ix=A1b    x=A1bA^{-1}(Ax) = A^{-1}b \implies Ix = A^{-1}b \implies x = A^{-1}b. This unique solution guarantees that the system is consistent and does not have infinitely many solutions. The concept of a trivial solution (where x=0x=0) applies specifically to homogeneous systems (Ax=0Ax=0) and is only a possibility when b=0b=0."
        :::

        ---

        What's Next?

        💡 Continue Your CMI Journey

        The 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.

    🎯 Key Points to Remember

    • Master the core concepts in Systems of equations before moving to advanced topics
    • Practice with previous year questions to understand exam patterns
    • Review short notes regularly for quick revision before exams

    Related Topics in Vectors, Matrices and 3D Geometry

    More Resources

    Why Choose MastersUp?

    🎯

    AI-Powered Plans

    Personalized study schedules based on your exam date and learning pace

    📚

    15,000+ Questions

    Verified questions with detailed solutions from past papers

    📊

    Smart Analytics

    Track your progress with subject-wise performance insights

    🔖

    Bookmark & Revise

    Save important questions for quick revision before exams

    Start Your Free Preparation →

    No credit card required • Free forever for basic features