The Unapologetic Mathematician

Mathematics for the interested outsider

Linear Equations

Okay, now I really should introduce one of the most popular applications of linear algebra, at least outside mathematics. Matrices can encode systems of linear equations, and matrix algebra can be used to solve them.

What is a linear equation? It’s simply an algebraic equation where each variable shows up at most to the first power. For example, we could consider the equation

3x=12

and clearly we can solve this equation by dividing by 3 on each side to find x=4. Of course, there could be more than one variable.

Sometimes people might use different names like x, y, and z, but since we want to be open-ended about things we’ll just say x^1, x^2, x^3, and so on. Notice here that because variables can only show up to the first power, there is no ambiguity about writing our indices as superscripts — something we’ve done before. Anyhow, we might write an equation

3x^1+4x^2=12

Now we have many different possible solutions. We could set x^1=4 and x^2=0, or we could set x^1=0 and x^2=3, or all sorts of combinations in between. This one equation is not enough to specify a unique solution.

Things might change, though, if we add more equations. Consider the system

3x^1+4x^2=12
x^1-x^2=11

Now we can rewrite the second equation as x^1=11+x^2, and then drop this into the first equation to find 3(11+x^2)+4x^2=12, or 33+7x^2=12. This just involves the one variable, and we can easily solve it to find x^2=-3, which quickly yields x^1=8. We now have a single solution for the pair of equations.

What if we add another equation? Consider

3x^1+4x^2=12
x^1-x^2=11
x^1+x^2=10

Now we know that the only values solving both of the first two equations are x^1=8 and x^2=-3. But then x^1+x^2=5, so the third equation cannot possibly be satisfied. Too many equations can be impossible to solve.

In general, things work out when we’ve got one equation for each variable. As we move forwards we’ll see how to express this fact more concretely in terms of matrices and vector spaces.

July 3, 2008 Posted by | Algebra, Linear Algebra | 19 Comments