<html><head><title>[SONATA-tutorial] 7 Planar nearrings</title></head>
<body text="#000000" bgcolor="#ffffff">
[<a href = "chapters.htm">Up</a>] [<a href ="CHAP006.htm">Previous</a>] [<a href ="CHAP008.htm">Next</a>] [<a href = "theindex.htm">Index</a>]
<h1>7 Planar nearrings</h1><p>
<p>
We recall the definition of planar nearrings and basic results
(see <a href="biblio.htm#Clay:Nearrings"><[>Clay:Nearrings</cite></a>)].
Let (<i>N</i>,+,·) be a left nearring. For <i>a</i>,<i>b</i> ∈ <i>N</i> we define <i>a</i> ≡ <i>b</i>
iff <i>a</i>·<i>n</i> = <i>b</i>·<i>n</i> for all <i>n</i> ∈ <i>N</i>. If <i>a</i> ≡ <i>b</i>, then <i>a</i> and <i>b</i>
are called <strong>equivalent multipliers</strong>.
A nearring <i>N</i> is called <strong>planar</strong> if | <i>N</i>/<sub> ≡ </sub> | ≥ 3 and if
for any two non-equivalent multipliers <i>a</i> and <i>b</i> in <i>N</i>, for any <i>c</i> ∈ <i>N</i>,
the equation <i>a</i>·<i>x</i> = <i>b</i>·<i>x</i> + <i>c</i> has a unique solution.
<p>
A <strong>Ferrero pair</strong> is a pair of finite groups (<i>N</i>,Φ) such that Φ
is a fixed-point-free automorphism group of (<i>N</i>,+).
<p>
Starting with a Ferrero pair (<i>N</i>,Φ) we can construct a planar nearring
in the following way: Select representatives, say <i>e</i><sub>1</sub>,…,<i>e</i><sub><i>t</i></sub>, for some or all of the
non-trivial orbits of <i>N</i> under Φ.
Let <i>C</i> = Φ(<i>e</i><sub>1</sub>)∪…∪Φ(<i>e</i><sub><i>t</i></sub>).
For each <i>x</i> ∈ <i>N</i> we define <i>a</i>·<i>x</i> = 0 for <i>a</i> ∈ <i>N</i>\<i>C</i>, and
<i>a</i>·<i>x</i>=ϕ<sub><i>a</i></sub>(<i>x</i>) for <i>a</i> ∈ Φ(<i>e</i><sub><i>i</i></sub>) ⊂ <i>C</i> and ϕ<sub><i>a</i></sub>(<i>e</i><sub><i>i</i></sub>)=<i>a</i>.
Then (<i>N</i>,+,·) is a (left) planar nearring with |<i>N</i>/<sub> ≡ </sub>| = |Φ|+1.
<p>
Every finite planar nearring can be constructed from some Ferrero pair
together with a set of orbit representatives in this way.
<p>
<strong>The problem:</strong> Find a planar nearring with 25 elements and 9 pairwise
non-equivalent multipliers.
<p>
<strong>The solution:</strong> We follow the Ferrero method described above for defining a
nearring multiplication on an additive group.
First we have to find a fixed-point-free (fpf) automorphism group of
order 8 on a group of order 25.
<p>
We start with the cyclic group of order 25:
First of all we ask for the existence of an fpf automorphism group
on <code>CyclicGroup(25)</code> by computing an upper bound for its order.
<p>
<pre>
gap> FpfAutomorphismGroupsMaxSize( CyclicGroup(25) );
[ 4, 1 ]
</pre>
<p>
This function returns a list with two integers, 4 and 1.
The first number is an upper bound for the size of an fpf automorphism group;
if there is a metacyclic fpf automorphism group, then it has a cyclic normal
subgroup of index dividing the second number. These bounds are not sharp.
If the upper bound for the size of an fpf automorphism group on some group
is 1, we know that there is no nontrivial fpf automorphism group, no
Ferrero pair, and no planar nearring on this group at all.
<p>
Here, SONATA does not exclude the possibility that the cyclic group of
order 25 has an fpf automorphism group of order 4.
However, we can be sure that all fpf automorphism groups are cyclic and that
none of them has size 8.
<p>
Thus we have to consider the elementary abelian group of order 25 instead.
<p>
<pre>
gap> FpfAutomorphismGroupsMaxSize( ElementaryAbelianGroup(25) );
[ 24, 2 ]
</pre>
<p>
There might even exist an fpf automorphism group of order 24. (In fact
there is more than one. The reference manual explains how to obtain all
nearfields of size 25.)
For our example, we could compute either a cyclic automorphism group or one
isomorphic to the quaternion group with 8 elements. Let's try the latter.
<p>
<pre>
gap> aux := FpfAutomorphismGroupsMetacyclic( [5,5], 4, -1 );
[ [ [ [ f1, f2 ] -> [ f1^2, f2^3 ], [ f1, f2 ] -> [ f2^4, f1 ] ] ],
<pc group of size 25 with 2 generators> ]
</pre>
<p>
Here, the function <code>FpfAutomorphismGroupsMetacyclic</code> determines the metacyclic
fpf automorphism groups on <code>AbelianGroup([5,5])</code> with generators <i>p</i>,<i>q</i>
satisfying <i>p</i><sup>4</sup> = 1, <i>p</i><sup><i>q</i></sup> = <i>p</i><sup>−1</sup>, and <i>q</i><sup>2</sup> = <i>p</i><sup>2</sup>. For each conjugacy class
of such groups one representative is given. Conjugacy is determined within the
whole automorphism group of <code>AbelianGroup([5,5])</code>.
The actual output of the function is a list with 2 elements.
The first is not the list of fpf groups up to conjugacy but the list of
automorphisms <i>p</i>,<i>q</i> generating those groups.
The second element is simply the group <code>AbelianGroup([5,5])</code>, on which the
automorphisms act.
<p>
Since there is only one pair of generators <i>p</i>,<i>q</i>, all fpf automorphism groups
isomorphic to the quaternion group are conjugate. Now, we have our Ferrero
pair (<i>G</i>, Φ).
<p>
<pre>
gap> phi := Group( aux[1][1] );
<group with 2 generators>
gap> G := aux[2];
<pc group of size 25 with 2 generators>
</pre>
<p>
Next we have to pick some orbit representatives.
We note that for a fixed Ferrero pair distinct choices of representatives
may yield isomorphic nearrings. The function
<code>OrbitRepresentativesForPlanarNearRing</code> returns exactly one set of
representatives of given cardinality for each isomorphism class of planar
nearrings which can be generated from (<i>G</i>, Φ).
<p>
<pre>
gap> OrbitRepresentativesForPlanarNearRing( G, phi, 1 );
[ [ f1 ] ]
</pre>
<p>
This tells us that all planar nearrings obtained from (<i>G</i>,Φ) with one
orbit representative are in fact isomorphic.
What happens if we choose 2 representatives?
<p>
<pre>
gap> reps := OrbitRepresentativesForPlanarNearRing( G, phi, 2 );
[ [ f1, f1*f2 ], [ f1, f1^2*f2^2 ] ]
</pre>
<p>
We obtain 2 non-isomorphic planar near-rings. Let's just construct one of
them. The result will be an <code>ExplicitMultiplicationNearRing</code>.
<p>
<pre>
gap> n := PlanarNearRing( G, phi, reps[1] );
ExplicitMultiplicationNearRing ( <pc group of size 25 with
2 generators> , multiplication )
</pre>
<p>
How many non-isomorphic planar nearrings can be defined from our Ferrero pair
(<i>G</i>,Φ) in total? Since there are 3 non-trivial orbits of Φ on <i>G</i>,
we may choose up to 3 representatives.
<p>
<pre>
gap> Length(OrbitRepresentativesForPlanarNearRing( G, phi, 3 ));
6
</pre>
<p>
Summing all up, we get exactly 9 non-isomorphic planar nearrings with
elementary abelian additive group of order 25 whose multiplication is
defined using a quaternion group of fpf automorphisms.
<p>
<p>
[<a href = "chapters.htm">Up</a>] [<a href ="CHAP006.htm">Previous</a>] [<a href ="CHAP008.htm">Next</a>] [<a href = "theindex.htm">Index</a>]
<P>
<address>SONATA-tutorial manual<br>September 2025
</address></body></html>
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.