Applications: Physics, Graphics, Audio, Images
Vectors appear in every quantitative field. The power of the vector concept is that the same mathematics — addition, scalar multiplication, span — applies regardless of what the entries represent.
Physics: Velocity, force, momentum, and electric fields are all vectors in . Newton's second law becomes in vector form.
Graphics: A 3D point has coordinates , transformations are matrix operations on these vectors. Colors are vectors in .
Audio: A digital audio clip at 44,100 samples/second for 1 second is a vector in . Filters are linear operations on this vector.
Images: A grayscale image of height and width is a vector in . Convolution filters are linear operations.
Formal View
Why This Matters
The unifying power of vector notation is that one set of mathematical tools solves problems across all these domains.
- Image compression (JPEG) uses linear algebra on image vectors
- Audio equalization applies linear filters (matrix operations) to sound vectors
- Computer vision represents images as vectors and applies linear transformations to classify them
Quiz
A grayscale image stored as a vector lives in where is:
Common Mistakes
- Thinking vectors must be 2D or 3D — high-dimensional vectors are equally fundamental.
- Treating images/audio as "special" objects rather than vectors subject to linear algebra.