Inverting matrices and bilinear functions
johndcook.com·3w·
Discuss: Hacker News
Flag this post

The inverse of the matrix

M = \begin{bmatrix} a & b \ c & d \end{bmatrix}

is the matrix

M^{-1} = \frac{1}{|M|} \begin{bmatrix} d & -b \ -c & a \end{bmatrix} = \frac{1}{ad - bc} \begin{bmatrix} d & -b \ -c & a \end{bmatrix}

assuming adbc ≠ 0.

Also, the inverse of the bilinear function (a.k.a. Möbius transformation)

f(z) = \frac{az + b}{cz + d}

is the function

f^{-1}(z) = \frac{dz - b}{-cz + a}

again assuming adbc ≠ 0.

The elementary takeaway is that here are two useful equations that are similar in appearance, so memorizing one makes it easy to memorize the other. We…

Similar Posts

Loading similar posts...