Lesson 2: Vector Operations

1. Vector Addition

To add two vectors, add their corresponding components.

Geometric meaning: place tail of second vector at head of first → result is from start to end.

Example:

\[ \begin{pmatrix} 2 \\ 1 \end{pmatrix} + \begin{pmatrix} 3 \\ 4 \end{pmatrix} = \begin{pmatrix} 5 \\ 5 \end{pmatrix} \]

Exercise 1

Compute:
\[ \begin{pmatrix} 1 \\ 4 \end{pmatrix} + \begin{pmatrix} 3 \\ -2 \end{pmatrix} = \begin{pmatrix} x \\ y \end{pmatrix} \] x = , y =

2. Vector Subtraction

Subtract corresponding components.

Geometric meaning: reverse the second vector and add.

Example:

\[ \begin{pmatrix} 5 \\ 7 \end{pmatrix} - \begin{pmatrix} 2 \\ 3 \end{pmatrix} = \begin{pmatrix} 3 \\ 4 \end{pmatrix} \]

Exercise 2

What is \(\begin{pmatrix} 4 \\ 1 \end{pmatrix} - \begin{pmatrix} 1 \\ 3 \end{pmatrix}\)?

3. Scalar Multiplication

Multiply every component by a number (scalar).

Effect: stretches or shrinks the vector; negative scalar reverses direction.

Example:

\[ 3 \times \begin{pmatrix} 1 \\ 2 \end{pmatrix} = \begin{pmatrix} 3 \\ 6 \end{pmatrix}, \quad -1 \times \begin{pmatrix} 4 \\ -1 \end{pmatrix} = \begin{pmatrix} -4 \\ 1 \end{pmatrix} \]

Exercise 3

Compute:
\[ -2 \times \begin{pmatrix} 3 \\ -5 \end{pmatrix} = \begin{pmatrix} x \\ y \end{pmatrix} \] x = , y =

Summary – Lesson 2

Next: How long is a vector? (magnitude)

← Previous Lesson (1) Next Lesson (3) →