Synopsis:
i1 : R = QQ[x,y]; |
i2 : S = QQ[t]; |
i3 : f = map(S,R,{t^2,t^3}) |
i4 : f ** coker vars R |
i5 : f ** image vars R |
See also:
Code:
-- ../../../Macaulay2/m2/ringmap.m2:298-302 RingMap ** Module := Module => (f,M) -> ( R := source f; S := target f; if R =!= ring M then error "expected module over source ring"; cokernel f(presentation M));