5.3. Linear dependence#

An important concept in linear algebra is that of whether a vector from set of vectors can be expressed as a linear combination of the other vectors in the set. If so we say that the vector is linearly dependent upon the the other vectors. Geometrically speaking, if two vectors are linearly dependent then it means they lie on the same plane. Linear dependence can help identify redundant or superfluous vectors within a set and provides insight into the dimensions and structure of vector spaces.

Definition 5.5 (Linear dependence)

Let v1,v2,,vnV and consider the equation

(5.2)#α1v1+α2v2++αnvn=0,

where αF. The objects v1,v2,,vnV are said to be linearly independent over F if the only solution to the above equation is when all of the αi values are zero (this solution is called the trivial solution). If the above equation is satisfied where αi0 for 1in, then v1,v2,,vnV are said to be linearly dependent over F.

Another way to think about linear independence is that a set of vectors is linearly independent if none of the vectors in the set can be represented as a linear combination of the other vectors in the same set. For example, are the matrices

A=(1102),B=(1102),C=(4008),

linearly independent over R? We can see by inspection that B=A therefore A, B and C are linearly dependent since

1A+1B+0C=02×2.

So if any two members of a set are scalar multiples of each other then they are linearly dependent because we can choose αi values to satisfy equation (5.2).

Example 5.5

Determine whether the following are linearly dependent

(i)   (1,0,2),(2,1,3),(3,4,2)R3 over R

Solution

Let α1,α2,α3R then equation (5.2) becomes

α1(102)+α2(213)+α3(342)=(000).

This holds if and only if

α1+2α23α3=0,α24α3=0,2α3+3α22α3=0.

Solving this homogeneous system using Gauss-Jordan elimination

(123001402320)R32R1(123001400140)R12R2R3+R2(105001400000)

Here α3 is a free variable, so let α3=r then α1=5r and α2=4r. There vectors are therefore linearly dependent, i.e., if r=1, then α1=5 and α2=4, i.e.,

5(102)+4(213)+(342)=(000).

(ii)   u=x2+x+1, v=x1 and w=x21P(R) over R

Solution

Let α1,α2,α3R then we need to ascertain when

α1u+α2v+α3w=0.

Now

α1(x2+x+1)+α2(x1)+α3(x21)=0(α1+α3)x2+(α1+α2)x+(α1α2α3)x0=0.

For a polynomial to be equal to zero, the coefficients of xi must all be equal to zero, therefore

α1+α3=0,α1+α2=0,α1α2α3=0.

Solving using Gauss-Jordan elimination

(101011001110)R2R1R3R1(101001100120)R3+R2(101001100030)13R3(101001100010)R1R3R2+R3x(100001000010)

Therefore the only solution is α1=α2=α3=0 so the polynomials u, v and w are linearly independent.