Related: Matrix
Linear Transformation: Replace the word transformation with “function”. They take in inputs and spits out an output for each one. Transformations take in vectors and spit out another vector.
It’s called a transformation and not a vector because transformations imply movement. If a transformation takes an input vector and spits out an output vector, we imagine that input vector moving over to the output vector.
To understand the transformation as a whole, imagine each possible input vector move over to its corresponding output vector.
Visually speaking a transformation is linear if it has two properties.
- All lines must remain lines without getting curved
- The origin must remain fixed in place
If we’re doing this numerically (say, in programming) what do we do?
It turns out that we only need to record where the two basis vectors, and , land— everything else will follow from that.
Its common to package these numbers into a 2x2 grid of numbers called the 2x2 matrix, where you can interpret the columns as the two special vectors where and land.
यसे:
Side tangent from Vish, one way I like to think about this () is that a and c go together and b and d go together much like in four-square. 💖
Anyways. MATRIX VECTOR MULTIPLICATION!!!