Macaulay2 » Documentation
Packages » SimplicialComplexes :: map(SimplicialMap)
next | previous | forward | backward | up | index | toc

map(SimplicialMap) -- the underlying ring map associated to a simplicial map

Synopsis

Description

Every simplicial map sends the vertices of the source of $f$ to the vertices of the target of $f$. Consequently, this determines a ring map between the ring of the source of $f$ and the ring of the target of $f$.

i1 : S = ZZ/101[a,b,c,d];
i2 : Δ = simplexComplex(3,S)

o2 = simplicialComplex | abcd |

o2 : SimplicialComplex
i3 : f = map(Δ,Δ,matrix{{a,b,c,d}})

o3 = | a b c d |

o3 : SimplicialMap simplicialComplex | abcd | <--- simplicialComplex | abcd |
i4 : map f

o4 = map (S, S, {a, b, c, d})

o4 : RingMap S <-- S

See also

Ways to use this method: