Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/hap/www/SideLinks/About/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 19.6.2025 mit Größe 22 kB image not shown  

Quelle  aboutQuandles.html   Sprache: HTML

 
 products/Sources/formale Sprachen/GAP/pkg/hap/www/SideLinks/About/aboutQuandles.html


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=utf-8"
 http-equiv="content-type">
  <title>AboutHap</title>
</head>
<body
 style="color: rgb(0, 0, 153); background-color: rgb(204, 255, 255);"
 link="#000066" vlink="#000066" alink="#000066">
<br>
<table
 style="text-align: left; margin-left: auto; margin-right: auto; color: rgb(0, 0, 102); width: 1009px;"
 border="0" cellpadding="20" cellspacing="10">
  <tbody style="height: 3869.87px;">
    <tr align="center">
      <th style="vertical-align: top;">
      <table
 style="text-align: left; margin-left: auto; margin-right: auto; color: rgb(0, 0, 102);"
 border="0" cellpadding="20" cellspacing="10">
        <tbody>
          <tr align="center">
            <th style="vertical-align: top;">
            <table style="width: 100%; text-align: left;"
 cellpadding="2" cellspacing="2">
              <tbody>
                <tr>
                  <td style="vertical-align: top;"><a
 href="aboutCoverinSpaces.html"><small style="color: rgb(0, 0, 102);">Previous</small></a><br>
                  </td>
                  <td
 style="text-align: center; vertical-align: top; color: rgb(0, 0, 102);"><big><span
 style="font-weight: bold;">About HAP: Knots and Quandles<br>
                  </span></big></td>
                  <td style="text-align: right; vertical-align: top;"><a
 href="aboutPersistent.html"><small style="color: rgb(0, 0, 102);">next</small></a><br>
                  </td>
                </tr>
              </tbody>
            </table>
            <big><span style="font-weight: bold;"></span></big><br>
            </th>
          </tr>
          <tr align="center">
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255);"><big
 style="font-weight: bold;">Knots and Quandles <br>
            </big> Sub-package by Cédric FRAGNAUD and Graham ELLIS </td>
          </tr>
          <tr>
            <td style="background-color: white;">A <span
 style="font-weight: bold; font-style: italic;">quandle</span> (Q, ▹)
is a
non-empty set Q equipped with a binary operation ▹ : Q × Q → Q
satisfying the following axioms:<br>
            <br>
1) ∀ a ∈ Q, a ▹ a = a.<br>
2) ∀ a, b ∈ Q, ∃! c ∈ Q such that a = c ▹ b.<br>
3) ∀ a, b, c ∈ Q, (a ▹ b) ▹ c = (a ▹ c) ▹ (b ▹ c).<br>
            <br>
One can check that for any group G and n ∈ ℤ, the magma (G, ▹) forms a
quandle with the operation x ▹ y = y<sup>-n</sup>xy<sup>n</sup> , ∀ x,
y ∈ G. Such a quandle is called the n-Fold Conjugation Quandle.<br>
            <br>
A quandle <em>Q</em> is said to be <span
 style="font-weight: bold; font-style: italic;">connected</span> if the
inner automorphism
group <em>Inn Q</em> acts transitively on <em>Q</em>. In other words,
            <em>Q</em> is connected if and only if for each pair a, b
in <em>Q</em> there are a<sub>1</sub>, a<sub>2</sub>, . . . , a<sub>n</sub>
in <em>Q</em> such that a ▹ a<sub>1</sub> ▹· · · ▹ a<sub>n</sub> = b.<br>
            <br>
A quandle <em>Q</em> is said to be <span
 style="font-weight: bold; font-style: italic;">latin</span> if ∀ a, b
∈ <em>Q</em>, ∃ c ∈<em>
Q</em> such that a = b ▹ c.</td>
          </tr>
          <tr>
            <td style="background-color: rgb(255, 255, 204);">gap>
Q:=Quandle(5,21);<br>
<magma with 5 generators><br>
gap> Display(MultiplicationTable(Q));<br>
[ [  1,  3,  4,  5,  2 ],<br>
  [  3,  2,  5,  1,  4 ],<br>
  [  4,  5,  3,  2,  1 ],<br>
  [  5,  1,  2,  4,  3 ],<br>
  [  2,  4,  1,  3,  5 ] ]<br>
gap> IsConnected(Q);<br>
true<br>
gap> IsLatinQuandle(Q);<br>
true<br>
            </td>
          </tr>
          <tr>
            <td style="background-color: rgb(255, 255, 204);">gap>
G:=DihedralGroup(64);;<br>
gap> Q:=ConjugationQuandle(G,1);;<br>
<magma with 19 generators><br>
gap> Size(Q);<br>
64<br>
gap> IsConnected(Q);<br>
false</td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255);">The
following command uses a "brute force" approach to constructing a list
of all quandles of size 6. There are a total of 73 such quandles, of
which 2 are connected and 0 are latin.<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 204);">gap>
L:=Quandles(6);;<br>
gap> Length(L);<br>
73<br>
            <br>
gap> Length(Filtered(L,IsConnected));<br>
2<br>
            <br>
gap> Length(Filtered(L,IsLatinQuandle));<br>
0<br>
            </td>
          </tr>
          <tr>
            <td style="background-color: white;">Let Q be a set, e an
element in Q, G a permutation group, and µ an element in G.<br>
Then (Q,G,e,µ) describes a <span
 style="font-weight: bold; font-style: italic;">Quandle Envelope</span>
if :<br>
            <ul>
              <li>G is a transitive group on Q.</li>
            </ul>
            <ul>
              <li>µ ∈ Z(G<sub>e</sub>), the center of the
stabilizer of e.</li>
            </ul>
            <ul>
              <li>⟨µ<sup>G</sup>⟩ = G (that is, the smallest
normal subgroup of G containing µ is all of G).</li>
            </ul>
            <p style="height: 9px;">From a Quandle Envelope
(Q,G,e,µ), we can construct a Quandle (Q, ▹):</p>
            <p style="margin-top: -1px; height: 18px;">   
   
for
all
x,y
in
Q,   
   
x

y=(ŷ(µ))(x)   
   
,
where
ŷ

G
satisfies
ŷ(e)=y.</p>
            <p style="margin-top: -1px; height: 18px;">Such a quandle
is connected. This property is used to construct all the connected
quandles of size n.</p>
            </td>
          </tr>
          <tr>
            <td style="background-color: rgb(255, 255, 204);">gap>
Q:=[1..9];; e:=2;; G:=TransitiveGroup(9,15);; mu:=(1,8,7,4,9,5,3,6);;<br>
gap> IsQuandleEnvelope(Q,G,e,mu); <br>
true<br>
            <br>
gap> QE:=QuandleQuandleEnvelope(Q,G,e,mu);<br>
<magma with 9 generators><br>
            <br>
gap> IsQuandle(QE); <br>
true<br>
gap> IsConnected(QE);<br>
true<br>
            <br>
gap> ConnectedQuandles(30); <br>
[ <magma with 30 generators>, <magma with 30 generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators>, <br>
  <magma with 30 generators>, <magma with 30
generators> ]<br>
gap> time;<br>
111979<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255);">The
following commands illustrate how to find the identification number of
a connected quandle.<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 204);">gap>
Q:=ConjugationQuandle(SymmetricGroup(5),1);;<br>
gap> P:=PathComponents(Q);;<br>
gap> P:=List(P,x->AsMagma(x));;<br>
gap> List(P,IsConnected);<br>
[ true, true, true, true, true, true, false ]<br>
gap>  IdConnectedQuandle(P[5]);<br>
[ 30, 17 ]<br>
            </td>
          </tr>
          <tr>
            <td style="background-color: white;">Let R<sub>x</sub>
denote the mapping R<sub>x</sub> : Q→Q, y ↦y▹x.<br>
We define the <span style="font-weight: bold; font-style: italic;">right
multiplication
group</span> of a quandle Q to be the group G=〈R<sub>x</sub>,
x
∈ Q〉. This group is also called the <span
 style="font-style: italic; font-weight: bold;">inner automorphism group</span>
of Q.<br>
We define the <span style="font-weight: bold; font-style: italic;">automorphism
group</span> Aut(Q)={f:Q→Q} to be the group of bijective quandle
homomorphisms. It can be shown that the inner  automorphism group
G is a subgroup of Aut(Q).</td>
          </tr>
          <tr>
            <td style="background-color: rgb(255, 255, 204);">gap>
Q:=ConnectedQuandle(8,2);; q:=Random(Q);<br>
m6<br>
gap> A:=AutomorphismGroupQuandle(Q);; a:=Random(A);;<br>
gap> q^a;<br>
m4<br>
gap> R:=RightMultiplicationGroupOfQuandle(Q);; r:=Random(R);;<br>
gap> q^r;<br>
m3</td>
          </tr>
          <tr>
            <td style="background-color: white; height: 192px;">A <span
 style="font-weight: bold; font-style: italic;">knot</span>
is an embedding of the circle S<sup>1</sup> in ℝ<sup>3</sup>.<br>
            <br>
To study knots we use <span
 style="font-weight: bold; font-style: italic;">knot diagrams</span> --
which are projections
of knots into ℝ<sup>2</sup>, defined, for instance, by f : ℝ<sup>3</sup>
→ ℝ<sup>2</sup>; (x,y,z) → (x,y)  subject to the
constraint that the preimage of any (x, y) ∈ ℝ<sup>2</sup> contains at
most two points.<br>
            <br>
            <span style="font-weight: bold; font-style: italic;">Crossing
points</span> occur when the preimage of a point in ℝ<sup>2</sup>
contains more than one point.<br>
            <br>
At these crossing points, we denote the point in the preimage that is
nearer to the ℝ<sup>2</sup> plane as the <span
 style="font-weight: bold; font-style: italic;">under-crossing</span>
point and the
point farther away as the <span
 style="font-weight: bold; font-style: italic;">over-crossing</span>
point. An arc is a line that
connects two crossing points in the knot diagram, with a line break
occurring when an undercrossing point is mapped to the arc.<br>
            <br>
We may give a knot diagram an <span
 style="font-weight: bold; font-style: italic;">orientation</span>,
i.e. a direction of
travelling around the knot. This allows us to categorize crossings as
either positive or negative:
            <div style="text-align: center;"><img alt="Crossings"
 src="./Images/Croisements.png"><br>
            <div style="text-align: left;"><br>
There exists different ways to describe a knot diagram: Planar Diagram,
Gauss Code, Dowker Notation, Conway Notation.</div>
            </div>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: white; text-align: left;">Another
way
to
describe
a
knot
is
to
use
quandles.
From
a
knot
K,
we
can
construct
the
knot
quandle
Q(K),
whose
generators
are
the arcs of
K, and relations are associated to the crossings:<br>
            <br>
            <div style="text-align: center;"><a
 href="Images/a_b_c_neg.png"><img alt="Relators knot quandles"
 src="Images/a_b_c_neg.png"
 style="border: 0px solid ; width: 138px; height: 79px;"></a><br>
This figure gives us "a ▹ b = c" at a negative crossing, and "a ▹-1
b = c" (or "c ▹ b = a") at a positive one.

            </td>
          </tr>
          <tr>
            <td
 style="background-color: rgb(255, 255, 204); vertical-align: top;">gap>
K:=PureCubicalKnot(3,1);;<br>
gap> G:=GaussCodeOfPureCubicalKnot(K);;<br>
gap> P:=PresentationKnotQuandle(G);<br>
Quandle presentation of 3 generators and 3 relators.<br>
            <br>
gap> P!.generators;<br>
[ 1 .. 3 ]<br>
gap> P!.relators;<br>
[ [ [ 3, 2 ], 1 ], [ [ 1, 3 ], 2 ], [ [ 2, 1 ], 3 ] ]<br>
            </td>
          </tr>
          <tr>
            <td style="background-color: white;">From this example, we
see that the generators of the Trefoil Knot Quandle are the arcs 1, 2
and 3; these generators satisfy the relations above.<br>
            <br>
            <u>Nb</u>: [[a<sub>1</sub> ,a<sub>2</sub> ],a<sub>3</sub> ]
means a<sub>1</sub> ▹ a<sub>2</sub> = a<sub>3</sub>, no matter if we
consider a positive or negative crossing.</td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255); text-align: left;">We
can
also
easily
go
from
a
Planar
Diagram
representation
of
a
knot
to
a
its
Gauss
Code
(with
orientations
of
crossings).</td>
          </tr>
          <tr>
            <td
 style="background-color: rgb(255, 255, 204); vertical-align: top;">gap>
PD:=PlanarDiagramKnot(3,1);<br>
[ [ 1, 4, 2, 5 ], [ 3, 6, 4, 1 ], [ 5, 2, 6, 3 ] ]<br>
gap> G:=PD2GC(PD);<br>
[ [ [ -1, 3, -2, 1, -3, 2 ] ], [ -1, -1, -1 ] ] <br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255); text-align: left;">Using
a
finite
connected
quandle
Q
we
can
construct
an
invariant
of
a
knot
K:
the
number
of
homomorphisms
Q<sub>K </sub>---> Q from the fundamental quandle Q<sub>K</sub>
of K to the quandle Q.<br>
            </td>
          </tr>
          <tr>
            <td
 style="background-color: rgb(255, 255, 204); vertical-align: top;">gap>
QK:=PresentationKnotQuandleKnot(12,1000);<br>
Quandle presentation of 12 generators and 12 relators.<br>
            <br>
gap> Q:=ConnectedQuandle(30,2);;<br>
            <br>
gap> NumberOfHomomorphisms(QK,Q); <br>
1230<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255);">For
the same knot K (knot 1000 in the list of 12 crossing prime knots) we
can compute the knot group W, the inner automorphism group RQ of the
connected quandle Q of order 30, and the number of group homomorphisms
W ---> RQ. This number is also an invariant of the knot.<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 204);">gap>
RQ:=RightMultiplicationGroupOfQuandleAsPerm(Q);;<br>
gap> Order(RQ);<br>
600<br>
gap> PD:=PlanarDiagramKnot(12,1000);;<br>
gap> G:=PD2GC(PD);;<br>
gap> W:=SimplifiedFpGroup(WirtingerGroup(G));;<br>
gap> NumberOfHomomorphisms(W,RQ);<br>
13200<br>
            </td>
          </tr>
          <tr>
            <td style="background-color: white;">The following code
shows how a partition of the number of homomorphisms K--->Q from a
knot quandle K to a finite quandle Q can be used to distinguish between
knots. The code establishes that by using only connected quandles Q of
order ≤13, one can distinguish between all prime knots on at most eight
crossings.</td>
          </tr>
          <tr>
            <td style="background-color: rgb(255, 255, 204);">gap>
L:=[];;<br>
gap> for n in [1..8] do<br>
> for i in [1..NumberOfPrimeKnots(n)] do<br>
> Add(L,PresentationKnotQuandleKnot(n,i));<br>
> od; od;<br>
            <br>
gap> inv:=function(K,n);<br>
> return
List(ConnectedQuandles(n),x->PartitionedNumberOfHomomorphisms(K,x));<br>
> end;;<br>
            <br>
gap> C:=Classify(L,K->inv(K,3));; List(C,Size);<br>
[ 11, 23, 1 ]<br>
gap> C4:=RefineClassification(C,K->inv(K,4));; List(C4,Size);<br>
[ 8, 3, 6, 17, 1 ]<br>
gap> C5:=RefineClassification(C4,K->inv(K,5));; List(C5,Size);<br>
[ 5, 2, 1, 1, 1, 1, 1, 1, 4, 3, 12, 1, 1, 1 ]<br>
gap> C6:=RefineClassification(C5,K->inv(K,5));; List(C6,Size);<br>
[ 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 4, 3, 12, 1, 1, 1 ]<br>
gap> C7:=RefineClassification(C6,K->inv(K,7));; List(C7,Size);<br>
[ 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 2, 8, 2, 1, 1, 1 ]<br>
gap> C8:=RefineClassification(C7,K->inv(K,8));; List(C8,Size);<br>
[ 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 6, 2, 2, 1, 1, 1 ]<br>
gap> C9:=RefineClassification(C8,K->inv(K,9));; List(C9,Size);<br>
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 2,
1, 1, 1, 1, 1, 1, 1 ]<br>
gap> C10:=RefineClassification(C9,K->inv(K,10));; List(C10,Size);<br>
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 2,
1, 1, 1, 1, 1, 1, 1 ]<br>
gap> C11:=RefineClassification(C10,K->inv(K,11));; List(C11,Size);<br>
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]<br>
gap> C12:=RefineClassification(C11,K->inv(K,12));; List(C12,Size);<br>
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]<br>
gap> C13:=RefineClassification(C12,K->inv(K,13));; List(C13,Size);<br>
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]</td>
          </tr>
          <tr>
            <td style="background-color: white;"><em></em>Given a
quandle Q one defines the <span
 style="font-weight: bold; font-style: italic;">adjoint group</span>
Adj(Q) to be the group with one generator for each element of Q and
relators <br>
            <div style="text-align: center;">x<sup>-1</sup>yx= x▹y<br>
            </div>
for x,y ∈ Q. <span style="font-style: italic; font-weight: bold;"></span>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 204);">Q:=ConnectedQuandle(7,1);<br>
<magma with 7 generators><br>
            <br>
gap> F:=AdjointGroupOfQuandle(Q);<br>
<fp group on the generators [ f1, f2, f3, f4, f5, f6, f7 ]><br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255);">The
            <span style="font-weight: bold; font-style: italic;">set of</span>
            <span style="font-weight: bold; font-style: italic;">path
components</span> of a quandle Q is defined to be the set of orbits of
the action of the right multiplication group Inn(Q) on Q.  One can
readily see that the rank of the abelianization of Adj(Q) is equal to
the number of path components. The following code illustrates this.<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 204);">gap>
Q:=ConjugationQuandle(SymmetricGroup(5),1);<br>
<magma with 10 generators><br>
            <br>
gap> F:=AdjointGroupOfQuandle(Q);<br>
<fp group with 120 generators><br>
            <br>
gap> AbelianInvariants(F);<br>
[ 0, 0, 0, 0, 0, 0, 0 ]<br>
            <br>
gap> P:=PathComponents(Q);;<br>
gap> Size(P);<br>
7<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255);">For
a <span style="font-style: italic;">connected</span> quandle Q the
group A=Adj(Q) is isomorphic to a semi-direct
product A=Z ⋊ D where D is the derived subgroup of Adj(Q) and Z is the
infinite cylic group. There is a canonical group homomorphism Adj(Q)
--> Inn(Q) to the right multiplication group. Thus Adj(Q) acts
canonically on Q. <br>
            <br>
For a connected Q and preferred element q ∈ Q the <span
 style="font-weight: bold; font-style: italic;">fundamental group</span>
of Q at the <span style="font-weight: bold; font-style: italic;">base-point</span>
q is defined to be the subgroup of D consisting of those elements that
fix q. Up to isomorphism the fundamental group of Q does not depend on
the choice of base-point.<br>
            <br>
When Q is finite then so too is D.  Thus for finite connected
quandles one can compute the fundamental group directly from the
definition.<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 204);">gap>
Q:=ConnectedQuandle(18,2);<br>
<magma with 18 generators><br>
            <br>
gap> F:=FundamentalGroup(Q);<br>
<group with 2 generators><br>
            <br>
gap> IdGroup(F);<br>
[ 4, 1 ]<br>
            <br>
gap> D:=DerivedGroupOfQuandle(Q);<br>
<group with 2 generators><br>
            <br>
gap> IdGroup(D);<br>
[ 72, 3 ]<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 255);">A
second example of a fundamental group computation is given below.<br>
            </td>
          </tr>
          <tr>
            <td
 style="vertical-align: top; background-color: rgb(255, 255, 204);">gap>
Q:=ConjugationQuandle(SymmetricGroup(5),1);<br>
<magma with 10 generators><br>
            <br>
gap> P:=PathComponents(Q);;<br>
gap> P:=List(P,x->AsMagma(x));;<br>
            <br>
gap> List(P,Size);<br>
[ 1, 10, 20, 15, 30, 20, 24 ]<br>
            <br>
gap> List(P,IsConnected);<br>
[ true, true, true, true, true, true, false ]<br>
            <br>
gap> Q:=P[5];<br>
<magma with 3 generators><br>
gap> Size(Q);<br>
30<br>
            <br>
gap> F:=FundamentalGroup(Q);<br>
<group with 2 generators><br>
            <br>
gap> IdGroup(F);<br>
[ 4, 1 ]<br>
gap> <br>
            </td>
          </tr>
          <tr>
            <td style="vertical-align: top;">
            <table
 style="margin-left: auto; margin-right: auto; width: 100%; text-align: left;"
 border="0" cellpadding="2" cellspacing="2">
              <tbody>
                <tr>
                  <td style="vertical-align: top;"><a
 style="color: rgb(0, 0, 102);" href="aboutCoverinSpaces.html">Previous
Page</a><br>
                  </td>
                  <td style="text-align: center; vertical-align: top;"><a
 href="http://hamilton.nuigalway.ie/Hap/www/SideLinks/About/aboutContents.html"><span
 style="color: rgb(0, 0, 102);">Contents</span></a><br>
                  </td>
                  <td style="text-align: right; vertical-align: top;"><a
 href="aboutPersistent.html"><span style="color: rgb(0, 0, 102);">Next
page</span><br>
                  </a> </td>
                </tr>
              </tbody>
            </table>
            <a
 href="http://math.uni.lu/%7Erahm/subpackage-documentation/aboutTopology.html"><br>
            </a> </td>
          </tr>
        </tbody>
      </table>
      <br>
      <br>
      </th>
    </tr>
  </tbody>
</table>
</body>
</html>

Messung V0.5
C=98 H=100 G=98

¤ Dauer der Verarbeitung: 0.2 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 und die Messung sind noch experimentell.