How can the same mathematical object be viewed as a vector, a matrix, a function, or a transformation?
students, in linear algebra, one of the biggest ideas is that the same mathematical object can be described in more than one way. A list of numbers can act like a vector, be arranged as a matrix, define a function, or represent a transformation that moves points in space š. This lesson will help you see those connections clearly.
By the end of this lesson, you should be able to:
- explain what vectors, matrices, functions, and transformations have in common,
- recognize when different forms are really describing the same object,
- use examples to connect algebra with geometry,
- understand why this idea is so important in linear algebra.
A key theme in linear algebra is that objects are not just symbols on a page. They can represent actions, patterns, and structures in the real world, such as computer graphics, network data, or changing quantities in science. That flexibility is what makes linear algebra so powerful.
A vector can be more than an arrow
A vector is often introduced as an arrow in space. For example, an arrow from the origin to the point $(3,2)$ can represent a vector. But in linear algebra, a vector is not only a geometric arrow. It can also be a list of numbers like $\begin{bmatrix}3\\2\end{bmatrix}$ or $(3,2)$.
These two views describe the same object in different settings. The arrow picture helps you understand direction and size. The list of numbers helps you calculate. For example, if you have $\begin{bmatrix}3\\2\end{bmatrix}$ and $\begin{bmatrix}1\\4\end{bmatrix}$, then adding them gives
$$\begin{bmatrix}3\\2\end{bmatrix}+\begin{bmatrix}1\\4\end{bmatrix}=\begin{bmatrix}4\\6\end{bmatrix}.$$
This is not just arithmetic. It also means āmove 3 units right and 2 units upā plus āmove 1 unit right and 4 units upā equals āmove 4 units right and 6 units up.ā
Vectors can also describe real-world data. For example, a studentās quiz and test scores might be written as $\begin{bmatrix}85\\92\end{bmatrix}$. In this case, the vector is not an arrow you draw in a graph, but it still behaves like one because you can add it to other vectors or multiply it by a scalar.
A matrix can be a table, a rule, or a machine
A matrix is a rectangular array of numbers. For example,
$$A=\begin{bmatrix}2 & 1\\0 & 3\end{bmatrix}$$
is a $2\times 2$ matrix. At first, it looks like a table. But in linear algebra, a matrix does much more than store numbers.
A matrix can represent a function that takes a vector as input and gives another vector as output. If we multiply $A$ by a vector $x=\begin{bmatrix}x_1\x_2\end{bmatrix}$, then
$$A x=\begin{bmatrix}2 & 1\\0 & 3\end{bmatrix}\begin{bmatrix}x_1\x_2\end{bmatrix}=\begin{bmatrix}2x_1+x_2\\3x_2\end{bmatrix}.$$
So the matrix acts like a rule: it transforms the input vector into a new output vector.
You can think of this like a vending machine š«. You put in a specific input, and the machine gives a predictable output. The matrix is the āinstruction setā for the machine. If the input changes, the output changes in a consistent way.
Matrices are also useful for solving systems of equations. The same matrix above can encode the system
$$2x+y=7,$$
$$3y=6,$$
where the coefficients are stored in the matrix and the unknowns are stored in a vector. This shows that a matrix is not just a chart of numbers. It can organize a whole mathematical relationship.
A function describes input-output behavior
In algebra, a function is a rule that takes each input and produces exactly one output. In linear algebra, many functions are written using vectors and matrices. For example, the rule
$$T\!\left(\begin{bmatrix}x_1\x_2\end{bmatrix}\right)=\begin{bmatrix}2x_1+x_2\\3x_2\end{bmatrix}$$
is a function because every input vector gives one output vector.
This function is also linear because it respects two important properties:
$$T(u+v)=T(u)+T(v)$$
and
$$T(cu)=cT(u).$$
These properties mean that the rule works nicely with addition and scaling. That is what makes it a linear transformation.
A good real-world example is resizing an image on a screen. If every point in a drawing is moved according to the same rule, the whole image changes in an organized way. The āruleā is the function, and the output is the transformed image.
Not every function in algebra is linear. For example, $f(x)=x^2$ is a function, but it does not satisfy $f(a+b)=f(a)+f(b)$. Linear algebra focuses on special functions that preserve structure. This is why linearity matters so much: it gives us a reliable way to predict behavior.
A transformation describes what the rule does geometrically
A transformation is a function that changes objects into new objects. In linear algebra, a transformation usually acts on vectors. The same rule can be viewed as a function algebraically and as a transformation geometrically.
For example, consider the matrix
$$B=\begin{bmatrix}0 & -1\\1 & 0\end{bmatrix}.$$
If we apply it to a vector in the plane, it rotates the vector $90^\circ$ counterclockwise. So the matrix is not only a grid of numbers. It is also a rotation transformation.
Try a specific vector:
$$B\begin{bmatrix}2\\1\end{bmatrix}=\begin{bmatrix}-1\\2\end{bmatrix}.$$
The point $(2,1)$ moves to $(-1,2)$. This matches a $90^\circ$ counterclockwise rotation.
This viewpoint is powerful because it connects algebra and geometry. Instead of only computing entries, you can ask, āWhat happens to the shape? Is it stretched, flipped, rotated, or squashed?ā That question helps you understand the meaning behind the numbers.
How the same object can wear different āhatsā
students, one of the most important ideas in linear algebra is that the same object can play several roles at once.
Take the matrix
$$A=\begin{bmatrix}2 & 1\\0 & 3\end{bmatrix}.$$
It can be viewed as:
- a matrix, because it is a rectangular arrangement of numbers,
- a vector of columns, because each column can be studied as a vector,
- a function, because it maps input vectors to output vectors,
- a transformation, because it changes geometry in a predictable way.
These are not four different objects. They are four ways of thinking about one object.
For example, the columns of $A$ are
$$\begin{bmatrix}2\\0\end{bmatrix}$$
and $$\begin{bmatrix}1\\3\end{bmatrix}.$$
If you multiply $A$ by a vector $\begin{bmatrix}x_1\x_2\end{bmatrix}$, the result is
$$x_1\begin{bmatrix}2\\0\end{bmatrix}+x_2\begin{bmatrix}1\\3\end{bmatrix}.$$
This shows that the columns of a matrix are deeply connected to its action as a transformation.
That connection helps explain span, basis, and dimension too. The columns of a matrix may span a space, meaning their linear combinations can reach many possible outputs. A basis is a smallest set of vectors that still captures the whole space. The number of vectors in a basis is the dimension. So the matrix is not just a computation tool; it reveals the structure of the space it acts on.
Why this matters in practice
The idea that one object can be seen in multiple ways is useful in many areas.
In computer graphics, a matrix can represent a transformation that rotates or scales an image. In economics, vectors can represent quantities like supply and demand, while matrices can model how changes in one part of a system affect another. In physics, a transformation can describe motion or force relationships. In data science, vectors store features, and matrices organize many data points at once.
This flexibility is one reason linear algebra is widely used. The same mathematical object can answer different kinds of questions:
- What are its numbers?
- What does it do to a vector?
- What happens geometrically?
- What space does it generate?
When you can move between these viewpoints, you understand the structure more deeply. That is the heart of linear algebra.
Conclusion
The same mathematical object can be viewed as a vector, a matrix, a function, or a transformation because each viewpoint highlights a different part of the same structure. A vector shows direction or data. A matrix organizes numbers and encodes rules. A function describes input-output behavior. A transformation shows how objects move or change. Seeing these connections helps students understand not just how to compute, but why linear algebra works. This is one of the central ideas in the study of Essential Questions in linear algebra.
Study Notes
- A vector can be written as a coordinate list, a column, or an arrow in space.
- A matrix is a rectangular array of numbers, but it can also represent a rule for transforming vectors.
- A function gives one output for each input. In linear algebra, many functions act on vectors.
- A transformation is a function viewed geometrically as a change to vectors or shapes.
- A matrix can be interpreted as a function or transformation through matrix multiplication.
- Linear transformations satisfy $T(u+v)=T(u)+T(v)$ and $T(cu)=cT(u)$.
- The columns of a matrix help show what the transformation does.
- Span, basis, and dimension describe the structure of the space connected to the matrix or transformation.
- Different views of the same object help connect algebra, geometry, and applications.
- Linear algebra is powerful because it studies structure, not just isolated numbers.
