vectors
Vectors in the Plane
You should know: coordinate plane
Overview
A vector in the plane is a quantity with both magnitude and direction, represented as an ordered pair ⟨a, b⟩ or drawn as an arrow from one point to another. Unlike a point, which marks a location, a vector represents displacement, velocity, or force — it can be translated anywhere in the plane without changing its identity, since only its length and direction matter. Vectors support addition, scalar multiplication, and the dot product, and every vector can be decomposed into components along the standard basis vectors i = ⟨1,0⟩ and j = ⟨0,1⟩.
Intuition
Picture a vector as an arrow: sliding it anywhere in the plane without rotating or stretching it doesn't change which vector it is, because a vector only encodes 'how far and which way,' not 'from where.' Adding two vectors tip-to-tail (placing the second vector's tail at the first vector's tip) traces out the same displacement as adding their components separately — this is the parallelogram rule made algebraic. The dot product measures how much two vectors point in the same direction: it's largest when they're parallel, zero when they're perpendicular, and negative when they point opposite ways.
Formal Definition
For vectors u = ⟨u₁, u₂⟩ and v = ⟨v₁, v₂⟩ and scalar k:
Worked Examples
Add corresponding components.
Apply the magnitude formula to u.
Answer: u + v = ⟨2, 6⟩, ‖u‖ = 5
Practice Problems
Given u = ⟨2, −5⟩ and v = ⟨4, 1⟩, find 2u − v.
Determine whether u = ⟨6, −2⟩ and v = ⟨1, 3⟩ are perpendicular.
Two forces act on an object: F₁ = ⟨5, 0⟩ N and F₂ = ⟨0, 12⟩ N. Find the magnitude of the resultant (net) force.
Quiz
Summary
- A vector ⟨a,b⟩ encodes magnitude and direction, not location; it can be freely translated in the plane.
- Vector addition and scalar multiplication work componentwise; magnitude is √(a²+b²) via the Pythagorean theorem.
- The dot product u·v = ‖u‖‖v‖cosθ measures alignment: positive when vectors point similarly, zero when perpendicular, negative when opposed.
References
- WebsiteWikipedia — Euclidean vector
Mathematics