Defines the identity morphism for an algebraic structure.
The algebraic structure which is the domain and codomain of the morphism
const Z4 = Chalkboard.abal.group(Chalkboard.abal.Z(4), (a, b) => (a + b) % 4, 0, (a) => (4 - a) % 4);const identity = Chalkboard.abal.idmorphism(Z4); // Maps every residue to itself Copy
const Z4 = Chalkboard.abal.group(Chalkboard.abal.Z(4), (a, b) => (a + b) % 4, 0, (a) => (4 - a) % 4);const identity = Chalkboard.abal.idmorphism(Z4); // Maps every residue to itself
Defines the identity morphism for an algebraic structure.