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

SSL chap5.html   Sprache: HTML

 
 products/Sources/formale Sprachen/GAP/pkg/localizeringforhomalg/doc/chap5.html


?xml="1.0"="UTF-8"?>

<!DOCTYPE html  "-/W3C///DTD XHTML 1.0 Strict///EN"
         http.w3.org/TR/xhtml1DTD/xhtml1-strictdtd>

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>GAP (LocalizeRingForHomalg) - Chapter 5: 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="chap5"  onload="jscontent()">


<div class="chlinktop"><span class="chlink1">Goto Chapter: </span><a href="chap0.html">Top</a>  <a href="chap1.html">1</a>  <a href="chap2.html">2</a>  <a href="chap3.html">3</a>  <a href="chap4.html">4</a>  <a href="chap5.html">5</a>  <a href="chapA.html">A</a>  <a href="chapBib.html">Bib</a>  <a href="chapInd.html">Ind</a>  </div>

<div class="chlinkprevnexttop"> <a href="chap0.html">[Top of Book]</a>   <a href="chap0.html#contents">[Contents]</a>    <a href="chap4.html">[Previous Chapter]</a>    <a href="chapA.html">[Next Chapter]</a>   </div>

<p id="mathjaxlink" class="pcenter"><a href="chap5_mj.html">[MathJax on]</a></p>
<p><a id="X7A489A5D79DA9E5C" name="X7A489A5D79DA9E5C"></a></p>
<div class="ChapSects"><a href="chap5.html#X7A489A5D79DA9E5C">5 <span class="Heading">Examples</span></a>
<div class="ContSect"><span class="tocline"><span class="nocss"> </span><a href="chap5.html#X8426A658837B4911">5.1 <span class="Heading">An Easy Polynomial Example</span></a>
</span>
</div>
<div class="ContSect"><span class="tocline"><span class="nocss"> </span><a href="chap5.html#X7820475F7C884EA5">5.2 <span class="Heading">Hom(Hom(-,Z128),Z16)</span></a>
</span>
</div>
<div class="ContSect"><span class="tocline"><span class="nocss"> </span><a href="chap5.html#X7CC8EA507E7AABA4">5.3 <span class="Heading">ResidueClass</span></a>
</span>
</div>
<div class="ContSect"><span class="tocline"><span class="nocss"> </span><a href="chap5.html#X7958E7417BB312F0">5.4 <span class="Heading">Testing the Intersection Formula</span></a>
</span>
</div>
</div>

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

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

<h4>5.1 <span class="Heading">An Easy Polynomial Example</span></h4>

<p>The ground ring used in this example is <span class="SimpleMath">F_3[x,y]</span>. We want to see, how the different rings in this package can be used to localize at different points and how the results differ.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">LoadPackage("RingsForHomalg");;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">F3xy := HomalgRingOfIntegersInSingular(3) * "x,y";;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">x1 := HomalgRingElement( "x+2", F3xy );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">y0 := HomalgRingElement( "y", F3xy );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">LoadPackage("LocalizeRingForHomalg");;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">R00 := LocalizeAtZero( F3xy );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">R10 := LocalizeAt( F3xy, [ x1, y0 ] );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">RMora := LocalizePolynomialRingAtZeroWithMora( F3xy );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">M := HomalgMatrix( "[\

<span class="GAPprompt">></span> <span class="GAPinput">       y^3+2*y^2+x+x^2+2*x*y+y^4+x*y^2, \</span>
<span class="GAPprompt">></span> <span class="GAPinput">       x*y^3+2*x^2*y+y^3+y^2+x+2*y+x^2, \</span>
<span class="GAPprompt">></span> <span class="GAPinput">       x^2*y^2+2*x^3+x^2*y+y^3+2*x^2+2*x*y+y^2+2*y\</span>
<span class="GAPprompt">></span> <span class="GAPinput">     ]", 1, 3, F3xy );;
<span class="GAPprompt">gap></span> <span class="GAPinput">LoadPackage( "Modules" );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">I := RightPresentation( M );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">M00 := HomalgLocalMatrix( M, R00 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">M10 := HomalgLocalMatrix( M, R10 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">MMora := HomalgLocalMatrix( M, RMora );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">I00 := RightPresentation( M00 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">I10 := RightPresentation( M10 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">IMora := RightPresentation( MMora );;</span>
</pre></div>

<p>This ring is able to compute a standard basis of the module.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( IMora );</span>
GF(3)[x,y]_< x, y >/< (x+x^2-x*y-y^2+x*y^2+y^3+y^4)/1, (x-y+x^2+y^2-x^2*y+y^3+\
x*y^3)/1, (-y-x^2-x*y+y^2-x^3+x^2*y+y^3+x^2*y^2)/1 >
<span class="GAPprompt">gap></span> <span class="GAPinput">ByASmallerPresentation( IMora );</span>
<A cyclic torsion right module on a cyclic generator satisfying 2 relations>
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( IMora );</span>
GF(3)[x,y]_< x, y >/< x/1, y/1 >
</pre></div>

<p>This ring recognizes, that the module is not zero, but is not able to find better generators.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( I00 );</span>
GF(3)[x,y]_< x, y >/< (y^4+x*y^2+y^3+x^2-x*y-y^2+x)/1, (x*y^3-x^2*y+y^3+x^2+y^\
2+x-y)/1, (x^2*y^2-x^3+x^2*y+y^3-x^2-x*y+y^2-y)/1 >
<span class="GAPprompt">gap></span> <span class="GAPinput">ByASmallerPresentation( I00 );</span>
<A cyclic right module on a cyclic generator satisfying 3 relations>
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( I00 );</span>
GF(3)[x,y]_< x, y >/< (y^4+x*y^2+y^3+x^2-x*y-y^2+x)/1, (x*y^3-x^2*y+y^3+x^2+y^\
2+x-y)/1, (x^2*y^2-x^3+x^2*y+y^3-x^2-x*y+y^2-y)/1 >
</pre></div>

<p>We are able to change the ring, to compute a nicer basis.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">I00ToMora := RMora * I00;</span>
<A cyclic right module on a cyclic generator satisfying 3 relations>
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( I00ToMora );</span>
GF(3)[x,y]_< x, y >/< (x+x^2-x*y-y^2+x*y^2+y^3+y^4)/1, (x-y+x^2+y^2-x^2*y+y^3+\
x*y^3)/1, (-y-x^2-x*y+y^2-x^3+x^2*y+y^3+x^2*y^2)/1 >
<span class="GAPprompt">gap></span> <span class="GAPinput">ByASmallerPresentation( I00ToMora );</span>
<A cyclic torsion right module on a cyclic generator satisfying 2 relations>
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( I00ToMora );</span>
GF(3)[x,y]_< x, y >/< x/1, y/1 >
</pre></div>

<p>We are able to find out, that this module is actually zero.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( I10 );</span>
GF(3)[x,y]_< x-1, y >/< (y^4+x*y^2+y^3+x^2-x*y-y^2+x)/1, (x*y^3-x^2*y+y^3+x^2+\
y^2+x-y)/1, (x^2*y^2-x^3+x^2*y+y^3-x^2-x*y+y^2-y)/1 >
<span class="GAPprompt">gap></span> <span class="GAPinput">ByASmallerPresentation( I10 );</span>
<A zero right module>
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( I10 );</span>
0
</pre></div>

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

<h4>5.2 <span class="Heading">Hom(Hom(-,Z128),Z16)</span></h4>

<p>The following example is taken from Section 2 of <a href="chapBib.html#biBBREACA">[BR06]</a>. <br /> <br /> The computation takes place over the local ring <span class="SimpleMath">R=ℤ_⟨ 2⟩</span> (i.e. ℤ localized at the maximal ideal generated by <span class="SimpleMath">2</span>).</p>

H we infinite exact of covariant spanclass="SimpleMath">Hom(Hom(-,R/2^7)R/^4R)<> (andits  functors  the short <brspan="SimpleMath"> -; M_2 -alpha_1--gt/25-alpha_2--gtR/R>0/>.</>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">LoadPackage( "LocalizeRingForHomalg" );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">GlobalR := HomalgRingOfIntegersInExternalGAP(  );</span>
Z
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( GlobalR );</span>
<An external ring residing in the CAS GAP>
<span class="GAPprompt">gap></span> <span class="GAPinput">LoadPackage( "RingsForHomalg" );;</span>
<span="GAPprompt"gap;</span>< classGAPinput:LocalizeAt ,[  ;/spanjava.lang.StringIndexOutOfBoundsException: Range [104, 105) out of bounds for length 104
;
class>span(R )/>
<A local ring>
<span class="GAPprompt">gap></span> <span class="GAPinput">M := LeftPresentation( HomalgMatrix( [ 2^5 ], R ) );</span>
<A cyclic left module presented by 1 relation for a cyclic generator>
<span class="GAPprompt">gap></span> <span class="GAPinput">_M := LeftPresentation( HomalgMatrix( [ 2^3 ], R ) );</span>
lt  module byrelation a  generator;
<span class="GAPprompt">gap></span> <span class="GAPinput">alpha2 := HomalgMap( HomalgMatrix( [
< class"GAPprompt>>/span> < class="GAPinputLoadPackage"LocalizeRingForHomalg;<>
<span class="GAPpromptspan class"">>;
< ="">apgt;</pan>span="">Display );/>
r;
<span=GAPpromptgap<< classGAPinput"> := KernelEmb( alpha2)
<Amonomorphismof modulesgtjava.lang.StringIndexOutOfBoundsException: Index 38 out of bounds for length 38
< class=GAPprompt>;<spanspan="GAPinput">seq=HomalgComplex );/>
<A "complex" containing a single morphism of; cyclicmodule by relation a cyclic>
[ 0 .1]gt
<span class="GAPprompt">gap></span&tA cyclic modulepresented  1 relationcyclic>
<spanclass="GAPprompt>&;/pan >IsShortExactSequence );<span
true
< classGAPprompt>gap classGAPinputK = LeftPresentation(HomalgMatrix[^ ],R))<span
<;/spanspan class">_ =Kernel( alpha2 );
<span class class=GAPprompt>ap;/panspanclassGAPinput"> := KernelEmb( alpha2 );
&;cyclicm on generator  1relationgt
<span class="GAPprompt">gap></span>  of modules
<An exact triangle containing 3 morphisms of left complexes at degrees 0 .1];
1,,3 1
<spanclass"GAPprompt>gap&t;span>GAPinputlehs LongSequencetriangle;span
java.lang.StringIndexOutOfBoundsException: Index 83 out of bounds for length 81
<span class="">ap;</span classGAPinputL=RightPresentation(HomalgMatrix[ ^4 ,/>
<A non-zero;A  rightmodule  a  generatorsatisfying1relation&;
  .14 &;
<span class="GAPprompt">gap></span> <span class="GAPinput"ltAn exacttriangle containing  of complexes at degrees
true class="GAPprompt">
<lt;  containing morphisms  left atdegrees[ . 4]

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

<h4>5.3 <span class="Heading">ResidueClass</span></h4>

<p>We want to show, how localization can work together with residue class rings.</p>


<div class="example"><pre>
<span=">>LoadPackage RingsForHomalg "gt; 22.41");;/pan
<nclass="">gap><span< class"GAPinput"> :=( ) * "x,yjava.lang.StringIndexOutOfBoundsException: Index 122 out of bounds for length 122
Q[x,y]
<pan="">><spanspan class="">wmat = (</>
<span="">>/span span="GAPinput">          "[y^3y^ ,x3x ^+2, x3x^ ,/>
<span
<A 2 x 2 matrix anexternal ring;
<span class="spanclass"">>", "gt22.41"); ="APpromptgt;/> span="">Qxy= ( ) * "x,y;/>
-x3x22y2
/></>

<p>Compute globally:<span="GAPprompt">gt )/>


< class"><>
<span class="span class"=( -^-^+*^" );
<span class="GAPprompt">gap></span> <span classx^x22*^
t;Aleft module by relations for generators&;
<span
<A right acyclic complex containing 2 morphisms class=GAPprompt"gapgt">LoadPackage("" ;
[0.  ]gt
<span class="GAPprompt">gap></lt  module by 2 relations for 2 generators>
-------------------------
at homology degree: 2
0
-------------------------
(an;A right acyclic complex containing2morphisms left atdegrees

the currently byabove 2matrix
------------v------------
at degree  homology degree: 2
[,](  2
-----currently  by above  java.lang.StringIndexOutOfBoundsException: Index 58 out of bounds for length 58
y2      ^,
xy2y30

the map is currently represented by the above 2 x 2 matrix
---------
at homology degree)
[,^1 )
-----------java.lang.StringIndexOutOfBoundsException: Index 25 out of bounds for length 25
<prediv

pTry of class:</>


<div class="example"><pre>
<span class="&tA class ring>
Qxy/ -x^x22y2   a class>
<=GAPprompt>/> <span ="GAPinput">(R1;</pan
<A span="GAPprompt">gap;</pan< class= LocalizeAt( ,</>
<span s classGAPprompt>span>  classGAPinput         [HomalgRingElement ""java.lang.StringIndexOutOfBoundsException: Index 106 out of bounds for length 106
<A 2 x 2 matrix over a residue class ring>< class"">spanclass"> );

< classGAPpromptgap&;</ class=GAPinputLoadPackage"LocalizeRingForHomalg );
<span class="GAPprompt">gap></span class"GAPprompt>>/> < class="">( R10 )

<span class="span class=GAPprompt"gap;/panspan="GAPinput"wmat10=HomalgLocalMatrix,R10/&;
< class)<span
<span class="GAPprompt">></span> <span class="GAPinput">       );</span>
Q[x,y]/( x^3+x^2-2*y^2 )_< |[ x ]|, class>gap&t</span<spanclass"">Res10= Resolution 2 W10/>
<span="GAPprompt">gap><span<pan="">( R10 )</span
java.lang.StringIndexOutOfBoundsException: Index 20 out of bounds for length 20
<spanan emptyx 2 )
ver
<span  homology:1
&;A left module presented by 2 relationsfor 2 generators&tjava.lang.StringIndexOutOfBoundsException: Index 63 out of bounds for length 63
<span="GAPprompt">></spanspan="">Res10:=Resolution 2,W10;<span
<Aright complexcontaining 2morphisms leftmodules at
[ 0 .. 2 ]>------v------------
<span class="GAPprompt">gap></span> <span class="GAPinput">Display( Res10 );</span>
---></>
 homology:
0
------------div="example"><>
(an    )

the is represented by the    
------------v------------
atlt;  ring;
Qxy/ 3+^-*^ _lt |[x]|,|  |&;^( 2
--------------&; 2 x 2matrix a local >
x*y^2+y^2,2*y^2,         
y^2,      y^4-2*y^3+2*y^2

modulo [ x^3+x^2-2*y">gap&;/span span lass="> :   /  );/span
/| 1]java.lang.StringIndexOutOfBoundsException: Index 9 out of bounds for length 9

the currently bythe 2 2
------------v------------
at  degree
Q[x,](x3x22y2 )&; | x]|, |[]^1  )
-------------------------
</></div

<p>Try  class oflocalization:<pjava.lang.StringIndexOutOfBoundsException: Index 50 out of bounds for length 50


<div class="example"><pre>
<spanclass=GAPprompt"gap&t >gap&-------v------------
&t;  ring
gap;</> < class"">wmat0 : R0 *wmat>
<A 2 x 2 matrix over a local ring-------------java.lang.StringIndexOutOfBoundsException: Index 25 out of bounds for length 25
< classGAPprompt>/> < classGAPinputR01 R0 ( / R0;</>
Q[x_ltx &;/(3-x2+*y21java.lang.StringIndexOutOfBoundsException: Index 44 out of bounds for length 44
<span class>&;<spanspan=""Display R01/>
<A residue
<span class="GAPprompt">gap></span> <span class="">mat01 *wmat0span
<A 2 x 2 matrix over a residue
< classGAPpromptgap>span =""> :=( wmat01 ;span
<  module    2generators;
<span =GAPpromptgap&;</><pan="">(LocalizeRingForHomalg/>
lt    2morphismsof   degrees
[ 0 .. 2 ]>
<class;> spanjava.lang.StringIndexOutOfBoundsException: Range [61, 60) out of bounds for length 86
-------------------------
at homology degree ="gt;/span span =GAPinput x-w2*,<>
0
-------------------------
(an empty 0 x 2 matrix ="">&;/> span=GAPinput>:HomalgMatrix[<spanjava.lang.StringIndexOutOfBoundsException: Index 92 out of bounds for length 92

the map is  classGAPprompt;/><spanclass>" 2);;spanjava.lang.StringIndexOutOfBoundsException: Index 86 out of bounds for length 86
------------v------------
at:
Q[x,y]_< x, y >/([x,y]_< x, y >/( gt<span<="RmodI2 (M2 ;;/java.lang.StringIndexOutOfBoundsException: Index 103 out of bounds for length 103
-------------------------
y^3+y^2,2*<A grade objectconsisting 4leftmodules at [0. &t;
0,      x*y^2-y^3
/ 1

modulo [ (x^3+x^2-2*y classGAPpromptgap;/>< =GAPinput(ObjectsOfComplex , 

the1,,00java.lang.StringIndexOutOfBoundsException: Index 15 out of bounds for length 15
------------v------------
at
Q,_java.lang.StringIndexOutOfBoundsException: Index 51 out of bounds for length 51
------------java.lang.StringIndexOutOfBoundsException: Index 25 out of bounds for length 25
</pre></div>

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

<h4>5.4 <span class="Heading">Testing the Intersection">T0: Tor( R0modI10 );/>

<p< class"GAPprompt">/> classList( ) )span


div=""><re
 
<span class  multiplicity is=2./
<span class=html"[]<> ahref=chap4[ </a&;&<h=.htmlChapternbsp/>
<span class="GAPprompt">gap></span
< class">gapgtf bounds for length 118
< =">>span> <="> =HomalgMatrix\>
<span class="GAPprompt">></span> <span class="GAPinput">       (w-x^2)*y, \</span>
<span class="GAPprompt">></span> <span class="GAPinput">       (w-x^2)*z, \</span>
<span class="GAPprompt">></span> <span class="GAPinput">       (x-w^2)*y, \</span>
<span class="GAPprompt">></span> <span class="GAPinput">       (x-w^2)*z  \</span>
<span class="GAPprompt">></span> <span class="GAPinput">     ]", 4, 1, R );;

<span class="GAPprompt">gap></span> <span class="GAPinput">M2 := HomalgMatrix( "[\

<span class="GAPprompt">></span> <span class="GAPinput">       (w-x^2)-y, \</span>
<span class="GAPprompt">></span> <span class="GAPinput">       (x-w^2)-z  \</span>
<span class="GAPprompt">></span> <span class="GAPinput">     ]", 2, 1, R );;

<span class="GAPprompt">gap></span> <span class="GAPinput">LoadPackage( "Modules" );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">RmodI1 := LeftPresentation( M1 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">RmodI2 := LeftPresentation( M2 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">T:=Tor( RmodI1, RmodI2 );</span>
<A graded homology object consisting of 4 left modules at degrees [ 0 .. 3 ]>
<span class="GAPprompt">gap></span> <span class="GAPinput">List( ObjectsOfComplex( T ), AffineDegree );</span>
[ 12, 4, 0, 0 ]
</pre></div>

<p>We read, that the intersection multiplicity is 12-4=8 globally.</p>


<div class="example"><pre>
<span class="GAPprompt">gap></span> <span class="GAPinput">M10 := R0 * M1;</span>
<A 4 x 1 matrix over a local (Mora) ring>
<span class="GAPprompt">gap></span> <span class="GAPinput">M20 := R0 * M2;</span>
<A 2 x 1 matrix over a local (Mora) ring>
<span class="GAPprompt">gap></span> <span class="GAPinput">R0modI10 := LeftPresentation( M10 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">R0modI20 := LeftPresentation( M20 );;</span>
<span class="GAPprompt">gap></span> <span class="GAPinput">T0 := Tor( R0modI10, R0modI20 );</span>
<A graded homology object consisting of 4 left modules at degrees [ 0 .. 3 ]>
<span class="GAPprompt">gap></span> <span class="GAPinput">List( ObjectsOfComplex( T0 ), AffineDegree );</span>
[ 3, 1, 0, 0 ]
</pre></div>

<p>The intersection multiplicity at zero is 3-1=2.</p>


<div class="chlinkprevnextbot"> <a href="chap0.html">[Top of Book]</a>   <a href="chap0.html#contents">[Contents]</a>    <a href="chap4.html">[Previous Chapter]</a>    <a href="chapA.html">[Next Chapter]</a>   </div>


<div class="chlinkbot"><span class="chlink1">Goto Chapter: </span><a href="chap0.html">Top</a>  <a href="chap1.html">1</a>  <a href="chap2.html">2</a>  <a href="chap3.html">3</a>  <a href="chap4.html">4</a>  <a href="chap5.html">5</a>  <a href="chapA.html">A</a>  <a href="chapBib.html">Bib</a>  <a href="chapInd.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%


¤ 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.0.29Bemerkung:  ¤

*Bot Zugriff






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.