Coordinate Systems in Linear Algebra
When students thinks about numbers in math class, it is easy to imagine a single line of values. But many real-world problems need more than one number to describe a situation. A position on a map, the speed and direction of a moving car, or the color of a pixel on a screen may all need several values at once. That is where coordinate systems come in 📍
In linear algebra, coordinate systems help us describe vectors using numbers. They tell us how to write a vector as a combination of basis vectors, and they connect directly to the big ideas of span, linear independence, basis, and dimension.
What Is a Coordinate System?
A coordinate system is a rule for turning a vector into a list of numbers. In the most familiar system, the plane uses the $x$- and $y$-axes. A point like $(3,2)$ means “move $3$ units right and $2$ units up.” In linear algebra, the idea is more general: a vector can be described using any chosen set of basis vectors, not just the standard axes.
For example, in the usual coordinate system for $R^2$, the standard basis is
$$
$\mathbf{e}_1$ = $\begin{bmatrix}1$\\$0\end{bmatrix}$, \quad $\mathbf{e}_2$ = $\begin{bmatrix}0$\\$1\end{bmatrix}$.
$$
Any vector $mathbf{v}$ in $R^2$ can be written as
$$
$\mathbf{v} = a\mathbf{e}_1 + b\mathbf{e}_2,$
$$
where the coordinates are $(a,b)$. So the coordinate pair tells us how much of each basis vector is needed. This is not just a trick for graphing; it is a powerful way to represent vectors in any vector space.
A coordinate system is useful because it turns geometric ideas into algebraic ones. A direction, a displacement, or a combination of forces can be written as numbers and then calculated with precision ✨
Coordinates as a Language for Vectors
Think of a vector as a direction and size, or as an object that can be added to other vectors. A coordinate system gives that vector a “name” made of numbers. If students knows the coordinates, then students can compare vectors, add them, scale them, and solve problems more easily.
Suppose
$$
$\mathbf{v} = \begin{bmatrix}4\\-1\end{bmatrix}.$
$$
In the standard coordinate system, this means $4\mathbf{e}_1 - 1\mathbf{e}_2$. That is the same as moving $4$ units in the horizontal direction and $1$ unit downward.
Now imagine a different coordinate system based on two new basis vectors,
$$
$\mathbf{b}_1$ = $\begin{bmatrix}1$\\$1\end{bmatrix}$, \quad $\mathbf{b}_2$ = $\begin{bmatrix}1$\\-$1\end{bmatrix}$.
$$
The same vector $mathbf{v}$ may have coordinates $\begin{bmatrix}a\b\end{bmatrix}$ in this new system, meaning
$$
$\mathbf{v} = a\mathbf{b}_1 + b\mathbf{b}_2.$
$$
So coordinates are not the vector itself. They depend on the basis being used. This is a very important idea in linear algebra: the same vector can look different in different coordinate systems.
A real-world example is navigation. A drone might be described using north-south and east-west coordinates. But if the drone is flying along a runway or a river, a different coordinate system could be more convenient. The location is the same, but the description changes.
How Coordinate Systems Connect to Span
A set of vectors spans a space if their linear combinations can produce every vector in that space. Coordinate systems depend on this idea. If a basis spans the space, then every vector in the space can be assigned coordinates relative to that basis.
For a vector space like $R^2$, the standard basis spans all of $R^2$ because any vector $(x,y)$ can be written as
$$
$\begin{bmatrix}$x\y$\end{bmatrix}$ = x$\begin{bmatrix}1$\\$0\end{bmatrix}$ + y$\begin{bmatrix}0$\\$1\end{bmatrix}$.
$$
That means the standard basis gives coordinates for every vector in the plane.
If a set of vectors does not span the whole space, then it cannot serve as a coordinate system for every vector in that space. For example, in $R^2$, a single nonzero vector spans only a line through the origin, not the whole plane. So one vector is not enough to coordinate every point in the plane.
This is why span matters so much. A coordinate system must be able to reach every vector in the space. If it cannot, then some vectors have no coordinates in that system.
Why Linear Independence Matters
A coordinate system also needs its basis vectors to be linearly independent. This means no basis vector can be written as a combination of the others. If they were dependent, then the coordinates would not be unique.
Uniqueness is essential. When students writes a vector in coordinates, there should be exactly one answer for that basis.
Here is a simple example in $R^2$. The vectors
$$
$\mathbf{b}_1$ = $\begin{bmatrix}1$\\$0\end{bmatrix}$, \quad $\mathbf{b}_2$ = $\begin{bmatrix}2$\\$0\end{bmatrix}$
$$
are linearly dependent, because $mathbf{b}_2 = 2\mathbf{b}_1$. They both point along the same line. Together they do not give a full coordinate system for the plane, because any combination of them still stays on that same line.
Even worse, coordinates would not be unique. For instance, the vector
$$
$\begin{bmatrix}4\\0\end{bmatrix}$
$$
can be written as
$$
$4\mathbf{b}_1 + 0\mathbf{b}_2$
$$
or as
$$
$0\mathbf{b}_1 + 2\mathbf{b}_2.$
$$
Two different coordinate pairs give the same vector. That is a sign the chosen vectors are not a basis.
Linear independence guarantees that each vector in the span has one and only one set of coordinates. This is one of the main reasons linear independence is central to coordinate systems.
Basis, Coordinates, and Dimension
A basis is a set of vectors that is both linearly independent and spans the space. A basis gives a coordinate system. In fact, a basis is exactly the kind of vector set needed to describe every vector in a space uniquely.
If a space has a basis with $n$ vectors, then the space has dimension $n$. That number tells us how many coordinates are needed to describe any vector in the space.
For example, $R^2$ has dimension $2$. That is why every vector in the plane needs two coordinates. The space $R^3$ has dimension $3$, so every vector in three-dimensional space needs three coordinates. A basis for $R^3$ might be
$$
$\mathbf{e}_1$ = $\begin{bmatrix}1$\\0\\$0\end{bmatrix}$, \quad $\mathbf{e}_2$ = $\begin{bmatrix}0$\\1\\$0\end{bmatrix}$, \quad $\mathbf{e}_3$ = $\begin{bmatrix}0$\\0\\$1\end{bmatrix}$.
$$
Then any vector
$$
$\begin{bmatrix}x\y\z\end{bmatrix}$
$$
has coordinates $(x,y,z)$ relative to this basis.
A different basis can describe the same space with different coordinate values. The dimension stays the same, even when the coordinates change. So dimension measures the size of the basis, not the exact numbers used in one coordinate system.
This idea is useful in science and engineering. For example, a physical system might have just a few independent directions of motion, even if the object looks complicated. Dimension tells us how many independent pieces of information are needed to describe it 🔧
A Worked Example of a New Coordinate System
Let us use the basis
$$
$\mathbf{b}_1$ = $\begin{bmatrix}1$\\$1\end{bmatrix}$, \quad $\mathbf{b}_2$ = $\begin{bmatrix}1$\\-$1\end{bmatrix}$.
$$
Suppose students wants the coordinates of
$$
$\mathbf{v} = \begin{bmatrix}5\\1\end{bmatrix}$
$$
with respect to this basis. We want numbers $a$ and $b$ such that
$$
$\begin{bmatrix}5$\\$1\end{bmatrix}$ = a$\begin{bmatrix}1$\\$1\end{bmatrix}$ + b$\begin{bmatrix}1$\\-$1\end{bmatrix}$.
$$
This gives the system
$$
$\begin{cases}$
$a + b = 5 \\$
$a - b = 1$
$\end{cases}$
$$
Adding the equations gives $2a = 6$, so $a = 3$. Then $b = 2$. So the coordinates of $mathbf{v}$ in this basis are $(3,2)$.
That means
$$
$\mathbf{v} = 3\mathbf{b}_1 + 2\mathbf{b}_2.$
$$
Check it:
$$
$3\begin{bmatrix}1$\\$1\end{bmatrix}$ + $2\begin{bmatrix}1$\\-$1\end{bmatrix}$ = $\begin{bmatrix}3$\\$3\end{bmatrix}$ + $\begin{bmatrix}2$\\-$2\end{bmatrix}$ = $\begin{bmatrix}5$\\$1\end{bmatrix}$.
$$
This example shows the process of finding coordinates in a nonstandard basis. The idea is always the same: write the vector as a linear combination of the basis vectors and solve for the coefficients.
Conclusion
Coordinate systems are a way to describe vectors using numbers, but those numbers depend on the basis chosen. A valid coordinate system must come from a basis, which means the vectors must span the space and be linearly independent. The number of basis vectors is the dimension of the space. These ideas work together to show how linear algebra turns geometry into algebra and makes complicated problems easier to analyze. For students, the key takeaway is that coordinates are not just labels; they are the result of expressing vectors in a chosen basis 🌟
Study Notes
- A coordinate system describes vectors using numbers relative to a chosen basis.
- The standard basis in $R^2$ is $\mathbf{e}_1 = \begin{bmatrix}1\\0\end{bmatrix}$ and $\mathbf{e}_2 = \begin{bmatrix}0\\1\end{bmatrix}$.
- A vector’s coordinates depend on the basis, so the same vector can have different coordinate representations.
- A set of vectors must span the space to serve as a coordinate system for every vector in that space.
- The basis vectors must be linearly independent so coordinates are unique.
- A basis is a set of vectors that is both spanning and linearly independent.
- The dimension of a space is the number of vectors in any basis for that space.
- In $R^2$, every vector needs two coordinates; in $R^3$, every vector needs three coordinates.
- To find coordinates in a new basis, write the vector as a linear combination of the basis vectors and solve for the coefficients.
- Coordinate systems connect geometry, algebra, and real-world modeling in a precise way.
