Intro To Vectors
Intro To Vectors
Contents
1 What is a Vector? 2
2 Defining a Vector 2
2.1 Equivalent Vectors . . . . . . . . . . . . . . . . . . . . . . . . 3
1
1 What is a Vector?
• Many mathematical quantities just express a magnitude. Examples
include time intervals, amounts of money, and lengths. Such things are
called scalars.
2 Defining a Vector
Vectors in 2D requires two pieces of information for a full description. One
common way to do this is provide the magnitude (denoted ||~v ||) and an angle,
θ. For example you could have a vector of 4 units magnitude with a direction
given by 0.8 radians. Now you have a fully-described vector, baby!
2
4
=
||
||~v
θ = 0.8
3
~b
~a
~a + ~b
Figure 3: An example showing how two vectors can be added using the
polygon method. In this case the shape is not a right triangle, so you’d have
to either measure the resultant side with a ruler or use trigonometry. Don’t
bother trying here, because I haven’t given you enough information to solve
the triangle.
When two vectors are involved and have different initial points, the
polygon method is really just the triangle method. With more complicated
polygons, you need to draw them to-scale so that you can outright measure
the length of the resultant ray and arrive at an approximate answer. Yeah,
not very rigorous. There is a more precise way to do it though!
4
4
=
opp
||
||~v
θ = 0.8
adj
4 sin 0.8
Figure 4: Opp = 4 sin 0.8 and adj = .
tan 0.8
−~b
~a + (−~b)
~a
5
3.2.3 Example of Subtracting Components
If ~a = (2, 3) and ~b = (1, 4), find ~a − ~b.
Solution.
~a − ~b = (2 − 1, 3 − 4) = (1, −1).
• Associative
• Commutative
• Distributive