Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/nq/doc/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 12.0.2024 mit Größe 9 kB image not shown  

Quelle  chap4_mj.html   Sprache: HTML

 
 products/Sources/formale Sprachen/GAP/pkg/nq/doc/chap4_mj.html


<?xml version="1.0" encoding="UTF-8"?>

<!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>
<script type="text/javascript"
  src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<title>GAP (nq) - Chapter 4: Examples</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="generator" content="GAPDoc2HTML" />
<link rel="stylesheet" type="text/css" href="manual.css" />
<script src="manual.js" type="text/javascript"></script>
<script type="text/javascript">overwriteStyle();</script>
</head>
<body class="chap4"  onload="jscontent()">


<div class="chlinktop"><span class="chlink1">Goto Chapter: </span><a href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a href="chap4_mj.html">4</a>  <a href="chap5_mj.html">5</a>  <a href="chapA_mj.html">A</a>  <a href="chapBib_mj.html">Bib</a>  <a href="chapInd_mj.html">Ind</a>  </div>

<div class="chlinkprevnexttop"> <a href="chap0_mj.html">[Top of Book]</a>   <a href="chap0_mj.html#contents">[Contents]</a>    <a href="chap3_mj.html">[Previous Chapter]</a>    <a href="chap5_mj.html">[Next Chapter]</a>   </div>

<p id="mathjaxlink" class="pcenter"><a href="chap4.html">[MathJax off]</a></p>
<p><a id="X7A489A5D79DA9E5C" name="X7A489A5D79DA9E5C"></a></p>
<div class="ChapSects"><a href="chap4_mj.html#X7A489A5D79DA9E5C">4 <span class="Heading">Examples</span></a>
<div class="ContSect"><span class="tocline"><span class="nocss"> </span><a href="chap4_mj.html#X8638E6CE7B5955FB">4.1 <span class="Heading">Right Engel elements</span></a>
</span>
</div>
</div>

<h3>4 <span class="Heading">Examples</span></h3>

<p><a id="X8638E6CE7B5955FB" name="X8638E6CE7B5955FB"></a></p>

<h4>4.1 <span class="Heading">Right Engel elements</span></h4>

<p>An old problem in the context of Engel elements is the question: Is a right <span class="SimpleMath">\(n\)</span>-Engel element left <span class="SimpleMath">\(n\)</span>-Engel? It is known that the answer is no. For details about the history of the problem, see <a href="chapBib_mj.html#biBNewmanNickel94">[NN94]</a>. In this paper the authors show that for <span class="SimpleMath">\(n>4\)</span> there are nilpotent groups with right <span class="SimpleMath">\(n\)</span>-Engel elements no power of which is a left <span class="SimpleMath">\(n\)</span>-Engel element. The insight was based on computations with the ANU NQ which we reproduce here. We also show the cases <span class="SimpleMath">\(5>n\)</span>.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">LoadPackage( "nq" );</span>
true
<span class="GAPprompt">gap></span> <span class="GAPinput">##  SetInfoLevel( InfoNQ, 1 );</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">##</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">##  setup calculation</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">##</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">et := ExpressionTrees( "a""b""x" );</span>
[ a, b, x ]
<span class="GAPprompt">gap></span> <span class="GAPinput">a := et[1];; b := et[2];; x := et[3];;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput"></span>
<span class="GAPprompt">gap></span> <span class="GAPinput">##</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">##  define the group for n = 2,3,4,5</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">##</span>
<span class="GAPprompt">gap></span> <span class="GAPinput"></span>
<span class="GAPprompt">gap></span> <span class="GAPinput">rengel := LeftNormedComm( [a,x,x] );</span>
Comm( a, x, x )
<span class="GAPprompt">gap></span> <span class="GAPinput">G := rec( generators := et, relations := [rengel] );</span>
rec( generators := [ a, b, x ], relations := [ Comm( a, x, x ) ] )
<span class="GAPprompt">gap></span> <span class="GAPinput">## The following is equivalent to:</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">##   NilpotentQuotient( : input_string := NqStringExpTrees( G, [x] ) )</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">H := NilpotentQuotient( G, [x] );</span>
Pcp-group with orders [ 0, 0, 0 ]
<span class="GAPprompt">gap></span> <span class="GAPinput">LeftNormedComm( [ H.2,H.1,H.1 ] );</span>
id
<span class="GAPprompt">gap></span> <span class="GAPinput">LeftNormedComm( [ H.1,H.2,H.2 ] );</span>
id
</pre></div>

<p>This shows that each right 2-Engel element in a finitely generated nilpotent group is a left 2-Engel element. Note that the group above is the largest nilpotent group generated by two elements, one of which is right 2-Engel. Every nilpotent group generated by an arbitrary element and a right 2-Engel element is a homomorphic image of the group <span class="SimpleMath">\(H\)</span>.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">rengel := LeftNormedComm( [a,x,x,x] );</span>
Comm( a, x, x, x )
<span class="GAPprompt">gap></span> <span class="GAPinput">G := rec( generators := et, relations := [rengel] );</span>
rec( generators := [ a, b, x ], relations := [ Comm( a, x, x, x ) ] )
<span class="GAPprompt">gap></span> <span class="GAPinput">H := NilpotentQuotient( G, [x] );</span>
Pcp-group with orders [ 0, 0, 0, 0, 0, 4, 2, 2 ]
<span class="GAPprompt">gap></span> <span class="GAPinput">LeftNormedComm( [ H.1,H.2,H.2,H.2 ] );</span>
id
<span class="GAPprompt">gap></span> <span class="GAPinput">h := LeftNormedComm( [ H.2,H.1,H.1,H.1 ] );</span>
g6^2*g7*g8
<span class="GAPprompt">gap></span> <span class="GAPinput">Order( h );</span>
4
</pre></div>

<p>The element <span class="SimpleMath">\(h\)</span> has order <span class="SimpleMath">\(4\)</span>. In a nilpotent group without <span class="SimpleMath">\(2\)</span>-torsion a right 3-Engel element is left 3-Engel.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">rengel := LeftNormedComm( [a,x,x,x,x] );</span>
Comm( a, x, x, x, x )
<span class="GAPprompt">gap></span> <span class="GAPinput">G := rec( generators := et, relations := [rengel] );</span>
rec( generators := [ a, b, x ], relations := [ Comm( a, x, x, x, x ) ] )
<span class="GAPprompt">gap></span> <span class="GAPinput">H := NilpotentQuotient( G, [x] );</span>
Pcp-group with orders [ 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 12, 0, 5, 10, 2, 0, 30, 
  5, 2, 5, 5, 5, 5 ]
<span class="GAPprompt">gap></span> <span class="GAPinput">LeftNormedComm( [ H.1,H.2,H.2,H.2,H.2 ] );</span>
id
<span class="GAPprompt">gap></span> <span class="GAPinput">h := LeftNormedComm( [ H.2,H.1,H.1,H.1,H.1 ] );</span>
g9*g10^2*g11^10*g12^5*g13^2*g14^8*g15*g16^6*g17^10*g18*g20^4*g21^4*g22^2*g23^2
<span class="GAPprompt">gap></span> <span class="GAPinput">Order( h );</span>
60
</pre></div>

<p>The previous calculation shows that in a nilpotent group without <span class="SimpleMath">\(2,3,5\)</span>-torsion a right 4-Engel element is left 4-Engel.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">rengel := LeftNormedComm( [a,x,x,x,x,x] );</span>
Comm( a, x, x, x, x, x )
<span class="GAPprompt">gap></span> <span class="GAPinput">G := rec( generators := et, relations := [rengel] );</span>
rec( generators := [ a, b, x ], relations := [ Comm( a, x, x, x, x, x ) ] )
<span class="GAPprompt">gap></span> <span class="GAPinput">H := NilpotentQuotient( G, [x], 9 );</span>
Pcp-group with orders [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 30, 
  0, 0, 30, 0, 3, 6, 0, 0, 10, 30, 0, 0, 0, 0, 30, 30, 0, 0, 3, 6, 5, 2, 0, 
  2, 408, 2, 0, 0, 0, 10, 10, 30, 10, 0, 0, 0, 3, 3, 3, 2, 204, 6, 6, 0, 10, 
  10, 10, 2, 2, 2, 0, 300, 0, 0, 18 ]
<span class="GAPprompt">gap></span> <span class="GAPinput">LeftNormedComm( [ H.1,H.2,H.2,H.2,H.2,H.2 ] );</span>
id
<span class="GAPprompt">gap></span> <span class="GAPinput">h := LeftNormedComm( [ H.2,H.1,H.1,H.1,H.1,H.1 ] );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">Order( h );</span>
infinity
</pre></div>

<p>Finally, we see that in a torsion-free group a right 5-Engel element need not be a left 5-Engel element.</p>


<div class="chlinkprevnextbot"> <a href="chap0_mj.html">[Top of Book]</a>   <a href="chap0_mj.html#contents">[Contents]</a>    <a href="chap3_mj.html">[Previous Chapter]</a>    <a href="chap5_mj.html">[Next Chapter]</a>   </div>


<div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a href="chap0_mj.html">Top</a>  <a href="chap1_mj.html">1</a>  <a href="chap2_mj.html">2</a>  <a href="chap3_mj.html">3</a>  <a href="chap4_mj.html">4</a>  <a href="chap5_mj.html">5</a>  <a href="chapA_mj.html">A</a>  <a href="chapBib_mj.html">Bib</a>  <a href="chapInd_mj.html">Ind</a>  </div>

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

100%


¤ Dauer der Verarbeitung: 0.16 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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 ist noch experimentell.