rahmenlose Ansicht.g DruckansichtUnknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
#############################################################################
##
#W laguna.g The LAGUNA package Viktor Bovdi
#W Olexandr Konovalov
#W Richard Rossmanith
#W Csaba Schneider
##
#############################################################################
#############################################################################
##
## PcPresentationOfNormalizedUnit( KG )
##
##
## For a group algebra KG this function returns another function,
## which for a given element x of KG will return corresponding
## element of PcNormalizedUnitGroup. This function is used in
## the construction of NaturalBijectionToPcNormalizedUnitGroup
##
PcPresentationOfNormalizedUnit := function( KG )
local emb;
emb:=function(x)
local coeffs, gens, w, i;
coeffs := NormalizedUnitCF( KG, x );
gens := GeneratorsOfGroup( PcNormalizedUnitGroup( KG ));
w := One( PcNormalizedUnitGroup( KG ));
for i in [ 1 .. Length(coeffs) ] do
if not coeffs[i] = Zero( LeftActingDomain( KG ) ) then
w := w*(gens[i]^IntFFE(coeffs[i]));
fi;
od;
return w;
end;
return emb;
end;
#############################################################################
##
#E
##
[ Verzeichnis aufwärts0.51unsichere Verbindung
]