IB MATHEMATICS: APPLICATIONS AND INTERPRETATION • GEOMETRY AND TRIGONOMETRY

2D Vectors — SL 3.5 Vectors in 2D (components, magnitude, basic operations) (intro)

Learn how vectors describe quantities that have both size and direction in two dimensions.

Historical Context & Motivation

Imagine you are giving a friend directions to a coffee shop. You wouldn't just say "walk 500 metres" — you'd also need to say in which direction. That distinction — needing both a size and a direction — is exactly the problem that vectors were invented to solve. For centuries, scientists and mathematicians struggled to combine forces, velocities, and displacements that pointed in different directions. Ordinary numbers (which we call scalars) only capture size, so a new kind of mathematical object was needed.

1687
Newton's Parallelogram Rule
Isaac Newton showed in his Principia that two forces acting on an object can be combined using a parallelogram, an early geometric view of what we now call vector addition.
1799
Wessel's Directed Lines
Norwegian surveyor Caspar Wessel published a paper treating directed line segments as algebraic quantities, laying groundwork for the component-based approach to vectors.
1843
Hamilton's Quaternions
William Rowan Hamilton developed quaternions, a higher-dimensional extension of complex numbers. This spurred the search for a simpler, purely vector-based language.
1880s
Gibbs & Heaviside Formalize Vectors
Josiah Willard Gibbs and Oliver Heaviside independently stripped quaternions down to the modern vector notation we use today — component form, dot product, and cross product.

The central question that drove all this work was deceptively simple: how do we add, subtract, and measure quantities that point in different directions? In this lesson, you will learn the modern answer — representing vectors by their components, calculating their magnitude, and performing basic operations.

Core Principles & Definitions

Before diving into calculations, let's establish the foundational ideas. A vector is a mathematical object that carries two pieces of information: how much (its magnitude) and which way (its direction). Examples include velocity, force, and displacement. By contrast, a scalar only has magnitude — think of temperature, mass, or speed (speed is the magnitude of velocity).

1

Components

Every 2D vector can be broken into a horizontal part (x-component) and a vertical part (y-component). We write v = (vx, vy) or as a column vector.
2

Magnitude

The magnitude (or length) of a vector tells you 'how much.' It is always a non-negative scalar, calculated using the Pythagorean theorem applied to the components.
3

Direction

A vector's direction is the angle it makes, typically measured from the positive x-axis going anti-clockwise. Two vectors with the same magnitude but different directions are different vectors.
4

Equality of Vectors

Two vectors are equal if and only if they have the same magnitude and the same direction. Their starting point doesn't matter — you can 'slide' a vector anywhere without changing it.
5

Basic Operations

You can add or subtract vectors component-by-component, and you can multiply a vector by a scalar to stretch or shrink it. These operations form the toolkit for this topic.
KEY TAKEAWAY
Think of a vector like a flight on a map — the arrow shows both the distance and the heading. A scalar is like the odometer reading in your car: it tells you how far you've driven, but not in which direction. Whenever a quantity needs 'which way?' answered alongside 'how much?', you need a vector.

Visualising Vectors on the Coordinate Plane

The best way to understand vectors is to see them drawn on a coordinate plane. Every 2D vector can be represented as an arrow starting at the origin and ending at the point defined by its components. The diagram below shows the vector a = (4, 3), illustrating how the x-component and y-component form a right triangle with the vector itself as the hypotenuse.

The vector a = (4, 3) shown as a cyan arrow from the origin. The x-component (4) runs along the horizontal axis, and the y-component (3) runs vertically. Together they form a 3-4-5 right triangle, giving a magnitude of 5.

Notice how the vector, its x-component, and its y-component form a right triangle. This is the key geometric insight: because the components are perpendicular, we can use the Pythagorean theorem to find the vector's magnitude. The angle θ (shown in green) represents the direction of the vector, measured anti-clockwise from the positive x-axis. You can always recover this angle using trigonometry once you know the components.

Mathematical Framework

Now let's formalise the ideas from the diagram into equations. In the IB course, vectors are typically written as column vectors or in component form. Below are the essential formulas you need for SL 3.5.

COMPONENT FORM
v = (vₓ , v_y) or v = ⎛vₓ⎞ ⎝v_y⎠
A 2D vector v is described by two real numbers: vₓ (horizontal component) and vy (vertical component). Both notations — row and column — appear in IB exams.
MAGNITUDE (LENGTH)
|v| = √(vₓ² + v_y²)
The magnitude |v| is found by applying the Pythagorean theorem to the components. It is always ≥ 0. A vector with magnitude 0 is the zero vector (0, 0).
VECTOR ADDITION
a + b = (aₓ + bₓ , a_y + b_y)
To add two vectors, simply add corresponding components. Geometrically this is the 'tip-to-tail' rule: place the tail of b at the tip of a; the resultant goes from the tail of a to the tip of b.
SCALAR MULTIPLICATION
k · v = (k × vₓ , k × v_y)
Multiplying a vector by a scalar k stretches (if |k| > 1) or shrinks (if |k| < 1) the vector. If k is negative, the direction reverses. The magnitude of the result is |k| × |v|.
📝 IB Notation Tip
On IB exams, vectors are usually printed in bold (v) or with an arrow on top (v⃗). When writing by hand, always underline the letter or draw the arrow. The magnitude is written with vertical bars: |v|. Getting the notation right shows examiners you know what you're doing.

Vector Addition & Subtraction — A Closer Look

Understanding vector addition visually is just as important as doing it algebraically. There are two equivalent geometric methods: the tip-to-tail method and the parallelogram method. The diagram below shows both, applied to the same pair of vectors.

Left: in the tip-to-tail method, place b's tail at a's tip; the resultant runs from a's tail to b's tip. Right: in the parallelogram method, both vectors start at the same point and form two sides of a parallelogram; the diagonal is the resultant.

Vector subtraction works the same way, but you first reverse the direction of the vector being subtracted. That is, ab = a + (−b). In component form: (aₓ − bₓ , ay − by). Geometrically, −b is the vector b flipped 180°, so subtracting is just adding the reversed vector.

Summary of basic vector operations
OperationAlgebraic RuleGeometric Picture
Addition(aₓ + bₓ , a_y + b_y)Tip-to-tail or parallelogram diagonal
Subtraction(aₓ − bₓ , a_y − b_y)Add the reversed vector −b to a
Scalar ×(k × vₓ , k × v_y)Stretch / shrink; negative k flips direction

Worked Example

Let's walk through a complete problem that combines several skills: finding a resultant vector, computing its magnitude, and interpreting the result.

Finding a Resultant Force
1
Step 1 — Read the ProblemTwo forces act on a particle: F1 = (5, −2) newtons and F2 = (−1, 6) newtons. Find the resultant force R = F1 + F2 and calculate its magnitude.
2
Step 2 — Add ComponentsAdd the x-components: 5 + (−1) = 4. Add the y-components: (−2) + 6 = 4.
R = (4, 4)
3
Step 3 — Calculate MagnitudeApply the magnitude formula: |R| = √(4² + 4²) = √(16 + 16) = √32.
|R| = √32 = 4√2 ≈ 5.66 N
4
Step 4 — InterpretThe resultant force has equal x- and y-components (both 4), which means it acts at 45° above the positive x-axis. Its magnitude is approximately 5.66 newtons. On an IB exam, you would typically give the exact form 4√2 and a decimal approximation to 3 significant figures.

Vectors vs. Scalars — Strengths & Limitations

It's worth pausing to see why vectors are so useful — and where they have their limits at the SL level. The table below compares vector quantities with scalar quantities across several categories.

Scalar vs. vector comparison
FeatureScalarVector
Information carriedMagnitude only (e.g. 5 km)Magnitude and direction (e.g. 5 km east)
AdditionOrdinary arithmetic (3 + 4 = 7)Component-wise; result depends on directions
ExamplesTemperature, mass, speed, energyVelocity, force, displacement, acceleration
Can be negative?Yes (e.g. −5 °C)Components can be negative (direction, not size)
RepresentationA single number with unitsAn arrow, a pair of components, or column notation
KEY TAKEAWAY
Scalars are like answering 'how far?', while vectors answer 'how far and which way?'. At the SL level, you work only in two dimensions, but the same component ideas extend naturally to 3D in the HL course. The real power of vectors is that they let you break a complicated diagonal motion into simple horizontal and vertical pieces that you can handle independently.

Connection to Advanced Theory

The 2D vector toolkit you've learned in this lesson is the foundation for more advanced topics. At the HL level, vectors expand into three dimensions and you encounter operations like the scalar (dot) product and the vector (cross) product. Even within SL, vectors reappear when you study kinematics (velocity and acceleration as vectors) and vector equations of lines.

From SL to HL — how 2D vectors grow
ConceptSL 3.5 (This Lesson)HL / Further Study
Dimensions2D: (x, y)3D: (x, y, z) and beyond
OperationsAddition, subtraction, scalar multiplication, magnitudeDot product, cross product, unit vectors, projections
ApplicationsDisplacement, force diagrams, navigation3D geometry, physics simulations, computer graphics
NotationColumn vectors, component pairsî, ĵ, k̂ unit vector notation; matrix representations

Mastering the component approach and the magnitude formula now will make the transition to these more advanced ideas smooth. Every new operation — whether it's a dot product or a vector equation of a line — builds directly on the skills of reading, writing, and manipulating components that you practised in this lesson.

Practice Problems

PROBLEM 1CONCEPTUAL
A student says, 'Speed is a vector because it has magnitude.' Explain why this statement is incorrect and give an example to illustrate your answer.
PROBLEM 2BASIC CALCULATION
Find the magnitude of the vector u = (−6, 8). Give your answer as an exact value.
PROBLEM 3INTERMEDIATE
Given a = (3, −1) and b = (−2, 5), find (a) the vector 2ab, and (b) the magnitude of 2ab.
PROBLEM 4APPLIED
A drone flies from point A to point B, a displacement of (120, 50) metres. It then flies from B to C, a displacement of (−30, 80) metres. Find the total displacement from A to C and the total distance the drone would need to fly if it went directly from A to C. Give your distance answer to 1 decimal place.
PROBLEM 5CRITICAL THINKING
Suppose p = (k, 2k) for some real number k > 0, and |p| = 10. Find the value of k and hence write down the vector p. What do you notice about the relationship between the components?

Lesson Summary

A 2D vector carries both magnitude and direction, written in component form as (vₓ, vy). The magnitude is found using the Pythagorean theorem: |v| = √(vₓ² + vy²). Vector addition and subtraction are performed component-by-component, while scalar multiplication scales every component by the same factor.

Geometrically, addition uses the tip-to-tail or parallelogram method. These foundational skills — reading components, computing magnitude, and combining vectors — form the basis for every further vector topic in the IB, from dot products to vector equations of lines. Remember: scalars answer 'how much?'; vectors answer 'how much and which way?'

Varsity Tutors • IB Mathematics: Applications and Interpretation • 2D Vectors — SL 3.5 Vectors in 2D (components, magnitude, basic operations) (intro)