1. Vectors and Geometry

Vector Basics

Introduces vectors, magnitude, direction, and basic operations such as addition and scalar multiplication.

Vector Basics

Welcome to your introduction to vectors, students! 🎉 In this lesson, you’ll dive into the world of vectors: what they are, how they work, and why they’re so important in math and science. By the end, you’ll understand the basics of vector magnitude, direction, addition, and scalar multiplication. Let’s get started and make vectors your new best friends!

What Are Vectors?

Imagine you’re giving directions to someone. You might say, “Go 5 miles north.” That’s a vector! Unlike plain numbers (called scalars), vectors have both magnitude (how much) and direction (which way). This combination makes vectors super useful for describing things like forces, velocities, and more.

Scalars vs. Vectors

A scalar is a quantity with only magnitude. For example:

  • Temperature: 25°C
  • Mass: 10 kg
  • Time: 3 hours

A vector is a quantity with both magnitude and direction. For example:

  • Displacement: 5 km east
  • Velocity: 60 m/s south
  • Force: 20 N upward

Vectors are often represented as arrows. The length of the arrow shows the magnitude, and the arrowhead shows the direction.

Real-World Example: Driving

Let’s say you’re driving. If you say, “I drove 50 miles,” that’s a scalar. But if you say, “I drove 50 miles north,” that’s a vector. It’s not just how far you went, but also where you went.

Representing Vectors

Vectors can be represented in a few different ways. The most common ways are:

1. Geometric Representation

In geometry, we draw vectors as arrows. For example, a vector pointing 3 units to the right and 4 units up would look like an arrow going from the origin $(0,0)$ to the point $(3,4)$.

2. Component Form

We can also write vectors in component form. For a 2D vector, this looks like:

$$ \mathbf{v} = \langle v_x, v_y \rangle $$

where $v_x$ is the horizontal component and $v_y$ is the vertical component.

For example, the vector that goes 3 units to the right and 4 units up is:

$$ \mathbf{v} = \langle 3, 4 \rangle $$

3. Unit Vector Notation

We can also use unit vectors. A unit vector is a vector with a magnitude of 1. The two most common unit vectors in 2D are:

  • $\mathbf{i}$ for the horizontal direction (1 unit to the right)
  • $\mathbf{j}$ for the vertical direction (1 unit up)

So, we can write the vector $\langle 3, 4 \rangle$ as:

$$ \mathbf{v} = 3\mathbf{i} + 4\mathbf{j} $$

Similarly, in 3D, we add a third unit vector:

  • $\mathbf{k}$ for the out-of-plane direction (1 unit forward/backward)

A 3D vector might look like:

$$ \mathbf{v} = 2\mathbf{i} + 3\mathbf{j} + 4\mathbf{k} $$

Real-World Example: Airplane Navigation

An airplane flying northeast at 300 km/h can be represented as a vector. The magnitude is the speed (300 km/h), and the direction is northeast. If the pilot knows the wind is blowing south at 50 km/h, they can use vectors to figure out the plane’s actual path.

Magnitude of a Vector

The magnitude of a vector is its length. In other words, it’s how big the vector is. We use the double bar notation to show magnitude:

$$ |\mathbf{v}| $$

How to Find Magnitude

For a 2D vector $\mathbf{v} = \langle v_x, v_y \rangle$, the magnitude is found using the Pythagorean theorem:

$$ |\mathbf{v}| = \sqrt{v_x^2 + v_y^2} $$

For example, for the vector $\langle 3, 4 \rangle$:

$$ |\mathbf{v}| = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5 $$

For a 3D vector $\mathbf{v} = \langle v_x, v_y, v_z \rangle$, the magnitude is:

$$ |\mathbf{v}| = \sqrt{v_x^2 + v_y^2 + v_z^2} $$

Real-World Example: Distance

If you walk 3 km east and 4 km north, the total straight-line distance from your starting point (the magnitude of your displacement vector) is 5 km. This is the same as calculating the hypotenuse of a right triangle.

Direction of a Vector

The direction of a vector tells us which way it’s pointing. We often measure direction as an angle from the positive x-axis.

How to Find Direction (2D)

For a 2D vector $\mathbf{v} = \langle v_x, v_y \rangle$, the direction (angle $\theta$) is found using the inverse tangent function (also called arctan or $\tan^{-1}$):

$$ \theta = \tan^{-1}\left(\frac{v_y}{v_x}\right) $$

For example, for the vector $\langle 3, 4 \rangle$:

$$ \theta = \tan^{-1}\left(\frac{4}{3}\right) \approx 53.13^\circ $$

This means the vector is about 53.13° above the positive x-axis.

Real-World Example: Projectile Motion

When you throw a ball, the direction of its initial velocity vector determines the angle at which it’s launched. This angle affects how far and how high the ball will go.

Vector Addition

Adding vectors is like adding arrows. You combine their magnitudes and directions.

Geometric Method: Tip-to-Tail

To add two vectors geometrically:

  1. Draw the first vector.
  2. Place the tail of the second vector at the tip of the first.
  3. The sum is the vector from the start of the first vector to the tip of the second.

Component Method

To add vectors using components, you add the corresponding components. If:

$$ \mathbf{a} = \langle a_x, a_y \rangle \quad \text{and} \quad \mathbf{b} = \langle b_x, b_y \rangle $$

then:

$$ \mathbf{a} + \mathbf{b} = \langle a_x + b_x, a_y + b_y \rangle $$

For example, if:

$$ \mathbf{a} = \langle 3, 4 \rangle \quad \text{and} \quad \mathbf{b} = \langle 1, 2 \rangle $$

then:

$$ \mathbf{a} + \mathbf{b} = \langle 3 + 1, 4 + 2 \rangle = \langle 4, 6 \rangle $$

Real-World Example: Forces

If two people are pushing on a box with forces represented by vectors, the total force is the vector sum. If one person pushes with a force of 10 N east and another pushes with 5 N north, the total force vector can be found by adding the two vectors.

Scalar Multiplication

Scalar multiplication means multiplying a vector by a scalar (a regular number). This changes the magnitude but not the direction (unless the scalar is negative, which flips the direction).

How to Multiply a Vector by a Scalar

If:

$$ \mathbf{v} = \langle v_x, v_y \rangle $$

and we multiply by a scalar $c$, the result is:

$$ c\mathbf{v} = \langle c v_x, c v_y \rangle $$

For example, if $\mathbf{v} = \langle 3, 4 \rangle$ and $c = 2$:

$$ 2\mathbf{v} = \langle 2 \times 3, 2 \times 4 \rangle = \langle 6, 8 \rangle $$

Real-World Example: Stretching a Vector

If you double the speed of a car, you’re multiplying its velocity vector by 2. The direction stays the same, but the magnitude (speed) doubles.

Negative Scalars

If the scalar is negative, the vector flips direction. For example, if:

$$ \mathbf{v} = \langle 3, 4 \rangle $$

then:

$$ -\mathbf{v} = \langle -3, -4 \rangle $$

This vector points in the opposite direction.

Unit Vectors

A unit vector is a vector with magnitude 1. It shows direction but not magnitude. To find a unit vector in the direction of any vector $\mathbf{v}$, we divide the vector by its magnitude:

$$ \hat{\mathbf{v}} = \frac{\mathbf{v}}{|\mathbf{v}|} $$

For example, if:

$$ \mathbf{v} = \langle 3, 4 \rangle $$

then:

$$ |\mathbf{v}| = 5 $$

so the unit vector is:

$$ \hat{\mathbf{v}} = \frac{\langle 3, 4 \rangle}{5} = \langle \frac{3}{5}, \frac{4}{5} \rangle = \langle 0.6, 0.8 \rangle $$

Real-World Example: Direction Without Magnitude

If you only care about direction (like a compass needle), you’d use a unit vector. The needle points north, but the length of the needle doesn’t matter for the direction it shows.

Vector Operations in 3D

Everything we’ve learned so far applies to 3D vectors, too. A 3D vector looks like:

$$ \mathbf{v} = \langle v_x, v_y, v_z \rangle $$

Magnitude in 3D

For a 3D vector:

$$ |\mathbf{v}| = \sqrt{v_x^2 + v_y^2 + v_z^2} $$

Addition in 3D

For two 3D vectors:

$$ \mathbf{a} = \langle a_x, a_y, a_z \rangle \quad \text{and} \quad \mathbf{b} = \langle b_x, b_y, b_z \rangle $$

The sum is:

$$ \mathbf{a} + \mathbf{b} = \langle a_x + b_x, a_y + b_y, a_z + b_z \rangle $$

Scalar Multiplication in 3D

For a 3D vector $\mathbf{v} = \langle v_x, v_y, v_z \rangle$ and scalar $c$:

$$ c\mathbf{v} = \langle c v_x, c v_y, c v_z \rangle $$

Real-World Example: Physics in 3D

In physics, forces, velocities, and accelerations often have three dimensions. For example, a drone flying through the air has motion in all three dimensions: forward/backward, left/right, and up/down.

Conclusion

Congratulations, students! You’ve learned the basics of vectors: what they are, how to find their magnitude and direction, how to add them, and how to multiply them by scalars. Vectors are powerful tools used in physics, engineering, and beyond. You’re now ready to apply these concepts to more advanced problems and real-world situations. Keep practicing, and soon vectors will feel like second nature! 🚀

Study Notes

  • A vector has both magnitude and direction.
  • Scalars have only magnitude (e.g., temperature, mass).
  • Vectors can be represented as:
  • Arrows (geometric representation)
  • Components: $\langle v_x, v_y \rangle$ or $\langle v_x, v_y, v_z \rangle$
  • Unit vectors: $v_x\mathbf{i} + v_y\mathbf{j} + v_z\mathbf{k}$
  • Magnitude of a 2D vector:

$$ |\mathbf{v}| = \sqrt{v_x^2 + v_y^2} $$

  • Magnitude of a 3D vector:

$$ |\mathbf{v}| = \sqrt{v_x^2 + v_y^2 + v_z^2} $$

  • Direction of a 2D vector (angle from the positive x-axis):

$$ \theta = \tan^{-1}\left(\frac{v_y}{v_x}\right) $$

  • Vector addition (component-wise):

$$ \mathbf{a} + \mathbf{b} = \langle a_x + b_x, a_y + b_y \rangle $$

  • Scalar multiplication:

$$ c\mathbf{v} = \langle c v_x, c v_y \rangle $$

  • Unit vector in the direction of $\mathbf{v}$:

$$ \hat{\mathbf{v}} = \frac{\mathbf{v}}{|\mathbf{v}|} $$

  • Negative scalar multiplication flips the vector’s direction.
  • Real-world examples of vectors: displacement, velocity, force, acceleration.

Keep these notes handy, and you’ll have a solid foundation for mastering vectors! 🌟

Practice Quiz

5 questions to test your understanding

Vector Basics — Calculus 3 | A-Warded