[Math C] Welcome to the World of Vectors!

Hello, everyone! Let’s begin our study of "vectors," one of the major pillars of Math C.
You might be thinking, "What exactly is a vector?" or "All these arrows look so confusing..." but don't worry! Vectors are essentially "magic arrows"—a super convenient way to represent the "space" we live in using numbers.
In this article, we’ll take it one step at a time, explaining things in a way that makes sense even if you don't feel like you’re a "geometry person."

1. What is a vector, anyway?

In the math you've studied so far (we call these scalars), we’ve only dealt with "magnitude," like "3 km" or "50 kg."
However, a vector is a quantity that combines both "magnitude" and "direction."

Think of vectors like a treasure hunt map

For example, if a friend told you, "Walk 100 meters from here!" you’d be confused, right? You’d immediately ask, "In which direction?"
"Head North (direction) for 100 meters (magnitude)." Only with these two pieces of information can you reach your destination. That is the core concept of a vector.

How to represent vectors

・In diagrams, we use "arrows." If the starting point is \(A\) and the endpoint is \(B\), we write the vector as \(\vec{AB}\).
・We can also represent it with a single letter, such as \(\vec{a}\).
・The length (magnitude) of a vector is expressed using absolute value symbols: \(|\vec{a}|\).

【Tip】Position doesn't matter!

What matters most for a vector is only its "direction" and "length." No matter where the starting point is, if the direction and length are the same, they are considered "the same vector." It means if you can shift one to overlap with the other, they’re identical!

2. Vector Addition and Subtraction

You can perform calculations with vectors just like regular numbers. Thinking about them visually makes it much easier to grasp.

Addition (Composition)

\(\vec{a} + \vec{b}\) is just like a "chain-linking" game.
1. Connect the starting point of \(\vec{b}\) to the endpoint of \(\vec{a}\).
2. The arrow that connects the very first starting point to the final endpoint is your answer.
(You can also think of it by constructing a parallelogram and using its diagonal!)

Subtraction

Subtraction \(\vec{b} - \vec{a}\) is a common point of confusion.
Just remember: "The arrow points from the 'tail' (the one being subtracted, \(a\)) to the 'head' (the other one, \(b\))!"
When you align their starting points, the arrow pointing from the tip of \(\vec{a}\) to the tip of \(\vec{b}\) is your answer.

【Common Mistake】

Many people get the direction of subtraction backward. Remember this mantra: "Endpoint minus starting point!"

3. Component Representation of Vectors

Drawing arrows all the time is a hassle, so let’s use coordinates to represent them with numbers. This is called component representation.

If a vector \(\vec{a}\) on a plane moves \(x\) units to the right and \(y\) units up, we write \(\vec{a} = (x, y)\).

Calculations using components (It’s really easy!)

When \(\vec{a} = (a_1, a_2)\) and \(\vec{b} = (b_1, b_2)\):
・Addition: \(\vec{a} + \vec{b} = (a_1 + b_1, a_2 + b_2)\)
・Subtraction: \(\vec{a} - \vec{b} = (a_1 - b_1, a_2 - b_2)\)
・Scalar multiplication: \(k\vec{a} = (ka_1, ka_2)\)
Since it's just adding or subtracting the horizontal and vertical parts independently, there's nothing to be afraid of!

【Trivia】Magnitude of a vector

The magnitude (length) of a vector with components \((x, y)\) can be found using the Pythagorean theorem:
\(|\vec{a}| = \sqrt{x^2 + y^2}\)

4. The Scalar Product (Dot Product) (Most important point!)

The "dot product" (or inner product) is a unique type of multiplication for vectors. There are two ways to calculate it.

Formula 1: Geometric Definition

\(\vec{a} \cdot \vec{b} = |\vec{a}| |\vec{b}| \cos \theta\)
(\(\theta\) is the angle between the two vectors)

Formula 2: Definition using components

\(\vec{a} \cdot \vec{b} = a_1 b_1 + a_2 b_2\)
(Sum of the products of the x-components and y-components)

【Important】Perpendicular means dot product is zero!

If two vectors are perpendicular (90 degrees), then \(\cos 90^\circ = 0\), so the dot product is always 0. This is incredibly useful for exams!
Remember it like a spell: "Perpendicular ⇔ Dot product = 0."

5. Vectors in Space (The core of Math C!)

In Math C, we move beyond the plane \((x, y)\) to deal with 3D spatial vectors that include height \((z)\).

From Plane to Space: The basics are the same!

It might sound difficult, but the basic rules are exactly the same as they were for the plane.
・Components: \(\vec{a} = (x, y, z)\), just one extra number.
・Magnitude: \(|\vec{a}| = \sqrt{x^2 + y^2 + z^2}\)
・Dot product: \(\vec{a} \cdot \vec{b} = a_1 b_1 + a_2 b_2 + a_3 b_3\)
You’re just adding a \(z\) element, so there's almost nothing new to learn!

【Step-by-Step】How to master 3D geometry

1. First, decide on three base vectors (like \(\vec{a}, \vec{b}, \vec{c}\)).
2. Express all other points in space using these three vectors.
3. Use dot products or ratios (like \(m:n\)) to carry out your calculations.

Summary: Tips for studying vectors

If you get stuck on a vector problem, remember these three steps:

  1. Draw a diagram: Connect the arrows and get a visual image.
  2. Calculate with components: If the diagram is too complex, switch to numbers.
  3. Master the dot product: If there's an angle or a condition of perpendicularity, it's time to use the dot product!

You might not be used to the direction of the arrows or the notation at first, but as you solve more problems, you'll start to realize, "Hey, this is just like a puzzle!"
Vectors in Math C are an exciting field used in engineering, physics, and the world of 3D computer graphics. Don't rush; just move at your own pace!

I'm rooting for you!