Documentation:CHBE Exam Wiki/Unique Solution, No Solution, or Infinite Solutions

From UBC Wiki

Learning Objectives

By the end of this section you should be able to:

  1. Understand the difference between unique solutions, no solutions, and infinitely many solutions.
  2. Recognize when a matrix has a unique solution, no solutions, or infinitely many solutions.
  3. Recognize when a matrix has a unique solution, no solutions, or infinitely many solutions using python.

Introduction

There are three different types of solutions for a system of linear equations: unique solutions, no solutions, or infinitely many solutions. The structure of your matrix after you row reduce will inform you on what type of solution you have.

Unique Solution

The example shown previously in this module had a unique solution. The structure of the row reduced matrix was

and the solution was

As you can see, each variable in the matrix can have only one possible value, and this is how you know that this matrix has one unique solution.

No solution

Let's suppose you have a system of linear equations that consist of:

The augmented matrix is

and the row reduced matrix is

As you can see, the final row states that

which impossible, 0 cannot equal -3. Therefore this system of linear equations has no solution.

Infinite Solutions

Let's suppose you have a system of linear equations that consist of:

The augmented matrix is

and the row reduced matrix is

As you can see, the final row of the row reduced matrix consists of 0. This means that for any value of Z, there will be a unique solution of x and y, therefore this system of linear equations has infinite solutions'--SaidZaidAlkailani (talk) 14:43, 13 January 2018 (PST).