Parallel
analytic.txt
Associated article: Analytical Computing
Tags: Database Parallel
Published source code accompanying the article by Laurent Bernardin in which he examines the topic of analytical computing--the convergence of numeric and symbolic computation systems are making it possible for scientists, engineers, and programmers to enjoy the speed of numeric computation and the flexibility and accuracy of symbolic computing.
Analytical Computing
by Laurent Bernardin
Listing One
> a[0] := 11/2; a[1] := 61/11;
> for i from 2 to 20 do
a[i] := evalf( 111-1130/a[i-1]+3000/(a[i-1]*a[i-2]) )
end do;
a[2] := 5.59016393
a[3] := 5.63343106
a[4] := 5.67464821
a[5] := 5.71332183
a[6] := 5.74899458
a[7] := 5.77961409
a[8] := 5.77331611
a[9] := 5.17967242
a[10] := -6.8391055
a[11] := 191.5387186
a[12] := 102.8102519
...


