Linear Transformation

2 min read Updated Fri Apr 24 2026 07:36:29 GMT+0000 (Coordinated Universal Time)

A mapping between 2 vector spaces that preserves vector addition and scalar multiplication.

Let V,WV,W be vector spaces over FF. A linear transformation TT from VV to WW is such that:

  • T:VWT:V\rightarrow W be a function
  • T(u+v)=T(u)+T(v)u,vVT(u+v) = T(u) + T(v) \quad \forall u,v \in V
  • T(au)=aT(u)u,vVT(au) = aT(u) \quad \forall u,v \in V

Kernel

Denoted as ker  T\text{ker}\;T.

ker  T={vVT(v)=0}V\text{ker}\;T = \set{ v \in V | T(v) = 0 } \subseteq V

A subspace of VV.

Null

Denoted by null  T\text{null}\;T. Dimension of ker  T\text{ker}\;T.

Range

Denoted as ran  T\text{ran}\;T.

ran  T={T(v)vV}W\text{ran}\;T = \set{ T(v) | v \in V } \subseteq W

A subspace of WW.

If BB is a basis of VV, ran  T=span  T(B)\text{ran}\;T = \text{span}\;T(B).

Rank

Denoted by rank  T\text{rank}\;T. Dimension of ran  T\text{ran}\;T.

Rank-Nullity Theorem

dim(kerT)+dim(ran T)=dimV\dim(\ker T)+\text{dim}(\text{ran }T)=\dim V

Matrix of a Linear Transformation

Any linear transformation can be expressed as a matrix. And vice versa.

Suppose VV and WW are 2 vector spaces over FF with mm and nn dimensions respectively. And suppose a linear transformation T:VWT: V \rightarrow W is defined on them. And suppose (vi)i=1m(v_i)_{i=1}^m and (wj)j=1n(w_j)_{j=1}^{n} be ordered bases of each vector spaces.

Matrix of TT, is An×mA_{n\times m} (Fn×m\in F^{n\times m}) such that: (T(vi))i=1m=Am×n(wj)j=1n\big(T(v_i)\big)_{i=1}^m = A_{m\times n} (w_j)_{j=1}^n.

Change of Basis

Suppose now 2 different bases of VV and WW are given: (vi)i=1m(v_i')_{i=1}^m and (wj)j=1n(w_j')_{j=1}^{n}. The new corresponding matrix AA' can be calculated using:

A=Q1APA' = Q^{-1} A P

Here:

  • Pn×nP_{n\times n} is the change-of-basis matrix that satisfies (vi)i=1n(v_i)_{i=1}^n
  • Qm×mQ_{m\times m} is the change-of-basis matrix that satisfies (wj)j=1m(w_j)_{j=1}^m