<?xml version="1.0" encoding="UTF-8"?>
<Worksheet><Version major="6" minor="1"/><View-Properties><Zoom percentage="100"/></View-Properties><Styles><Layout alignment="left" firstindent="0.0" leftmargin="0.0" linebreak="any" linespacing="0.0" name="Text Output6" rightmargin="0.0" spaceabove="0.0" spacebelow="0.0"/><Layout alignment="centred" firstindent="0.0" leftmargin="0.0" linebreak="space" linespacing="0.0" name="Normal258" rightmargin="0.0" spaceabove="0.0" spacebelow="0.0"/><Layout alignment="centred" firstindent="0.0" leftmargin="0.0" linebreak="space" linespacing="0.0" name="Normal256" rightmargin="0.0" spaceabove="0.0" spacebelow="0.0"/><Layout alignment="centred" firstindent="0.0" leftmargin="0.0" linebreak="space" linespacing="0.5" name="Maple Output" rightmargin="0.0" spaceabove="0.0" spacebelow="0.0"/><Layout alignment="left" firstindent="0.0" leftmargin="0.0" linebreak="space" linespacing="0.0" name="Normal" rightmargin="0.0" spaceabove="0.0" spacebelow="0.0"/><Font background="[0,0,0]" bold="true" executable="true" family="Monospaced" foreground="[255,0,0]" name="Maple Input"/><Font background="[0,0,0]" family="Times New Roman" name="Page Number" underline="false"/><Font background="[0,0,0]" bold="false" executable="false" family="Times New Roman" foreground="[0,0,0]" italic="false" name="Maple Output" readonly="false" size="12" underline="false"/><Font background="[0,0,0]" bold="false" executable="false" family="Times New Roman" foreground="[0,0,0]" italic="false" name="Normal" readonly="false" size="12" underline="false"/><Font background="[0,0,0]" bold="false" executable="false" family="Monospaced" foreground="[0,0,255]" italic="false" name="Text Output6" readonly="true" size="10" underline="false"/><Font background="[0,0,0]" family="Times New Roman" foreground="[0,0,255]" name="2D Output" underline="false"/><Font background="[0,0,0]" name="_cstyle257" size="16"/><Font background="[0,0,0]" name="_cstyle256" size="18" underline="true"/></Styles><Page-Numbers enabled="false" first-number="1" first-numbered-page="1" horizontal-location="right" style="Page Number" vertical-location="bottom"/><Group><Input><Text-field layout="Normal256" style="_cstyle256"><Font bold="false" encoding="ISO8859-1" family="Times New Roman" foreground="[0,0,0]" italic="false">Newton - Verfahren f\374r nichtlineare Gleichungssysteme :</Font></Text-field><Text-field layout="Normal" style="Normal"/></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input"><Font italic="false" size="12" underline="false">restart : with(LinearAlgebra)  :</Font></Text-field></Input></Group><Group><Input><Text-field layout="Normal" style="Normal"/></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input"><Font italic="false" size="12" underline="false">n:=3 :</Font></Text-field></Input></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input"><Font italic="false" size="12" underline="false">F:=(x1,x2,x3) -&gt; evalf(Vector([   3*x1   -    cos(x2*x3) -   0.5          ,
                                    x1^2 - 81*(x2+0.1)^2 +sin(x3) + 1.06  , 
                                exp(-x1*x2) + 20*x3 + (10*Pi-3)/3         ]) ); </Font></Text-field></Input><Output><Text-field layout="Maple Output" style="2D Output"><Equation style="2D Output">JSQuLi5H</Equation></Text-field></Output></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input"><Font italic="false" size="12" underline="false">J:=(x1,x2,x3) -&gt; Matrix([  [   3    ,   x3*sin(x2*x3)  , x2*sin(x2*x3) ],
                           [   2*x1 ,   -162*(x2+0.1)  ,    cos(x3)    ], 
                           [ -x2*exp(-x1*x2) , -x1*exp(-x1*x2) ,  20   ]  ]) ;
P:=&lt; 0.1,0.1,-0.1 &gt; ;</Font></Text-field></Input><Output><Text-field layout="Maple Output" style="2D Output"><Equation style="2D Output">JSQuLi5H</Equation></Text-field><Text-field layout="Maple Output" style="2D Output"><Equation style="2D Output">NiM+JSJQRy0lJ1JUQUJMRUc2JSIpKVtScSMtJSdNQVRSSVhHNiM3JTcjJCIiIiEiIkYtNyMkRjBGMCYlJ1ZlY3Rvckc2IyUnY29sdW1uRw==</Equation></Text-field></Output></Group><Group><Input><Text-field layout="Normal" style="Normal"/><Text-field layout="Normal258" style="_cstyle257"><Font bold="false" family="Times New Roman" foreground="[0,0,0]" italic="false" underline="false">Ein Newton - Schritt</Font></Text-field></Input></Group><Group><Output><Text-field layout="Maple Output" style="Maple Output"/></Output></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input"><Font italic="false" size="12" underline="false">eps:=10^(-8) : maxi:=1000:  Pold:=P :</Font></Text-field></Input></Group><Group><Output><Text-field layout="Maple Output" style="Maple Output"/></Output></Group><Group><Input><Text-field layout="Normal" prompt="&gt; " style="Maple Input"><Font italic="false" size="12" underline="false">for j from 1 by 1 while (j &lt;= 25 and maxi&gt;=eps) do
  P:= P - MatrixInverse(J(P[1],P[2],P[3])) . F(P[1],P[2],P[3]) ;
  maxi:=0:
  printf("(%2.1d )    ", j ) ;
  printf("%15.8f\n", evalf(P , 8) ) ; 
  for m from 1 by 1 while m &lt;= n do
    maxi:= max( maxi , abs(P[m]-Pold[m]) ) ;
  end do :
  Pold:= P  ;
end do :
Transpose( F(P[1],P[2],P[3]) );</Font></Text-field></Input><Output><Text-field layout="Text Output6" style="Text Output6">( 1 )         0.49986967      0.01946685     -0.52152047</Text-field><Text-field layout="Text Output6" style="Text Output6">( 2 )         0.50001424      0.00158859     -0.52355696</Text-field><Text-field layout="Text Output6" style="Text Output6">( 3 )         0.50000011      0.00001244     -0.52359845</Text-field><Text-field layout="Text Output6" style="Text Output6">( 4 )         0.50000000      0.00000000     -0.52359878</Text-field><Text-field layout="Text Output6" style="Text Output6">( 5 )         0.50000000     -0.00000000     -0.52359878</Text-field><Text-field layout="Maple Output" style="2D Output"><Equation style="2D Output">NiMtJSdSVEFCTEVHNiUiKUdMRD8tJSdWRUNUT1JHNiM3JSQiIiFGLEYrRismJSdWZWN0b3JHNiMlJHJvd0c=</Equation></Text-field></Output></Group><Text-field layout="Normal" style="Normal"/><Text-field/></Worksheet>

