With regards to vector spaces, what does it mean to be 'closed under addition?'

My linear algebra book uses this term in the definition of a vector space with no prior explanation whatsoever. It proceeds to then use this term to explain the proofs.

Is there something painfully obvious I'm missing about this terminology and is this something I should already be familiar with?

The proof uses $u + v$ is in $V$


Solution 1:

Let $V$ be a set with a function $f:V \times V \to V$. We call $f$ a binary operation on $V$ because it takes two elements of $V$ and gives us another element on $V$. We say a subset $U$ of $V$ is closed under the binary operation $f$ if for every pair of elements $u_1$ and $u_2$ in $U$, we have $f(u_1,u_2)\in U$.

In your example you would take $f$ to be the addition function $f(a,b)=a+b$ (exactly what "addition" means will depend on context). So a set is closed under addition if the sum of any two elements in the set is also in the set.

For example, the real numbers $\mathbb{R}$ have a standard binary operation called addition (the familiar one). Then the set of integers $\mathbb{Z}$ is closed under addition because the sum of any two integers is an integer. The set of odd integers is not because, for example, $3+3=6$ which is not odd.

Solution 2:

Sometimes it's easiest to understand a definition by finding objects that don't satisfy the definition. Let me show you a few sets that are not closed under addition. (A set $S$ is "closed under addition" if whenever you pick two elements of $S$, their sum is again in $S$.)

  • The set $S=\{1,2,3\}$ is not closed under addition because $2$ and $3$ are in $S$ but $2+3=5$ is not in $S$.
  • The set $S=\{1\}$ is not closed under addition because $1$ and $1$ are in $S$ but $1+1=2$ is not in $S$. (So we can pick the same point twice.)
  • Along the lines of the previous two examples, any finite set of real numbers except for $\{0\}$ or $\varnothing$ is not closed under addition.
  • The circle of radius $1$ centered at the origin (which consists of points $(x,y)$ where $x^2+y^2=1$) is not closed under addition because, for example, $(0,1)$ and $(0,-1)$ lie on the circle but $(0,1)+(0,-1)=(0,0)$ does not.

Why is the "closed under addition" property useful in linear algebra? As the name suggests, linear algebra is the study of objects that you can add together and multiply by scalars -- vectors -- which live in vector spaces. It would be problematic for a vector space to not be closed under addition since that would violate the "linear" part of linear algebra.