1. Matrix and Linear Systems
2026-01-21
What is Linear Algebra?
To put it simple, Linear Algebra is the study of linear transformations.
Transformations
Transformation transforms an input to an output. In other words, a transformation is a function.
e.g., f(x)=2x is a transformation that transforms input x to output 2x.
Linear Transformations (线性变换)
A transformation T that satisfies the linearity property:
- T(x+y)=T(x)+T(y)
- T(cx)=cT(x)
Matrix (矩阵)
Definition
Let
[m]×[n]={(i,j)∣1≤i≤m,1≤j≤n,i,j∈Z}
then an m×n (real) matrix is a function
A:[m]×[n]→R
We write the output by A(i,j)=ai,j, where
- the input (i,j) represents the ith row and jth column.
- the output ai,j is the number at the ith row and jth column.
In general, a matrix is represented as
A=a1,1a2,1⋮am,1a1,2a2,2⋮am,2⋯⋯⋱⋯a1,na2,n⋮am,n
Vector (向量)
A vector is an m×1 matrix (a special matrix that has only one column):
v=v1v2⋮vm