What is the dimension of a matrix?

I have been under the impression that the dimension of a matrix is simply whatever dimension it lives in. More precisely, if a vector space contained the vectors $(v_1, v_2,...,v_n)$, where each vector contained $3$ components $(a,b,c)$ (for some $a$, $b$ and $c$), then its dimension would be $\Bbb R^3$.

Recently I was told this is not true, and the dimension of this vector space would be $\Bbb R^n$.

In other words, I was under the belief that the dimension is the number of elements that compose the vectors in our vector space, but the dimension is how many vectors the vector space contains?!

Where am I going wrong?


Solution 1:

The dimension of a vector space is the number of coordinates you need to describe a point in it. Thus, a plane in $\mathbb{R}^3$, is of dimension $2$, since each point in the plane can be described by two parameters, even though the actual point will be of the form $(x,y,z)$.

If you take the rows of a matrix as the basis of a vector space, the dimension of that vector space will give you the number of independent rows. For a vector space whose basis elements are themselves matrices, the dimension will be less or equal to the number of elements in the matrix, this $\dim[M_2(\mathbb{R})]=4$

Solution 2:

The following literature, from Friedberg's "Linear Algebra," may be of use here:


Definitions. A vector space is called finite-dimensional if it has a basis consisting of a finite number of vectors. The unique number of vectors in each basis for $V$ is called the dimension of $V$ and is denoted by $\dim(V)$.


A basis, if you didn't already know, is a set of linearly independent vectors that span some vector space, say $W$, that is a subset of $V$.

Solution 3:

The dimension is the number of bases in the COLUMN SPACE of the matrix representing a linear function between two spaces. i.e. if you have a linear function mapping R3 --> R2 then the column space of the matrix representing this function will have dimension 2 and the nullity will be 1. This is a result of the rank + nullity theorem --> e.g. dimension of R3 = rank(col(A)) + null(A), or 3 = 2 + 1. Essentially, one of the basis vectors in R3 collapses (or is mapped) into the 0 vector (the kernel) in R2.