Skip to main content

Section 1.1 Linear Systems, Vector Equations, and Augmented Matrices (LE1)

Subsection 1.1.1 Warm Up

Activity 1.1.1.

Consider the pairs of lines described by the equations below. Decide which of these are parallel, identical, or transverse (i.e., intersect in a single point).

Subsection 1.1.2 Class Activities

Definition 1.1.2.

A matrix is an m×n array of real numbers with m rows and n columns:
[a11a12a1na21a22a2nam1am2amn]=[v1v2vn].
Frequently we will use matrices to describe an ordered list of its column vectors:
[a11a21am1],[a12a22am2],,[a1na2namn]=v1,v2,,vn.
When order is irrelevant, we will use set notation:
{[a11a21am1],[a12a22am2],,[a1na2namn]}={v1,v2,,vn}.

Definition 1.1.3.

A Euclidean vector is an ordered list of real numbers
[a1a2an].
We will find it useful to almost always typeset Euclidean vectors vertically, but the notation [a1a2an]T is also valid when vertical typesetting is inconvenient. The set of all Euclidean vectors with n components is denoted as Rn, and vectors are often described using the notation v.
Each number in the list is called a component, and we use the following definitions for the sum of two vectors, and the product of a real number and a vector:
[a1a2an]+[b1b2bn]=[a1+b1a2+b2an+bn]c[a1a2an]=[ca1ca2can]

Example 1.1.4.

Following are some examples of addition and scalar multiplication in R4.
[3304]+[0271]=[3+03+20+74+1]=[3175]
4[0223]=[4(0)4(2)4(2)4(3)]=[08812]

Definition 1.1.5.

A linear equation is an equation of the variables xi of the form
a1x1+a2x2++anxn=b.
A solution for a linear equation is a Euclidean vector
[s1s2sn]
that satisfies
a1s1+a2s2++ansn=b
(that is, a Euclidean vector whose components can be plugged into the equation).

Remark 1.1.6.

In previous classes you likely used the variables x,y,z in equations. However, since this course often deals with equations of four or more variables, we will often write our variables as xi, and assume x=x1,y=x2,z=x3,w=x4 when convenient.

Definition 1.1.7.

A system of linear equations (or a linear system for short) is a collection of one or more linear equations.
a11x1+a12x2++a1nxn=b1a21x1+a22x2++a2nxn=b2am1x1+am2x2++amnxn=bm
Its solution set is given by
{[s1s2sn]|[s1s2sn]is a solution to all equations in the system}.

Remark 1.1.8.

When variables in a large linear system are missing, we prefer to write the system in one of the following standard forms:
Original linear system:
x1+3x3=33x12x2+4x3=0x2+x3=2
Verbose standard form:
1x1+0x2+3x3=33x12x2+4x3=00x11x2+1x3=2
Concise standard form:
x1+3x3=33x12x2+4x3=0x2+x3=2

Remark 1.1.9.

It will often be convenient to think of a system of equations as a vector equation.
By applying vector operations and equating components, it is straightforward to see that the vector equation
x1[130]+x2[021]+x3[341]=[302]
is equivalent to the system of equations
x1+3x3=33x12x2+4x3=0x2+x3=2

Definition 1.1.10.

A linear system is consistent if its solution set is non-empty (that is, there exists a solution for the system). Otherwise it is inconsistent.

Activity 1.1.12.

All inconsistent linear systems contain a logical contradiction. Find a contradiction in this system to show that its solution set is the empty set.
x1+2x2=52x14x2=6

Activity 1.1.13.

Consider the following consistent linear system.
x1+2x2=32x14x2=6
(a)
Find several different solutions for this system:
[11][?2][0?][??][??]
(b)
Suppose we let x2=a where a is an arbitrary real number. Which of these expressions for x1 in terms of a satisfies both equations of the linear system?
  1. x1=3a
  2. x1=3
  3. x1=2a+3
  4. x1=4a+6
Answer.
C. x1=2a+3
(c)
Given x2=a and the expression you found in the previous task, which of these describes the solution set for this system?
  1. {[2a+3a]|aR}
  2. {[a2a+3]|aR}
  3. {[ab]|aR}
  4. {[2a+32b3]|aR}
Answer.
A. {[2a3a]|aR}

Activity 1.1.14.

Consider the following linear system.
x1+2x2x4=3x3+4x4=2
Substitute x2=a and x4=b, and then solve for x1 and x3:
x1=?x3=?
Then use these to describe the solution set
{[?a?b]|a,bR}
to the linear system.

Observation 1.1.15.

Solving linear systems of two variables by graphing or substitution is reasonable for two-variable systems, but these simple techniques won’t usually cut it for equations with more than two variables or more than two equations. For example,
2x14x2+x34x4=8x1+2x2+2x3+12x4=1x1+2x2+x3+8x4=1
has the exact same solution set as the system in the previous activity, but we’ll want to learn new techniques to compute these solutions efficiently.

Remark 1.1.16.

The only important information in a linear system are its coefficients and constants.
Original linear system:
x1+3x3=33x12x2+4x3=0x2+x3=2
Verbose standard form:
1x1+0x2+3x3=33x12x2+4x3=00x11x2+1x3=2
Coefficients/constants:
103|3324|0011|2

Definition 1.1.17.

A system of m linear equations with n variables is often represented by writing its coefficients and constants in an augmented matrix: the m×n matrix of its coefficients augmented with the m constant values as a final column.
a11x1+a12x2++a1nxn=b1a21x1+a22x2++a2nxn=b2am1x1+am2x2++amnxn=bm
[a11a12a1nb1a21a22a2nb2am1am2amnbm]
Sometimes, we will find it useful to refer only to the coefficients of the linear system (and ignore its constant terms). We call the m×n array consisting of these coefficients a coefficient matrix.
[a11a12a1na21a22a2nam1am2amn]

Example 1.1.18.

The corresponding augmented matrix for this system is obtained by simply writing the coefficients and constants in matrix form.
Linear system:
x1+3x3=33x12x2+4x3=0x2+x3=2
Augmented matrix:
[103332400112]
Vector equation:
x1[130]+x2[021]+x3[341]=[302]

Subsection 1.1.3 Individual Practice

Activity 1.1.19.

Consider the following augmented matrices. For each of them, decide how many variables and how many equations the corresponding linear system has.
(b)
[2133124331713171]
(d)
[2133124300003171]

Subsection 1.1.4 Videos

Figure 1. Video: Converting between systems, vector equations, and augmented matrices

Exercises 1.1.5 Exercises

Subsection 1.1.6 Mathematical Writing Explorations

Exploration 1.1.20.

Choose a value for the real constant k such that the following system has one, many, or no solutions. In each case, write the solution set.
Consider the linear system:
x1x2=13x13x2=k

Exploration 1.1.21.

Consider the linear system:
ax1+bx2=jcx1+dx2=k
Assume j and k are arbitrary real numbers.
  • Choose values for a,b,c, and d, such that adbc=0. Show that this system is inconsistent.
  • Prove that, if adbc0, the system is consistent with exactly one solution.

Exploration 1.1.22.

Given a set S, we can define a relation between two arbitrary elements a,bS. If the two elements are related, we denote this ab.
Any relation on a set S that satisfies the properties below is an equivalence relation.
  • Reflexive: For any aS,aa
  • Symmetric: For a,bS, if ab, then ba
  • Transitive: for any a,b,cS,ab and bc implies ac
For each of the following relations, show that it is or is not an equivalence relation.
  • For a,b,R, ab if an only if ab.
  • For a,b,R, ab if an only if |a|=|b|.

Subsection 1.1.7 Sample Problem and Solution

Sample problem Example B.1.1.