Courses / Mathematics I
Matrices and Vectors

Vectors in the Plane and Space

Mathematics I 200 words Free to read

Vectors and Basic Operations

A vector is a quantity with magnitude and direction, represented by an arrow. In coordinates, a 2D vector is (v1,v2)(v_1, v_2) and a 3D vector is (v1,v2,v3)(v_1, v_2, v_3); generally Rn\mathbb{R}^n uses nn components. Components are signed displacements along axes.

Two operations govern vectors:

OperationAlgebraic RuleGeometric Rule
Addition(a1,a2)+(b1,b2)=(a1+b1,a2+b2)(a_1, a_2) + (b_1, b_2) = (a_1+b_1, a_2+b_2)Tip-to-tail placement; sum runs from first tail to last tip.
Scalar Multiplicationc(v1,v2)=(cv1,cv2)c(v_1, v_2) = (cv_1, cv_2)Scales length by c|c|; negative cc reverses direction.
Addition traced tip-to-tail, then one arrow rescaled by a sweeping

Magnitude and Normalization

The magnitude (length or norm) is calculated via the Pythagorean theorem: v=v12+v22\|v\| = \sqrt{v_1^2 + v_2^2} in the plane, extending to space as v=v12+v22+v32\|v\| = \sqrt{v_1^2 + v_2^2 + v_3^2}. A unit vector has length 1. Normalizing a nonzero vector divides it by its length: vv\frac{v}{\|v\|}.

Common pitfall: Never add vectors by adding their magnitudes, and never confuse magnitude with components. Vectors add componentwise. The triangle inequality states u+vu+v\|u + v\| \le \|u\| + \|v\|, with equality holding only when uu and vv point in the exact same direction.

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

9practice questions
2interactive scenes

Matrices and Vectors