Linear Algebra (I)
Motivation
When I was learning Linear Algebra in University, I found it was hard to understand what would applications of this course. I remember that we learned determinant on Chapter 1, then we learned a lot of other concept such as Rank and EigenValue. I could only memorize one after another theorems without knowing why these happened to appear this way. However, when I was learning matrices from lectures taught by Gilbert Strang, I found every conclusion is so nature that I could easily understand and associate a bunch of concepts with each other. I'd like to conclude what I had learned from him as well as hoping that someone can learn from that.
Why this subject exists?
First of all, what is the origin of linear algebra? Why we make the world increasingly complicated? The truth is that the purpose of mathmatics is to make the world simpler, not the opposite, Linear Algebra as well. For example, we want to solve equations with a lot of variables, the original way is to write all the parameter out:If there are only 3 parameters, the problems is not so hard for us to
handle. But what if there are 100 parameters? When we transfer the
equation to matrices, the outcome becomes so grateful:
1 | octave:1> x=linspace(-20, 20, 100); |

The answer of this equation group is that
Another perspective
We can find another perspective to solve this equation: see the
equation as a combination of columns, that means:
1 | octave:1> a = quiver3(0, 0, 0, 3,2,1); |

Step1, calclate z, step2, calclate y, step3, calclate x. We first
leave a variables z alone with an answer in the third equation. Then, we
substitute z to the second equation, and get y. At last we substitute x
and y to the first equation and get x. if we represent above through
matrices language, it is like this:
Next time we will talk about LU decomposition and Rank of a matrix.