GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
#############################################################################
##
#W addgphom.gd GAP library Scott Murray
#W Alexander Hulpke
##
##
#Y (C) 2000 School Math and Comp. Sci., University of St Andrews, Scotland
#Y Copyright (C) 2002 The GAP Group
##
## This file contains declarations for mappings between groups and additive
## groups.
##
#############################################################################
##
#F GroupToAdditiveGroupHomomorphismByFunction( <S>, <R>, <fun> )
#F GroupToAdditiveGroupHomomorphismByFunction( <S>, <R>, <fun>, <invfun> )
##
## `GroupToAdditiveGroupHomomorphismByFunction' returns a
## group-to-additive-group homomorphism <hom> with
## source <S> and range <R>, such that each element <s> of <S> is mapped to
## the element `<fun>( <s> )', where <fun> is a {\GAP} function.
##
## If the argument <invfun> is bound then <hom> is a bijection between <S>
## and <R>, and the preimage of each element <r> of <R> is given by
## `<invfun>( <r> )', where <invfun> is a {\GAP} function.
##
## No test is performed on whether the functions actually give an
## homomorphism between both groups because this would require testing the
## full multiplication table.
##
## `GroupToAdditiveGroupHomomorphismByFunction' creates a mapping which
## `IsSPGeneralMapping'.
##
DeclareGlobalFunction("GroupToAdditiveGroupHomomorphismByFunction");
#############################################################################
##
#E