06-reference

3blue1brown vectors chapter 1

Sun Apr 19 2026 20:00:00 GMT-0400 (Eastern Daylight Time) ·reference ·source: 3Blue1Brown (YouTube) ·by Grant Sanderson
3blue1browngrant-sandersonlinear-algebravectorsvector-additionscalar-multiplicationbasis-vectorsmathematical-pedagogycanonical-explainerml-prerequisitesgeometric-intuitionessence-of-linear-algebra

3Blue1Brown — Vectors | Chapter 1, Essence of linear algebra

Why this is in the vault

This is the canonical opener of Grant Sanderson’s Essence of Linear Algebra series — 11.5M views as of April 2026, posted August 2016 — and the single best lay-accessible answer to the question “what is a vector, really, and why does it matter that mathematicians, physicists, and computer scientists each see a different object when they hear the word?” The video keeps because (1) it is the prerequisite explainer to point any audience member at before they engage with anything in our AI trilogy from cycle 30 — neural networks, LLMs, and diffusion models all live in vector spaces, and a reader who hasn’t internalized the arrow ↔ list-of-numbers translation will read those AI explainers as magical thinking; (2) the three-perspectives framing (physics-arrow / CS-list / mathematician-abstract-axiom) is the cleanest available decomposition of why “what is a vector?” is genuinely a confusing question with multiple right answers, and explicitly diagnoses the cross-disciplinary translation problem that data engineers face daily when moving between SQL columns, ML feature tensors, and geometric embeddings; (3) Sanderson’s thesis statement — “the usefulness of linear algebra has less to do with either one of these views than it does with the ability to translate back and forth between them” — is the load-bearing pedagogical claim of the whole field, and a directly transferable principle for any cross-modal data work; (4) the video’s pedagogical structure (concrete object → multiple framings → operational definition → numerical follow-through → preview of next chapter) is reusable as a template for any technical-explainer Sanity Check piece. The series is also a load-bearing dependency for CA-014 (high-dimensional surface concentration) — that concept is unreadable without first internalizing the arrow ↔ list translation introduced here.

Core argument

  1. A vector has three legitimate definitions, and the disagreements are the point. Physics: an arrow with magnitude and direction, freely placeable in space. CS: an ordered list of numbers (e.g., (sqft, price) for a house). Mathematician: anything where vector addition and scalar multiplication are sensibly defined, regardless of representation.
  2. For the linear-algebra series, anchor on “arrow rooted at the origin in a coordinate system.” This is a deliberate restriction relative to the physics view (which lets vectors float anywhere) — and the restriction matters because it is what makes the bijection between vectors and coordinate-tuples one-to-one.
  3. Coordinates encode walking instructions. The pair [x, y] (written vertically, square brackets, to distinguish from points) means: walk x along the x-axis, then y parallel to the y-axis. Every pair gives exactly one vector; every vector gives exactly one pair. Generalizes to triplets in 3D.
  4. Vector addition is tip-to-tail composition; numerically it’s component-wise. The geometric intuition (move along v, then along w → arrive at v+w) and the numerical recipe (add coordinates pairwise) describe the same operation. Why this definition? Because each vector encodes a movement, and composing movements should commute through the sum. Same shape as 2 + 5 = 7 on a number line.
  5. Scalar multiplication is stretching/squishing/flipping. Multiplying a vector by 2 doubles its length; by 1/3 squishes it to a third; by -1.8 flips and stretches by 1.8. Numerically: multiply each component by the scalar. The word “scalar” comes from this scaling action and is treated as effectively interchangeable with “number” throughout the field.
  6. Every linear-algebra topic to follow will revolve around these two operations. Span, basis, transformations, matrices, determinants, eigenvalues — each is built from vector addition and scalar multiplication. The series is structured to make this claim feel inevitable rather than arbitrary.
  7. The translatability between geometric and numerical views is the discipline’s actual value. Data analysts get a way to see lists of numbers as geometric objects (clarifies pattern-finding); physicists and graphics programmers get a way to drive geometric manipulation through arithmetic that computers can run. The whole power of linear algebra lives in the back-and-forth, not in either view alone.

Mapping against Ray Data Co

Pedagogical structure (reusable template)

  1. Open with a definitional disagreement. Three perspectives on “what is a vector” — surfaces the cross-disciplinary translation problem before solving it.
  2. Pick one as the anchor for the series. Arrow rooted at origin — the deliberate restriction that makes everything else clean.
  3. Translate to the other view via coordinates. Walking instructions — geometric and numerical bijection established explicitly.
  4. Generalize the dimension. 2D → 3D, with the same structural recipe — primes the reader for higher-dim generalizations later.
  5. Define the two foundational operations. Vector addition (geometric tip-to-tail; numerical componentwise) and scalar multiplication (geometric stretch/flip; numerical componentwise). Both shown in both views.
  6. Justify each operation’s definition by intuition. Why this addition rule? Because it composes movements. Why this scalar rule? Because stretching arrow length matches multiplying components. Definitions that feel arbitrary become inevitable when motivated this way.
  7. Close by previewing the next chapter and naming the central thesis. Span / basis / linear dependence ahead; the field’s value lives in translating between views.

Notable quotes

Source provenance