Finding those scalars almost always means solving a small system of equations — that is the one skill this page drills. Recall that a basis must do two jobs at once, and each job is guaranteed by one property: spanning guarantees a solution exists (every vector has at least one address), while independence guarantees the solution is unique (no vector has two addresses). We lean on both throughout.
Every basis problem you will ever meet lives in one of these cells. Figure 1 encodes the same landscape visually — the three coloured regimes (too few, just right, too many) are the spine of everything below, so glance at it before reading the table.
Figure 1 — The whole landscape at a glance. A set of vectors sits in one of three regimes depending on how its size compares to dimV. Red (too few): independent but cannot reach every vector → some addresses are missing (Cell E). Green (just right): exactly dimV independent vectors → a genuine basis, every vector has exactly one address (Cells A, B, F, G, I). Orange (too many): enough to reach everything but redundant → the same vector gets many addresses (Cell D). The green box also swallows the zero-vector case (Cell C), whose address is always all-zeros. Follow the grey arrows: adding a vector pushes you rightward from "just right" into "too many."
#
Case class
What makes it tricky
Regime (Fig 1)
Worked example
A
Standard basis, plain vector
coordinates equal components — the "invisible" case
green
Ex 1
B
Non-standard basis, mixed signs
must solve a 2×2 system; signs matter
green
Ex 2
C
Degenerate INPUT: the zero vector
coordinates should all be 0 — but only if B is a basis
green
Ex 3
D
Degenerate SET: dependent "basis"
coordinates are not unique — must detect failure
orange
Ex 4
E
Degenerate SET: too few (doesn't span)
some vectors have no coordinates — detect failure
red
Ex 5
F
Non-arrow space (polynomials)
"vectors" are functions; same machinery still works
green
Ex 6
G
Non-arrow space (matrices)
2×2 matrices as a 4-dimensional space
green
Ex 7
H
Real-world word problem
translate a mixing/recipe story into coordinates
green
Ex 8
I
Exam twist: verify a set IS a basis in R3
check independence + spanning together via a determinant
Figure 2 — Coordinates as a recipe of scaled basis arrows. The blue arrow u=(2,1) and green arrow v=(−1,3) are the two directions of basis B. The orange arrow is the target w=(3,−4). To build w we walk 75 of the way along u (dashed blue, landing at the blue dot), then −711 along v (dashed green — the negative coefficient means we travel opposite to v). The dashed path lands exactly on the orange arrow's tip: that is what "[w]B=(75,−711)" means as a picture.
Figure 3 — Why the basis is "triangular." Each basis polynomial is a row; each power 1,x,x2 is a column. A filled cell means "this power appears." The filled cells form a lower-triangular staircase: 1 uses only the 1-column; 1+x adds the x-column; 1+x+x2 adds the x2-column. Because only the last basis polynomial reaches the x2 column, its coefficient c is pinned first by the top power; then x is pinned, then 1 — exactly the top-down solve of step 2.
Given a problem, ask in order:
How many vectors vs. dimV? ::: More than dim → dependent (Cell D); fewer → can't span (Cell E); equal → possible basis, check det (Cell I).
Is the input the zero vector? ::: Coordinates are all 0 in any genuine basis (Cell C).
Is the "vector" a polynomial or matrix? ::: Same machinery — match coefficients / slots (Cells F, G).
Is it a mixing/recipe story? ::: It's coordinates in disguise — set up the system (Cell H).