Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Your code computes A and A.det(), but nowhere you ask for their output. Try, e. g. :

for i in range(6):
    A = D(i)
    show(A, A.det())

Demonstration here.

HTH,