-
-
Notifications
You must be signed in to change notification settings - Fork 656
Closed
Description
Currently, Sage cannot compute kernels of matrices over Zmod(n)
for composite n
.
This patch adds a call path from Matrix.right_kernel_matrix()
to PARI's matkermod()
function for matrices defined over IntegerModRing
s with composite modulus.
Also, for symmetry we add a .left_kernel_matrix()
method that simply calls .transpose()
and defers to .right_kernel_matrix()
.
Component: linear algebra
Author: Lorenz Panny
Issue created by migration from https://trac.sagemath.org/ticket/34862