Change of Basis / Coordinate Systems

Viewing vectors in different reference frames.

Progress

0/2 Concepts Completed

Est. Time

0h 30m

Theory: A New Perspective

A basis is a set of vectors that can be used as a coordinate system for a vector space. The standard basis we're all used to is (ı^\mathbf{\hat{\imath}}, ȷ^\mathbf{\hat{\jmath}}), which are the vectors (10)\begin{pmatrix} 1 \\ 0 \end{pmatrix} and (01)\begin{pmatrix} 0 \\ 1 \end{pmatrix} respectively. The coordinates of a vector v=(32)\mathbf{v} = \begin{pmatrix} 3 \\ 2 \end{pmatrix} simply mean "3 steps in the ı^\mathbf{\hat{\imath}} direction and 2 steps in the ȷ^\mathbf{\hat{\jmath}} direction."

However, we can choose any two linearly independent vectors to be our basis. A **change of basis** is the process of re-expressing a vector in terms of a new set of basis vectors. It's like translating a description of a location from one language (e.g., "3 steps east, 2 steps north") to another language (e.g., "1.5 steps northeast, 0.5 steps northwest"). The location itself doesn't change, just how we describe it.


The Change of Basis Matrix

If we have a new basis B = {b₁, b₂}, we can create a "change of basis matrix" PBP_B whose columns are these new basis vectors. To find the standard coordinates of a vector given in the new basis, we simply multiply:

[v]B=(c1c2)[\mathbf{v}]_B = \begin{pmatrix} c_1 \\ c_2 \end{pmatrix}
vstd=PB[v]B=c1b1+c2b2\mathbf{v}_{\text{std}} = P_B [\mathbf{v}]_B = c_1\mathbf{b}_1 + c_2\mathbf{b}_2

To go the other way—from standard coordinates to the new basis—we use the inverse matrix:

[v]B=PB1vstd[\mathbf{v}]_B = P_B^{-1} \mathbf{v}_{\text{std}}

This is extremely powerful in quantitative finance, particularly in Principal Component Analysis (PCA), where we change the basis of our data to a new set of orthogonal axes (the eigenvectors of the covariance matrix) that represent the directions of maximum variance.

Interactive Demo
Additional Resources

Dive deeper with these recommended books and papers.

  • "Options, Futures, and Other Derivatives" by John C. Hull

    The bible of derivatives pricing. A must-have on any quant's bookshelf.

  • Original Black-Scholes Paper (1973)

    "The Pricing of Options and Corporate Liabilities" - a foundational paper in finance.

Community Q&A

Have a question? Ask the community!

Q

QuantAspirant

How does this concept apply in a high-volatility environment?

A

SeniorQuant

Great question. In high-volatility regimes, the assumptions often break down. You need to be cautious about model parameters and consider using more robust, non-parametric approaches.

2 hours ago