Search⌘ K
AI Features

Geometric Interpretation of Inconsistency

Learn to identify inconsistent linear systems through their geometric interpretations. This lesson covers how parallelism and non-coincident intersections among lines and planes cause no solutions in two and three dimensions, helping you visualize and understand inconsistency in linear algebra.

Inconsistent linear system

An inconsistent linear system is a linear system that doesn’t possess any solution. As explained previously, we can identify such a linear system by the presence of a pivot in the last column of the rrefrref of its augmented matrix. In this lesson, we’ll present the geometric interpretations of inconsistent linear systems with examples.

Geometrically, the case of no solution in linear systems arises from two possible sources.

Parallelism

No solution exists when a given set of lines, planes, or spaces are parallel to each other. In the following subsection, we present graphical representations of two-dimensional and three-dimensional linear entities, while leaving higher dimensional linear entities to the reader's imagination.

Lines

The linear system above is inconsistent. In particular, there’s no point (x,y)(x,y) that satisfies both equations. Geometrically, the equations represent lines in the xyxy-plane. As shown in the figure below, these lines are parallel and thus intersect nowhere.

Planes

The same phenomenon can be extended to planes. The linear system below represents two parallel planes that never intersect, therefore possessing no solution.

Non-coincident intersection

Other than parallelism, inconsistency also arises when the entities defined by the equations in the linear system fail to intersect coincidently.

Lines

In the system below, no pair of lines are parallel, but they fail to intersect at a common point.

(1):2x3y=5(1):2x−3y = 5

(2):4x3y=2(2):4x−3y = 2

(3):x12y=9(3):x-12y = -9

Every pair of lines intersect, but the linear system is inconsistent

We can regenerate the plot above by running the following code. We can also change the coefficients to experiment with the plot.

Python 3.8
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(-10., 10., 1)
y1 = (2*x-5)/3;
y2 = (4*x-2)/3;
y3 = (x+9)/12
plt.plot(x, y1, 'r', x, y2, 'g', x, y3, 'b')

Planes

Similarly, a three-dimensional linear system fails to possess a solution if the planes represented by the equations of the system fail to intersect at a common point (unique solution) or at a line (infinite solutions). Below is an example of such an inconsistent linear system in which each pair of planes meet but fail to intersect at a common point or line.

(1):2x+7y+9z=9(1): 2x+7y+9z=9

(2):3x+8y+5z=4(2): 3x+8y+5z=4

(3):5x+15y+14z=6(3): 5x+15y+14z=6

No common intersection line or point