Jonathan. Frech’s WebBlog

Python Matrix Module (#187)

Jonathan Frech,

Matrices are an important part of linear algebra. By arranging scalars in a rectangular manner, one can elegantly en­code vector transformations like scaling, rotating, shearing and squashing, solve systems of linear equations and re­pre­sent gen­er­al vector space homomorphisms.
How­ev­er, as powerful as matrices are, when actually applying the theoretical tools one has to cal­cu­late specific values. Doing so by hand can be done, yet gets cumbersome quite quickly when dealing with any matrices which con­tain more than a few rows and columns.

So, even though there are a lot of oth­er im­ple­men­ta­tions already pre­sent, I set out to write a Python matrix module containing a matrix class ca­pa­ble of basic matrix arithmetic (matrix mul­ti­pli­ca­tion, transposition, …) to­geth­er with a set of functions which per­form some higher-level matrix manipulation like applying Gaussian elimination, cal­cu­lat­ing the reduced row echelon form, determinant, inversion and rank of a given matrix.

Module source code can be seen below and downloaded. When saved as matrix.py in the cur­rent working directory, one can import the module as follows.

>>> import matrix
>>> A = matrix.Matrix([[13,  1, 20, 18],
...                    [ 9, 24,  0,  9],
...                    [14, 22,  5, 18],
...                    [19,  9, 15, 14]])
>>> print A**-1
        -149/1268  -67/634   83/1268 171/1268
          51/1268 239/1902 -105/1268 -33/1268
Matrix(    73/634 803/4755  -113/634 -87/3170 )
          13/1268  -75/634  197/1268 -83/1268

Matrices are defined over a field, typically $\mathbb{F}=\mathbb{R}$$\mathbb{F}=\mathbb{R}$$\mathbb{F}=\mathbb{R}$⁠¹ in theoretical use, though for my im­ple­men­ta­tion I chose not to use a double data structure⁠², as it lacked the con­cep­tu­al precision in numbers like a third⁠³. As one cannot truly re­pre­sent a large portion of the reals anyways, I chose to use $\mathbb{F}=\mathbb{Q}$$\mathbb{F}=\mathbb{Q}$$\mathbb{F}=\mathbb{Q}$, which also is a field though can be — to a certain scalar size and precision — accurately represented using fractional data types (Python’s built-in Fraction is used here).

To simplify working with matrices, the im­ple­ment­ed matrix class supports operator overloading such that the following expressions — A[i,j], A[i,j]=l, A*B, A*l, A+B, -A, A/l, A+B, A-B, A**-1, A**"t", ~A, A==B, A!=B — all be­have in a coherent and intuitive way for matrices A, B, scalars l and indices i, j.

When working with matrices, there are certain rules that must be obeyed, like proper size when adding or multiplying, invertibility when inverting and others. To minimize potential bug track down problems, I tried to in­clude a variety of detailed exceptions (ValueErrors) explaining the pro­gram’s failure at that point.

Apart from basic matrix arithmetic, a large part of my module centers around Gaussian elimination and the functions that fol­low from it. At their heart lies the im­ple­men­ta­tion of GaussianElimination, a func­tion which calculates the reduced row echelon form rref(A) of a matrix to­geth­er with the transformation matrix T such that T*A = rref(A), a list of all matrix pivot coordinates, the num­ber of row transpositions used to achieve row echelon form and a prod­uct of all scalars used to achieve reduced row echelon form.
From this func­tion, rref(A) simply returns the first, rrefT(A) the second pa­ram­e­ter. Functions rcef(A) (reduced column echelon form) and rcefS(A) (A*S = rcef(A)) fol­low from re­peat­ed transposition.
Determinant cal­cu­la­tion uses char­ac­ter­is­tic determinant properties (multilinear, alternating and the unit hypercube has hypervolume one).

Using these properties, the determinant is equal to the prod­uct of the to­tal prod­uct of all factors used in transforming the matrix into reduced row echelon form and the permutation parity (minus one to the power of the num­ber of transpositions used).
Questions re­gard­ing invertibility and rank can also conveniently be im­ple­ment­ed using the above described in­for­ma­tion.

All in all, this Python module implements basic matrix func­tion­al­i­ty paired with a bit more involved matrix transformations to build a usable en­vi­ron­ment for manipulating matrices in Python.

Source code: python-matrix-module.py


[1][2020-08-07] Note that there exist many more fields than just the reals.
[2][2020-08-07] Meaning “type”.
[3][2020-08-07] Assuming a double im­ple­ment­ed in a base which is not divisible by three.