You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 IntegerModRings with composite modulus.
Also, for symmetry we add a .left_kernel_matrix() method that simply calls .transpose() and defers to .right_kernel_matrix().
Currently, Sage cannot compute kernels of matrices over
Zmod(n)
for compositen
.This patch adds a call path from
Matrix.right_kernel_matrix()
to PARI'smatkermod()
function for matrices defined overIntegerModRing
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
The text was updated successfully, but these errors were encountered: