Transposes, Permutations, and Spaces (18.06_L5)
Linear Algebra - Row Exchanges, spaces and subspaces, oh my!
Background
In previous posts, we have gone over elimination to solve systems of equations. However, every example workout out perfectly. What I mean by that is we didn't have to do row exchanges. Every example was in an order that worked on attempt 1. In this post, we are going to talk about how to solve equations when this isn't the case.
Permutations
A Permutation matrix executes our row exhanges. This matrix $P$ is the identify matrix with reording rows. $A=LU$ becomes $PA=LU$. We multipy a permutation matrix $P$ by $A$.
$$\begin{bmatrix}1&0&0\\0&0&1\\0&1&0\end{bmatrix}$$
Vector Spaces
To have a vector space you need to be able to:
- Add any vectors and still be within the space
- Multiply by any number and stay within space
- Take any linear combination and stay within space
Examples
$R^2$ is a vector space. This is all real number vectors with 2 components. Here's a few examples.
$\begin{bmatrix}3\\2\end{bmatrix}$, $\begin{bmatrix}0\\0\end{bmatrix}$, $\begin{bmatrix}\pi\\e\end{bmatrix}$
$R^3$ is another vector space, but it contains all real 3D vectors. Here's a few examples.
$\begin{bmatrix}3\\2\\5\end{bmatrix}$, $\begin{bmatrix}3\\2\\0\end{bmatrix}$, $\begin{bmatrix}0\\0\\0\end{bmatrix}$, $\begin{bmatrix}\pi\\e\\5\end{bmatrix}$
$R^n$ is another with all column vectors with $n$ real components.
Subspaces
What if we just want a piece of $R^n$? We still need to be able to add vectors and multiply it together. So what are some subspaces?
- A line through $R^n$ that goes through the origin. Any multiple of a point on a line is still on the line. We need the origin because you can mutliply any vector by 0, which would give you the origin.
- Just the Origin is a subspace. You can add it to itelf, multiply it by anything, and take any combination and you will stil lhave the origin.
- In $R^3$ and above, a plane through the origin is also a subspace.