
| Current Path : /usr/share/gap/lib/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //usr/share/gap/lib/nilpquot.gi |
#############################################################################
##
#W nilpquot.gi GAP Library Werner Nickel
##
##
LeftNormedComm := function( list )
local n;
n := Length( list );
if n = 1 then return list[1]; fi;
return Comm( LeftNormedComm( list{[1..n-1]} ), list[n] );
end;