<?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 >
<
title >GAP (FLOAT) - Chapter
2 : Float package</
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=
"chap2" 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="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="chap1.html" >[Previous Chapter]</a> <a href="chap3.html" >[Next Chapter]</a> </div >
<p id="mathjaxlink" class="pcenter" ><a href="chap2_mj.html" >[MathJax on]</a></p>
<p><a id="X7E12358984CA3111" name="X7E12358984CA3111" ></a></p>
<div class="ChapSects" ><a href="chap2.html#X7E12358984CA3111" >2 <span class="Heading" >Float package</span ></a>
<div class="ContSect" ><span class="tocline" ><span class="nocss" > </span ><a href="chap2.html#X7B4092CA7ABB93B0" >2 .1 <span class="Heading" >A sample run</span ></a>
</span >
</div >
</div >
<h3>2 <span class="Heading" >Float package</span ></h3>
<p><a id="X7B4092CA7ABB93B0" name="X7B4092CA7ABB93B0" ></a></p>
<h4>2 .1 <span class="Heading" >A sample run</span ></h4>
<p>The extended floating-point capabilities of <strong class="pkg" >GAP</strong > are installed by loading the package via <code class="code" >LoadPackage("float" );</code > and selecting new floating-point handlers via <code class="code" >SetFloats(MPFR)</code >, <code class="code" >SetFloats(MPFI)</code >, <code class="code" >SetFloats(MPC)</code > or<code class="code" >SetFloats(CXSC)</code >, depending on whether high-precision real, interval or complex arithmetic are desired, or whether a fast package containing all four real/complex element/interval arithmetic is desired:</p>
<div class="example" ><pre >
<span class="GAPprompt" >gap></span > <span class="GAPinput" >LoadPackage("float" );</span >
Loading FLOAT 0 .7 .0 ...
true
<span class="GAPprompt" >gap></span > <span class="GAPinput" >SetFloats(MPFR); # floating-point</span >
<span class="GAPprompt" >gap></span > <span class="GAPinput" >x := 4 *Atan(1 .0 );</span >
.314159 e1
<span class="GAPprompt" >gap></span > <span class="GAPinput" >Sin(x);</span >
.169569 e-30
<span class="GAPprompt" >gap></span > <span class="GAPinput" >SetFloats(MPFR,1000 ); # 1000 bits</span >
<span class="GAPprompt" >gap></span > <span class="GAPinput" >x := 4 *Atan(1 .0 );</span >
.314159 e1
<span class="GAPprompt" >gap></span > <span class="GAPinput" >Sin(x);</span >
.125154 e-300
<span class="GAPprompt" >gap></span > <span class="GAPinput" >String(x,300 );</span >
".3141592653589793238462643383279502884197169399375105820974944592307816406286\
208998628034825342117067982148086513282306647093844609550582231725359408128481 \
117450284102701938521105559644622948954930381964428810975665933446128475648233 \
78678316527120190914564856692346034861045432664821339360726024914127 e1"
gap>
<span class="GAPprompt" >gap></span > <span class="GAPinput" >SetFloats(MPFI); # intervals</span >
<span class="GAPprompt" >gap></span > <span class="GAPinput" >x := 4 *Atan(1 .0 );</span >
.314159 e1(99 )
<span class="GAPprompt" >gap></span > <span class="GAPinput" >AbsoluteDiameter(x); Sup (x); Inf(x);</span >
.100441 e-29
.314159 e1
.314159 e1
<span class="GAPprompt" >gap></span > <span class="GAPinput" >Sin(x);</span >
-.140815 e-29 (97 )
<span class="GAPprompt" >gap></span > <span class="GAPinput" >0 .0 in last;</span >
true
<span class="GAPprompt" >gap></span > <span class="GAPinput" >1 .0 ; # exact representation</span >
.1 e1(∞)
<span class="GAPprompt" >gap></span > <span class="GAPinput" >IncreaseInterval(last,0 .001 ); # now only 8 significant bits</span >
.1 e1(8 )
<span class="GAPprompt" >gap></span > <span class="GAPinput" >IncreaseInterval(last,-0 .002 ); # now becomes empty</span >
∅
<span class="GAPprompt" >gap></span > <span class="GAPinput" >r2 := Sqrt(2 .0 );</span >
.141421 e1(99 )
<span class="GAPprompt" >gap></span > <span class="GAPinput" >MinimalPolynomial(Rationals,r2);</span >
-2 *x_1^2 +1
<span class="GAPprompt" >gap></span > <span class="GAPinput" >Cyc(r2);</span >
E(8 )-E(8 )^3
gap>
<span class="GAPprompt" >gap></span > <span class="GAPinput" >SetFloats(MPC); # complex numbers</span >
<span class="GAPprompt" >gap></span > <span class="GAPinput" >z := 5 .0 -1 .0 i;</span >
.5 e1-.1 e1i
<span class="GAPprompt" >gap></span > <span class="GAPinput" >(1 +1 .0 i)*last^4 *(239 +1 .0 i);</span >
.228488 e6
<span class="GAPprompt" >gap></span > <span class="GAPinput" >Exp(6 .2835 i);</span >
.1 e1+.314693 e-3 i
</pre ></div >
<div class="chlinkprevnextbot" > <a href="chap0.html" >[Top of Book]</a> <a href="chap0.html#contents" >[Contents]</a> <a href="chap1.html" >[Previous Chapter]</a> <a href="chap3.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="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 >
Messung V0.5 in Prozent C=100 H=100 G=100
¤ Dauer der Verarbeitung: 0.15 Sekunden
(vorverarbeitet am 2026-06-07)
¤
*© Formatika GbR, Deutschland