def test_calculating_determinant_of_3_by_3_matrix(self): matrix = Matrix([[1, 2, 6], [-5, 8, -4], [2, 6, 4]]) assert matrix.cofactor(0, 0) == 56 assert matrix.cofactor(0, 1) == 12 assert matrix.cofactor(0, 2) == -46 assert matrix.determinant() == -196
def test_calculating_cofactor_of_3_by_3_matrix(self): matrix = Matrix([[3, 5, 0], [2, -1, -7], [6, -1, 5]]) assert matrix.minor(0, 0) == -12 assert matrix.minor(0, 0) == matrix.cofactor(0, 0) assert matrix.minor(1, 0) == 25 assert matrix.cofactor(1, 0) == -25
def test_calculating_determinant_of_4_by_4_matrix(self): matrix = Matrix([[-2, -8, 3, 5], [-3, 1, 7, 3], [1, 2, -9, 6], [-6, 7, 7, -9]]) assert matrix.cofactor(0, 0) == 690 assert matrix.cofactor(0, 1) == 447 assert matrix.cofactor(0, 2) == 210 assert matrix.cofactor(0, 3) == 51 assert matrix.determinant() == -4071
def test_inverse_matrix(self): matrix = Matrix([[-5, 2, 6, -8], [1, -5, 1, 8], [7, 7, -6, -7], [1, -3, 7, 4]]) result = matrix.inverse() assert matrix.determinant() == 532 assert matrix.cofactor(2, 3) == -160 assert matrix.cofactor(3, 2) == 105 assert result.at(3, 2) == -160 / 532 assert result.at(2, 3) == 105 / 532 assert self.rounded(result.data) == [ [0.21805, 0.45113, 0.24060, -0.04511], [-0.80827, -1.45677, -0.44361, 0.52068], [-0.07895, -0.22368, -0.05263, 0.19737], [-0.52256, -0.81391, -0.30075, 0.30639], ]