A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Vector Norms and Magnitude

College Depth 77 in the knowledge graph I know this Set as goal
1,036topics build on this
314prerequisites beneath it
See this on the map →
Introduction to Square RootsVectors in R^n: Addition and Scalar Multiplication+2 moreMatrix Norms and Condition NumbersOrthogonal Vectors and Orthonormal Bases
vectors norms magnitude distance

Core Idea

The norm (or magnitude) of a vector is a real number measuring its length, computed as ||v|| = √(v₁² + v₂² + ... + vₙ²). Norms generalize distance to n-dimensional space and satisfy key properties: ||cv|| = |c| ||v|| and the triangle inequality. Unit vectors (norm 1) form the basis for orthonormal sets.

How It's Best Learned

Start with 2D and 3D visualization of distance formula. Then extend algebraically to Rn. Normalize vectors by dividing by their norm to create unit vectors in the same direction.

Explainer

You already know how to work with vectors in ℝⁿ — adding them, scaling them, working with their components. The norm gives you the one thing that's been missing: a way to measure how *long* a vector is. In ℝ² and ℝ³ you've likely seen this as the distance formula from the origin: if v = (3, 4), its length is √(3² + 4²) = √25 = 5. The norm simply extends this to any number of dimensions: for v = (v₁, v₂, ..., vₙ), we define ||v|| = √(v₁² + v₂² + ... + vₙ²). This is called the Euclidean norm or L2 norm.

The norm satisfies three properties that any reasonable notion of "length" should have. First, ||v|| ≥ 0, with equality only when v is the zero vector — a nonzero displacement always has positive length. Second, scaling: ||cv|| = |c| ||v||, so doubling a vector doubles its length and negating it doesn't change the length (the absolute value of the scalar is what matters, not its sign). Third, the triangle inequality: ||u + v|| ≤ ||u|| + ||v||. This is the geometric fact that the straight-line path is never longer than the two-leg detour — a constraint that turns out to be essential in more abstract settings.

One immediate application is normalization: given any nonzero vector v, the vector v/||v|| has norm 1 and points in exactly the same direction as v. This is called a unit vector. Unit vectors let you separate "direction" from "magnitude" — useful whenever you care about orientation without caring about scale (as in defining orthonormal bases). The standard basis vectors e₁ = (1, 0, ..., 0), e₂ = (0, 1, ..., 0), and so on are the canonical unit vectors in ℝⁿ.

The norm also gives you distance between two vectors: d(u, v) = ||u − v||, the length of the displacement vector from v to u. This distance formula underpins nearest-neighbor algorithms, error measurements in least squares, and convergence criteria throughout analysis. When you move to inner product spaces and orthogonality, you'll see that the Euclidean norm is derived from the dot product via ||v|| = √(v · v) — so norms and inner products are tightly linked.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesAngle Pairs: Complementary, Supplementary, and VerticalParallel Lines and TransversalsCorresponding AnglesAlternate Interior AnglesTriangle Angle Sum TheoremExterior Angle TheoremTriangle Inequality TheoremSimilar Triangles: AA SimilaritySimilar Triangles: SSS and SAS SimilarityProportions in Similar TrianglesRight Triangle Trigonometry IntroductionSine, Cosine, and Tangent RatiosTrigonometric Ratios ReviewVectors in Two DimensionsVector Operations: Addition, Subtraction, and Scalar MultiplicationDot Product (Inner Product in R^n)Vector Norms and Magnitude

Longest path: 78 steps · 314 total prerequisite topics

Prerequisites (4)

Leads To (2)