<Chapter Label="Auxiliar">
<Heading>Useful properties and functions</Heading>
<Section Label="AuxiliarProperties">
<Heading>Semisimple group algebras of finite groups</Heading>
<ManSection>
<Prop Name="IsSemisimpleZeroCharacteristicGroupAlgebra"
Arg="KG"
Comm="Is a group algebra of a finite group over the field of char zero?" />
<Description>
The input must be a group ring. <P/>
Returns <K>true</K> if the input <A>KG</A> is a
<E>semisimple group algebra</E> (<Ref Sect="Semisimple" />)
over a field of characteristic zero (that is if <M>G</M> is finite),
and <K>false</K> otherwise.
<Example>
<![CDATA[
gap> CG:=GroupRing( GaussianRationals, DihedralGroup(16) );;
gap> IsSemisimpleZeroCharacteristicGroupAlgebra( CG );
true
gap> FG:=GroupRing( GF(2), SymmetricGroup(3) );;
gap> IsSemisimpleZeroCharacteristicGroupAlgebra( FG );
false
gap> f := FreeGroup("a");
<free group on the generators [ a ]>
gap> Qf:=GroupRing(Rationals,f);
<algebra-with-one over Rationals, with 2 generators>
gap> IsSemisimpleZeroCharacteristicGroupAlgebra(Qf);
false
]]>
</Example>
</Description>
</ManSection>
<ManSection>
<Prop Name="IsSemisimpleRationalGroupAlgebra"
Arg="KG"
Comm="Is rational group algebra of finite group?" />
<Description>
The input must be a group ring. <P/>
Returns <K>true</K> if <A>KG</A> is a
<E>semisimple rational group algebra</E> (<Ref Sect="Semisimple" />)
and <K>false</K> otherwise.
<ManSection>
<Prop Name="IsSemisimpleANFGroupAlgebra"
Arg="KG"
Comm="Is a group algebra of a finite group over an abelian number field
(a subfield of a cyclotomic extension of the rationals)?" />
<Description>
The input must be a group ring. <P/>
Returns <K>true</K> if <A>KG</A> is the group algebra of a finite
group over a subfield of a cyclotomic extension of the rationals and <K>false</K>
otherwise.
<ManSection>
<Prop Name="IsSemisimpleFiniteGroupAlgebra"
Arg="KG"
Comm="Is a semisimple group algebra of a finite group over a finite field?" />
<Description>
The input must be a group ring. <P/>
Returns <K>true</K> if <A>KG</A> is a
<E>semisimple finite group algebra</E> (<Ref Sect="Semisimple" />),
that is a group algebra of a finite group <M>G</M> over a field <M>K</M>
of order coprime to the order of <M>G</M>, and <K>false</K> otherwise.
<ManSection>
<Prop Name="IsTwistingTrivial"
Arg="G,H,K"
Comm="Is the twisting of the simple algebra of QG associated with the strong Shoda Pair (H,K) trivial" />
<Description>
The input must be a group and a strong Shoda pair of the group. <P/>
Returns <K>true</K> if the simple algebra <M>&QQ;Ge(G,H,K)</M> has a <E>trivial twisting</E>
(<Ref Sect="SSPDef" />), and <K>false</K> otherwise.
<Section Label="AuxiliarOperations">
<Heading>Operations with group rings elements</Heading>
<ManSection>
<Oper Name="Centralizer"
Arg="G x"
Comm="Centralizer of a group ring element in a subgroup of G" />
<Returns>
A subgroup of a group <A>G</A>.
</Returns>
<Description>
The input should be formed by a finite group <A>G</A> and an element
<A>x</A> of a group ring <M>FH</M> whose underlying group <M>H</M>
contains <A>G</A> as a subgroup. <P/>
Returns the centralizer of <A>x</A> in <A>G</A>. <P/>
This operation adds a new method to the operation that already
exists in &GAP;.
<ManSection>
<Oper Name="OnPoints"
Arg="x g"
Comm="Conjugate of x by g" />
<Oper Name="\^"
Arg="x g"
Comm="Conjugate of x by g" />
<Returns>
An element of a group ring.
</Returns>
<Description>
The input should be formed by an element <A>x</A> of a group ring
<M>FG</M> and an element <A>g</A> in the underlying group
<M>G</M> of <M>FG</M>.<P/>
Returns the conjugate <M>x^g = g^{-1} x g</M> of <A>x</A> by <A>g</A>.
Usage of <C>x&circum;g</C> produces the same output.
<P/>
This operation adds a new method to the operation that already
exists in &GAP;.
<P/>
The following example is a continuation of the example from the
description of <Ref Oper="Centralizer" />.
<ManSection>
<Oper Name="AverageSum"
Arg="RG X"
Comm="(x_1+...+x_n)/n" />
<Returns>
An element of a group ring.
</Returns>
<Description>
The input must be composed of a group ring <A>RG</A> and a finite subset <A>X</A> of the underlying
group <M>G</M> of <A>RG</A>. The order of <A>X</A> must be invertible in the coefficient
ring <M>R</M> of <A>RG</A>. <P/>
Returns the element of the group ring <A>RG</A> that is equal to the
sum of all elements of <A>X</A> divided by the order of <A>X</A>.
<P/>
If <A>X</A> is a subgroup of <M>G</M> then the output is an idempotent
of <M>RG</M> which is central if and only if <A>X</A> is normal in <M>G</M>.
<Example>
<![CDATA[
gap> G:=DihedralGroup(16);;
gap> QG:=GroupRing( Rationals, G );;
gap> FG:=GroupRing( GF(5), G );;
gap> e:=AverageSum( QG, DerivedSubgroup(G) );
(1/4)*<identity> of ...+(1/4)*f3+(1/4)*f4+(1/4)*f3*f4
gap> f:=AverageSum( FG, DerivedSubgroup(G) );
(Z(5)^2)*<identity> of ...+(Z(5)^2)*f3+(Z(5)^2)*f4+(Z(5)^2)*f3*f4
gap> G=Centralizer(G,e);
true
gap> H:=Subgroup(G,[G.1]);
Group([ f1 ])
gap> e:=AverageSum( QG, H );
(1/2)*<identity> of ...+(1/2)*f1
gap> G=Centralizer(G,e);
false
gap> IsNormal(G,H);
false
]]>
</Example>
<ManSection>
<Oper Name="CyclotomicClasses"
Arg="q n"
Comm="Cyclotomic classes" />
<Returns>
A partition of <M>[ 0 .. n ]</M>.
</Returns>
<Description>
The input should be formed by two relatively prime positive integers. <P/>
Returns the list <A>q</A>-<E>cyclotomic classes </E>
(<Ref Sect="CyclotomicClass" />) modulo <A>n</A>.
<ManSection>
<Oper Name="IsCyclotomicClass"
Arg="q n C"
Comm="Is Cyclotomic class" />
<Description>
The input should be formed by two relatively prime positive
integers <A>q</A> and <A>n</A> and a sublist <A>C</A> of
<M>[ 0 .. n ]</M>. <P/>
Returns <K>true</K> if <A>C</A> is a
<A>q</A>-<E>cyclotomic class</E>
(<Ref Sect="CyclotomicClass" />) modulo <A>n</A> and
<K>false</K> otherwise.
<ManSection>
<InfoClass Name="InfoWedderga"
Comm="Info class for Wedderga algorithms" />
<Description>
<C>InfoWedderga</C> is a special Info class for &Wedderga; algorithms.
It has 3 levels: 0, 1 (default) and 2. To change the info
level to <C>k</C>, use the command <C>SetInfoLevel(InfoWedderga, k)</C>.
<P/>
In the example below we use this mechanism to see more details about
the Wedderburn components each time when we call
<C>WedderburnDecomposition</C>.
<Example>
<![CDATA[
gap> SetInfoLevel(InfoWedderga, 2);
gap> WedderburnDecomposition( GroupRing( CF(5), DihedralGroup( 16 ) ) );
#I Info version : [ [ 1, CF(5) ], [ 1, CF(5) ], [ 1, CF(5) ],
[ 1, CF(5) ], [ 2, CF(5) ], [ 2, NF(40,[ 1, 31 ]) ] ]
[ CF(5), CF(5), CF(5), CF(5), ( CF(5)^[ 2, 2 ] ),
<crossed product with center NF(40,[ 1, 31 ]) over AsField( NF(40,
[ 1, 31 ]), CF(40) ) of a group of size 2> ]
]]>
</Example>
</Description>
</ManSection>
</Section>
</Chapter>
Messung V0.5
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.