Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 91213ddcfbe7f54821d42c2d9e091326 > files > 2906

gap-system-packages-4.4.12-5mdv2010.0.i586.rpm

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>GAP (UnitLib) - Chapter 4: An example of UnitLib usage</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="GAPDoc2HTML" />
<link rel="stylesheet" type="text/css" href="manual.css" />
</head>
<body>


<div class="pcenter"><table class="chlink"><tr><td class="chlink1">Goto Chapter: </td><td><a href="chap0.html">Top</a></td><td><a href="chap1.html">1</a></td><td><a href="chap2.html">2</a></td><td><a href="chap3.html">3</a></td><td><a href="chap4.html">4</a></td><td><a href="chapBib.html">Bib</a></td><td><a href="chapInd.html">Ind</a></td></tr></table><br /></div>
<p><a id="s0ss0" name="s0ss0"></a></p>

<h3>4. An example of <strong class="pkg">UnitLib</strong> usage</h3>

<p>We will finish with several examples of <strong class="pkg">UnitLib</strong> usage to give an idea how to work with the package.</p>

<p>In the first example we retrieve from the library the normalized unit group of the group algebra of the dihedral group of order 128 over the field of two elements, compute its center and express one of its generators in terms of group algebra elements:</p>


<table class="example">
<tr><td><pre>


gap&gt; IdGroup(DihedralGroup(128));
[ 128, 161 ]
gap&gt; V := PcNormalizedUnitGroupSmallGroup( 128, 161 );
&lt;pc group of size 170141183460469231731687303715884105728 
  with 127 generators&gt;
gap&gt; C := Center( V );           
&lt;pc group with 34 generators&gt;  
gap&gt; gens := MinimalGeneratingSet( C );;
gap&gt; KG := UnderlyingGroupRing( V );
&lt;algebra-with-one over GF(2), with 7 generators&gt;
gap&gt; f := NaturalBijectionToNormalizedUnitGroup( KG );;
gap&gt; gens[8]^f;
(Z(2)^0)*f3+(Z(2)^0)*f4+(Z(2)^0)*f7+(Z(2)^0)*f3*f4+(Z(2)^
0)*f3*f5+(Z(2)^0)*f3*f6+(Z(2)^0)*f3*f7+(Z(2)^0)*f4*f5+(Z(2)^
0)*f4*f6+(Z(2)^0)*f4*f7+(Z(2)^0)*f3*f4*f5+(Z(2)^0)*f3*f4*f6+(
Z(2)^0)*f3*f4*f7+(Z(2)^0)*f3*f5*f6+(Z(2)^0)*f3*f5*f7+(Z(2)^
0)*f3*f6*f7+(Z(2)^0)*f4*f5*f6+(Z(2)^0)*f4*f5*f7+(Z(2)^
0)*f4*f6*f7+(Z(2)^0)*f3*f4*f5*f6+(Z(2)^0)*f3*f4*f5*f7+(Z(2)^
0)*f3*f4*f6*f7+(Z(2)^0)*f3*f5*f6*f7+(Z(2)^0)*f4*f5*f6*f7+(Z(2)^
0)*f3*f4*f5*f6*f7


</pre></td></tr></table>

<p>In the second example we will check the conjecture about the coincidence of the lower and upper Lie nilpotency indices of the modular group algebras for all non-abelian groups of order 64.</p>

<p>It is known that these indices coincide for p-groups with p&gt;3 <a href="chapBib.html#biBBhandari-Passi">[BP92]</a>, but in the general case the problem remains open.</p>

<p>The indices t_L(G) and t^L(G) can be computed using the <strong class="pkg">LAGUNA</strong> package. While the upper Lie nilpotency index can be expressed only in terms of the underlying group G, the lower Lie nilpotency index is determined by the formula t_L(G) = cl V(KG) + 1 <a href="chapBib.html#biBDu">[D92]</a>, and can be computed immediately whenever V(KG) is known.</p>

<p>In the program below we enumerate all groups of size 64 and check the conjecture (we do not exclude from consideration some particular cases when the conjecture is known to be true for p=2, because this is beyond the task of this manual).</p>


<table class="example">
<tr><td><pre>


gap&gt; for n in [ 1 .. NrSmallGroups( 64 ) ] do
&gt; if not IsAbelian( SmallGroup( 64, n ) ) then
&gt;   Print( n, "\r" );
&gt;   V := PcNormalizedUnitGroupSmallGroup( 64, n );
&gt;   KG := UnderlyingGroupRing( V );
&gt;   if LieLowerNilpotencyIndex( KG ) &lt;&gt;
&gt;      LieUpperNilpotencyIndex( KG ) then
&gt;     Print( n," - counterexample !!! \n" );
&gt;     break;
&gt;   fi;
&gt; fi;
&gt; od;
gap&gt;


</pre></td></tr></table>

<p>Thus, the test was finished without finding a counterexample.</p>

<p>In the next example we will answer the question about possible nilpotency classes of normalized unit groups of modular group algebras of nonabelian groups of order 128:</p>


<table class="example">
<tr><td><pre>


gap&gt; cl := [];
gap&gt; for n in [ 1 .. NrSmallGroups( 128 ) ] do
&gt; if not IsAbelian( SmallGroup( 128, n ) ) then
&gt;   Print( n, "\r" );
&gt;   V := PcNormalizedUnitGroupSmallGroup( 128, n );  
&gt;   AddSet( cl, NilpotencyClassOfGroup( V ) );
&gt; fi;
&gt; od;
gap&gt; cl;
[ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 32 ]


</pre></td></tr></table>

<p>With <strong class="pkg">UnitLib</strong> you can perform the computation from the last example in several hours on a modern computer. Without <strong class="pkg">UnitLib</strong> you will spend the same time to compute only several normalized unit groups V(KG) for groups of order 128 with the help of the <strong class="pkg">LAGUNA</strong> package. Note that without <strong class="pkg">LAGUNA</strong> such computation would not be feasible at all.</p>


<div class="pcenter">
<table class="chlink"><tr><td><a href="chap0.html">Top of Book</a></td><td><a href="chap3.html">Previous Chapter</a></td><td><a href="chapBib.html">Next Chapter</a></td></tr></table>
<br />


<div class="pcenter"><table class="chlink"><tr><td class="chlink1">Goto Chapter: </td><td><a href="chap0.html">Top</a></td><td><a href="chap1.html">1</a></td><td><a href="chap2.html">2</a></td><td><a href="chap3.html">3</a></td><td><a href="chap4.html">4</a></td><td><a href="chapBib.html">Bib</a></td><td><a href="chapInd.html">Ind</a></td></tr></table><br /></div>

</div>

<hr />
<p class="foot">generated by <a href="http://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc">GAPDoc2HTML</a></p>
</body>
</html>