Synopsis:
The free module F is the source of the generator matrix of M.
i1 : R = QQ[a..f]; |
i2 : g = matrix{{a,b},{c,d},{e,f}} |
i3 : M = subquotient(g,matrix{{b},{c},{d}}) |
i4 : cover M |
i5 : cover M == source generators M |
See also:
Code:
-- ../../../Macaulay2/m2/modules.m2:424-427 cover(Module) := Module => (M) -> ( if M.?generators then M.generators.source else if M.?relations then M.relations.target else M)