Copyright (C) 2020 Andreas Kloeckner
This mini-demo gives you the opportunity to play around with the 2-norm condition number of a $2\times 2$ matrix.
import numpy as np
import numpy.linalg as la
la.cond([
[1.1, 0.1],
[0, 1]
], 2)
1.1442369886119867