<p>This chapter explains, what one can do with recognition nodes after a successful recognition (and possibly verification).</p>
<p>Of course, one can inspect the whole tree of recognition nodes just by looking at the stored attribute values. Moreover, constructive membership tests can be performed using the function <code class="func">SLPforElement</code> (<a href="chap3.html#X83167779869A3BF5"><span class="RefLink">3.2-15</span></a>), thereby writing an arbitrary element in terms of the nice generators, which are stored in the attribute <code class="func">NiceGens</code> (<a href="chap3.html#X864194958685AAD7"><span class="RefLink">3.2-8</span></a>). If <code class="keyw">fail</code> is returned, then the element in question does not lie in the recognised group or the recognition made an error.</p>
<p>Here is an example of a successful recognition tree:</p>
<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">g := DirectProduct(SymmetricGroup(12),SymmetricGroup(5));</span>
Group([ (1,2,3,4,5,6,7,8,9,10,11,12), (1,2), (13,14,15,16,17), (13,14) ])
<span class="GAPprompt">gap></span> <span class="GAPinput">ri := RecogniseGroup(g);</span>
#I Finished rank 90 method "NonTransitive": success.
#I Going to the image (depth=0, try=1).
#I Finished rank 95 method "MovesOnlySmallPoints": success.
#I Back from image (depth=0).
#I Calculating preimages of nice generators.
#I Creating 20 random generators for kernel.
....................
#I Going to the kernel (depth=0).
#I Finished rank 80 method "Giant": success.
#I Back from kernel (depth=0).
<recognition node NonTransitive
F:<recognition node MovesOnlySmallPoints Size=120>
K:<recognition node Giant Size=479001600>>
</pre></div>
<p>One sees that the recursive process runs, first it finds that the permutation action is not transitive, a homomorphism is found by mapping onto the action on one of the orbits. The image is recognised to permute only a few points. The kernel is recognised to be a full symmetric group in its natural action on at least 10 points (recognised as <q>Giant</q>).</p>
<p>After this, we can write arbitrary group elements in the group <code class="code">g</code> in terms of the nice generators:</p>
<p>Note that this example only works by using also the <strong class="pkg">recog</strong> package which contains the necessary recognition methods.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ SLPforNiceGens</code>( <var class="Arg">ri</var> )</td><td class="tdright">( function )</td></tr></table></div>
<p>Returns: an SLP expressing the nice generators in the original ones</p>
<p>This function assembles a possibly quite large straight line program expressing the nice generators in terms of the original ones by using the locally stored information in the recognition tree recursively.</p>
<p>You can concatenate straight line programs in the nice generators with the result of this function to explicitly write an element in terms of the original generators.</p>
<p>This method tests, whether the element <var class="Arg">x</var> lies in the group recognised by the recognition node <var class="Arg">ri</var>. Note that this is only a convenience method, in fact <code class="func">SLPforElement</code> (<a href="chap3.html#X83167779869A3BF5"><span class="RefLink">3.2-15</span></a>) is used and the resulting straight line program is thrown away.</p>
<div class="func"><table class="func" width="100%"><tr><td class="tdleft"><code class="func">‣ Size</code>( <var class="Arg">ri</var> )</td><td class="tdright">( method )</td></tr></table></div>
<p>Returns: the size of the recognised group</p>
<p>This method calculates the size of the recognised group by multiplying the size of the image and the kernel recursively. It is assumed that leaf nodes know already or can calculate the size of their group.</p>
<p>This function displays a composition series by using the recursive recognition tree. It only works, if the usual operation <code class="func">CompositionSeries</code> (<a href="../../../doc/ref/chap39_mj.html#X81CDCBD67BC98A5A"><span class="RefLink">Reference: CompositionSeries</span></a>) works for all leaves. THIS DOES CURRENTLY NOT WORK FOR PROJECTIVE GROUPS AND THUS FOR MATRIX GROUPS!</p>
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.