The same vector looks different in different coordinate systems.
Same molecule. Different numbers. The geometry hasn't changed — only our description of it.
Same physical reality. Different numerical description.
How do we translate between them? When does it matter? Why do chemists care?
DIRECTION (continued): "It points."
A vector is a direction and magnitude. The components are how we describe it in a particular coordinate system.
Change the coordinate system → change the components → same vector.
This is the distinction between:
| Situation | What you need |
|---|---|
| "The components look messy — is there a simpler description?" | Change to a better basis |
| "I have data in one coordinate system, need it in another" | Change of basis / coordinate transformation |
| "What do molecular orbital coefficients mean?" | They're components in a basis of atomic orbitals |
| "Why do quantum calculations depend on basis set?" | Different bases → different representations |
| "How do I rotate a molecule?" | Rotation matrix (change of coordinates) |
| "What's the 'natural' coordinate system for this problem?" | Find eigenvectors or symmetry-adapted basis |
Definition: A basis for a vector space V is a set of vectors {e₁, e₂, ..., eₙ} such that:
The number of vectors in a basis is the dimension of V.
In ℝ³, the standard basis is:
Any vector v = (v₁, v₂, v₃) is written:
The components (v₁, v₂, v₃) are the coefficients in this basis.
Blue: basis vectors | Orange: vector v = (3, 2) in standard
Definition: A basis is orthonormal if:
Combined: eᵢ · eⱼ = δᵢⱼ (Kronecker delta)
Why orthonormal bases are nice:
To find the component of v along eᵢ in an orthonormal basis:
Just take the dot product! No matrix inversion needed.
Given: Vector v, basis {e₁, e₂, ..., eₙ}
Find: Components (v₁, v₂, ..., vₙ) such that v = Σvᵢeᵢ
If the basis is orthonormal:
Write out the equation v = v₁e₁ + v₂e₂ + ... + vₙeₙ component by component and solve.
This becomes a matrix equation: Ec = v, where E has basis vectors as columns.
The rotation matrix for angle θ counterclockwise:
Transforms coordinates: v' = R(θ)v
Given: A set of linearly independent vectors {v₁, v₂, ..., vₙ}
Find: An orthonormal basis {e₁, e₂, ..., eₙ} spanning the same space
Starting vectors: v₁ = (2, 1), v₂ = (1, 2)
Step 1: Normalize the first vector
Step 2: Subtract projection onto e₁, then normalize
Step 3: For additional vectors, subtract projections onto all previous eᵢ, then normalize.
A molecular orbital ψ is expressed as a linear combination of atomic orbitals {φ₁, φ₂, ..., φₙ}:
The atomic orbitals form a basis for the space of molecular orbitals.
The coefficients (c₁, c₂, ..., cₙ) are the components of ψ in this basis.
Why do quantum chemistry results depend on basis set?
A "basis set" (STO-3G, 6-31G*, cc-pVDZ, etc.) is literally a choice of basis functions.
The true wavefunction exists independent of basis. Our numerical representation depends entirely on which basis we choose.
Two coupled harmonic oscillators have equations that are coupled in the standard {x₁, x₂} basis.
Transform to normal mode coordinates:
The equations become uncoupled — each normal mode oscillates independently!
The lesson: The right basis diagonalizes the problem.
This is why we seek eigenvectors — they are the natural basis for a given operator.
In crystallography, positions are often given in fractional coordinates relative to the unit cell vectors a, b, c:
where (x, y, z) are fractions (typically 0 to 1).
| I want to... | Use... |
|---|---|
| Find components in orthonormal basis | Dot product: vᵢ = v·eᵢ |
| Find components in general basis | Solve linear system Ec = v |
| Rotate a molecule | Rotation matrix R(θ) |
| Convert crystal coordinates | Basis transformation matrix |
| Simplify coupled equations | Change to normal mode basis |
| Make a basis orthonormal | Gram-Schmidt |
| Understand MO coefficients | They're components in AO basis |
Find the components of v = (3, 4) in the orthonormal basis:
Since the basis is orthonormal, use dot products:
v₁ = v·e₁ = (3, 4)·(1/√2, 1/√2) = (3 + 4)/√2 = 7/√2 ≈ 4.95
v₂ = v·e₂ = (3, 4)·(1/√2, -1/√2) = (3 - 4)/√2 = -1/√2 ≈ -0.71
Components in new basis: (7/√2, -1/√2)
(a) Write the 2D rotation matrix for θ = 45°.
(b) Apply it to the vector (1, 0). What do you get?
(c) Verify that the rotation preserves the length of the vector.
(a) R(45°) = [[cos45°, -sin45°], [sin45°, cos45°]] = [[1/√2, -1/√2], [1/√2, 1/√2]]
(b) R(45°)(1, 0) = (1/√2, 1/√2)
(c) |(1/√2, 1/√2)| = √(1/2 + 1/2) = 1 = |(1, 0)| ✓
For H₂, the bonding and antibonding MOs are:
(a) What are the coefficient vectors for ψ₊ and ψ₋ in the {φₐ, φᵦ} basis?
(b) Show that ψ₊ and ψ₋ are orthogonal (assume φₐ and φᵦ are orthonormal).
(a) ψ₊: (1/√2, 1/√2), ψ₋: (1/√2, -1/√2)
(b) ψ₊·ψ₋ = (1/√2)(1/√2) + (1/√2)(-1/√2) = 1/2 - 1/2 = 0 ✓
A cubic unit cell has a = b = c = 4 Å.
(a) Convert fractional coordinates (0.25, 0.5, 0.75) to Cartesian.
(b) An atom at Cartesian (3, 2, 1) Å — what are its fractional coordinates?
(a) (x, y, z)_Cart = (0.25 × 4, 0.5 × 4, 0.75 × 4) = (1, 2, 3) Å
(b) (x, y, z)_frac = (3/4, 2/4, 1/4) = (0.75, 0.5, 0.25)