A subset of a vector space is linearly independent if none of its elements can be written as a linear combination of the others.
For example, a 3D Euclidean space R3 three vectors (1,0,0), (0,1,0), and (0,0,1) are linearly independent but (2,−1,1), (1,0,1), and (3,−1,2) are linearly dependent. Because (3,−1,2) is the sum of (2,−1,1), (1,0,1).
Together with linear combination, spanning, and basis, linear independence is a fundamental concept in vector spaces theory.
The following YouTube could help us to review these concepts.
from IPython.display import YouTubeVideo
YouTubeVideo('k7RM-ot2NWY')
Let S be a vector space, and let T be a subset of S. The set T is linearly independent if for each finite nonempty subset of T (say {p1,p2,⋯,pm}) the only set of scalars satisfying the equation
c1p1+c2p2+⋯+cmpm=0is the trivial solution c1=c2=⋯=cm=0.
The set of vectors {p1,p2,⋯,pm} is said to be linearly dependent if there exists a set of scalar coefficients {c1,c2,⋯,cm} which are not all zero, such that c1p1+c2p2+⋯+cmpm=0.
Note that linear dependence/independence is a concept that applies to a collection of vectors, not to a single vector, or to one vector in the presence of some others.
The set of vectors {p1,p2,⋯,pm} is linearly independent if and only if the matrix A with columns p1,p2,⋯,pm has a pivot in every column, if and only if Ac=0 has only the trivial solution (c=[c1,c2,⋯,cm]T).
Solving the matrix equation Ac=0 will either verify that the columns p1,p2,⋯,pm are linearly independent, or produce a linear dependence relation by substituting any nonzero values for the free variables.
Any set containing the zero vector is linearly dependent.
Two vectors are linearly dependent if and only if they are collinear.
A set of vectors {p1,p2,⋯,pm} is linearly independent if and only if the rank of the matrix A with columns p1,p2,⋯,pm is m.
The following YouTube could help us to better understand linearly dependent.
YouTubeVideo('9kDpbZCK62Y')
# Import modules for linear algebra
import numpy as np
import sympy
sympy.init_printing()
Is the set of vectors {(12),(34)} linearly independent?
Firstly, we form a matrix equation:
[1324][c1c2]=[00]It implies that {c1+3c2=02c1+4c2=0.
As this simultaneous equation has no nonzero solution, {(12),(34)} is linearly independent.
Is the set of vectors {(123),(246)} linearly independent?
The matrix equation is:
[122436][c1c2]=[00]We can try solving this equation, like what we do in last example. Also, we can use Gaussian elimination (also known as row reduction) to find the rank of matrix [122436] (A).
For simplicity, we do not implement Gaussian elimination from scratch here, just use an inner method rref()
in SymPy Matrix
object. rref()
returns a tuple of two elements, the first is the reduced row echelon form (RREF), and the second is a tuple of indices of the pivot columns.
A = sympy.Matrix([[1,2], [2,4], [3,6]])
rref, idx = A.rref()
print("Rank of A = {}".format(len(idx)))
print("RREF of A = ")
display(rref)
Rank of A = 1 RREF of A =
As the result shows, the rank of A is 1, less than 2, the number of columns. Therefore, {(123),(246)} is linearly dependent.
Is the set of vectors {(11−2),(1−12),(314)} linearly independent?
The matrix A is [1131−11−224]. Just do Gaussian elimination on A.
A = sympy.Matrix([[1,1,3], [1,-1,1], [-2,2,4]])
rref, idx = A.rref()
print("Rank of A = {}".format(len(idx)))
print("RREF of A = ")
display(rref)
Rank of A = 3 RREF of A =
It shows that, the rank of A is 3, equal to the number of columns. Therefore, {(11−2),(1−12),(314)} is linearly independent.
Given the set {(1000),(0100),(0010),(0001),(1011)} of vectors in the vector space R4, determine whether S is linearly independent or linearly dependent.
Step 1: Set up a homogeneous system of equations
The set S = {V1, V2, V3, V4, V5} of vectors in R4 is linearly independent if the only solution of
(∗) c1V1+c2V2+c3V3+c4V4+c5V5=0
is c1, c2, c3, c4, c5 = 0
Otherwise (i.e., if a solution with at least some nonzero values exists), S is linearly dependent.
With our vectors V1, V2, V3, V4, V5, (∗) becomes:
c1(1000)+c2(0100)+c3(0010)+c4(0001)+c5(1011)=(0000)
Rearranging the left hand side yields
(1c1+0c2+0c3+0c4+1c50c1+1c2+0c3+0c4+0c50c1+0c2+1c3+0c4+1c50c1+0c2+0c3+1c4+1c5)=(0000)
The matrix equation above is equivalent to the following homogeneous system of equations (∗∗)
1c1+0c2+0c3+0c4+1c5=0
0c1+1c2+0c3+0c4+0c5=0
0c1+0c2+1c3+0c4+1c5=0
0c1+0c2+0c3+1c4+1c5=0
Step 2: Transform the coefficient matrix of the system to the reduced row echelon form
We now transform the coefficient matrix of the homogeneous system above to the reduced row echelon form to determine whether the system has
the trivial solution only (meaning that S is linearly independent), or the trivial solution as well as nontrivial ones (S is linearly dependent).
(10001010000010100011)
Matrix is already in the reduced row echelon form.
Step 3: Interpret the reduced row echelon form
The reduced row echelon form of the coefficient matrix of the homogeneous system (∗∗) is
(10001010000010100011)
which corresponds to the system
1c1+1c5=0
1c2=0
1c3+1c5=0
1c4+1c5=0
The leading entries have been highlighted in yellow.
Since some columns do not contain leading entries, then the system has nontrivial solutions, so that some of the values c1, c2, c3, c4, c5 solving (*) may be nonzero.
Therefore the set S={V1,V2,V3,V4,V5} is linearly dependent.
Comments
Shortcut: The dimension of the space R4 is 4, therefore only a set containing 4 or fewer vectors can possibly be linearly independent. Since the set S has 5 vectors in it, it must be linearly dependent.
The pattern of leading entries can usually be determined before the reduced row echelon form is obtained (for example, a matrix in row echelon form is sufficient for this purpose). This is especially important when solving a problem like this by hand.
m=3, n=2 : 3 equations and 2 unknowns
A1,1x1+A1,2x2=b1
A2,1x1+A2,2x2=b2
A3,1x1+A3,2x2=b3
example we have the following 3 equations:
y=2x+1
y=6x−2
y=1/10x+6
import matplotlib.pyplot as plt
x = np.arange(-10, 10)
y = 2*x + 1
y1 = 6*x - 2
y2 = 0.1*x+6
plt.figure()
plt.plot(x, y)
plt.plot(x, y1)
plt.plot(x, y2)
plt.xlim(-2, 10)
plt.ylim(-2, 10)
# draw axes
plt.axvline(x=0, color='#A9A9A9')
plt.axhline(y=0, color='#A9A9A9')
plt.show()
plt.close()
In the above case, there is 3 equations and no solution because there is no point in space that is on each of these lines.
Let us look at a chemical engineering application.
The following reactions are proposed in the hydrogenation of bromine:
$$\begin{align*}H_2 + Br_2 &\rightleftharpoons 2HBr\
Br_2 &\rightleftharpoons 2Br\ Br + H_2 &\rightleftharpoons HBr + H\ H + Br_2 &\rightleftharpoons HBr + Br\ H + HBr &\rightleftharpoons H_2 + Br\ 2Br &\rightleftharpoons Br_2\end{align*}$$
We can find out a set of independent reactions from these reactions.
Firstly, we create a species vector c=[H2,H,Br2,Br,HBr]T, and a stoichiometric coefficients matrix A. Each row in A represents a reaction with negative coefficients for reactants, and positive coefficients for products. A coefficient of zero denotes species not participating in the reaction. Then, 6 given reactions can be represented by A∗c.
labels = ['H2', 'H', 'Br2', 'Br', 'HBr']
# {H2, H, Br2, Br, HBr}
A = [[-1, 0, -1, 0, 2], # H2 + Br2 = 2HBr
[ 0, 0, -1, 2, 0], # Br2 = 2Br
[-1, 1, 0, -1, 1], # Br + H2 = HBr + H
[ 0, -1, -1, 1, 1], # H + Br2 = HBr + Br
[ 1, -1, 0, 1, -1], # H + HBr = H2 + Br
[ 0, 0, 1, -2, 0]] # 2Br = Br2
# convert A to Matrix object
A = sympy.Matrix(A)
print("A = ")
display(A)
A =
As we know, there are three types of elementary row operations for Gaussian elimination:
For a stoichiometric coefficients matrix, these operations are all reasonable. Let us do Gaussian elimination on A.
# Put A into RREF
rref, idx = A.rref()
print("RREF of A = ")
display(rref)
RREF of A =
The RREF matrix ARREF shows that there are only 3 independent columns. The independent reactions are defined by ARREF∗c.
# Find out independent reactions
for row in rref.tolist():
s = "0 = "
for coeff, species in zip(row, labels):
if coeff != 0:
s += "{0:+d}{1} ".format(int(coeff), species)
if len(s) != 4:
print(s)
0 = +1H2 +2Br -2HBr 0 = +1H +1Br -1HBr 0 = +1Br2 -2Br
It is done! But the answer is not unique, the order of rows and elementary row operations can change it.
Consider the three vectors below:
The above set is linearly dependent. Why? It is simple. Because w=2v+u. Let’s do the above with Python and Numpy:
Moon, Todd K., and Wynn C. Stirling. Mathematical methods and algorithms for signal processing. No. 621.39: 51 MON. 2000.
https://textbooks.math.gatech.edu/ila/linear-independence.html
https://www.machinelearningmindset.com/linear-independence-of-vectors/