Introduction to Vectors and Matrices
In this section, we will introduce two concepts that are pretty foundational to the study of linear algebra: vectors and matrices. It’s important to recognize that these concepts are fundamentally related; I’d personally recommend thinking about vectors as inputs and output, while matrices are the actions taken on those inputs and outputs.
With this frame of thought in mind, matrices act on vectors, so it makes sense to get started with vectors to understand matrices. This might seem somewhat disconnected from section one and section two, but we’ll bring it all together in the next section.
Vectors
There are lots of different ways to think about vectors. Two common ones are what 3blue1brown refers to as the “computer science student perspective” and the “physics student perspective.” (Small side note, but that link is to a video series that gives a very helpful visual explanation of lots of liner algebra topics! If you’re confused by something in these notes, a watch of the relevant video will likely help.) The computer science student perspective is to think about vectors as lists of numbers; essentially a coordinate pair with potentially more than just two entries. The physics student perspective, however, is to think of vectors as arrows in space, pointing a certain direction with a certain length. This makes most sense with two- and three-dimensional vectors, but works generally, if you’re willing to bend your brain a bit.
Definition
This is the definition that we will be using, and will be most common in an
introductory linear algebra course.1
We’ll refer to vectors using boldface type (e.g.,
In my opinion (as a computer science student), it’s easiest to start with the
computer science student perspective; a vector is a list of
This is extremely inconvenient, however, when talking about a vector in the
middle of a paragraph.
This is where we get the lazy way:
It’s common to want to talk about the set (if you’ve not encountered this word
in a mathmatics context before, you can just think of the term “collection”) of
all vectors with
This is a lot of notation, especially if you haven’t seen this stuff before! It might take some practice to really feel fluent in all of these symbols, but they’re there to help — more practice will make it easier.
Basic Vector Operations
Vectors, on their own, aren’t particularly useful.
Thus far, it’s just a list of numbers!
The concept of
Scalar Multiplication
Definition
Given an arbitrary scalar (again, a scalar in this context is just some real
number) that we’ll call
where
So, what does this kludge of notation really mean? Well,
Example
Let’s have our scalar be
Practice
Compute:
, remember the left-most component of a vector written in the “lazy” way is the top-most component of a vector written in the helpful way. If you’re hand-writing these, you should try and use the helpful way as much as possible! , and remember these are just like any other numbers!
Vector Addition
Definition
Given two vectors
where
Again, this is a big pile of notation: what’s the important bits?
(Notice, I’m not going to just rephrase the definition again like I did earlier,
knowing how to read these terse mathematical definitions is a skill, which takes
practice to learn like any other.)
First, both
Example
Let’s add
Practice
- Compute
. - We’ve defined vector addition but not vector subtraction. Given both vector
addition and scalar multiplication, what would be a sensible way to define
vector subtraction? Using this method, compute
.
Visualizing Vectors
Intuition
One of the most key insights in linear algebra is that the two perspectives we’ve discussed for thinking about vectors are really the same, and that it’s extremely useful to be able to switch between them. Being able to change your frame of mind at will is a very difficult skill to master, but it’s very worth it (as well as quite necessary for success in a linear algebra course).
With this in mind, let’s consider the “physics student perspective” for conceptualizing vectors, which is much more amenable to visualization.
-
Vectors are far more general than just this definition. An obvious extension would be extending vectors to have complex components, but you can go even further than that. For full details, check out the Wikipedia article on vector spaces. ↩
-
What a scalar is depends upon the choices you’ve made for your vector space, which is going to be outside the scope of most intro linear algebra courses (see footnote 1). The gist of it is that a scalar is just whatever the components of your vectors are; so if your vectors have real components, it’s a real number, if they have complex components it’s a complex number, etc. ↩