Windows installer: update Gnuplot (64bit only) and wxMaxima.
[maxima/cygwin.git] / README
blob2e050b003cbf5bb3c47bee16360bfd1aea128de2
1 Maxima is a symbolic computation program.  It is full featured,
2 doing symbolic manipulation of polynomials, matrices, rational
3 functions, integration, Todd-coxeter, graphing, bigfloats.  It has a
4 symbolic debugger source level debugger for maxima code.  Maxima is
5 based on the original Macsyma developed at MIT in the 1970's.
6 It comes with extensive self tests.
8 Maxima is distributed under the GNU General Public License, with some
9 export restrictions from the U.S. Department of Energy. See the file
10 COPYING.
12 Installation information is available in the file INSTALL. Summary
13 information about this release can be found in the file NEWS. Detailed
14 change information is available in the ChangeLog.
16 A simple usage example:
18 (%i1)   pyth:a^2+b^2=c^2;
19 (%o1)   b^2+a^2=c^2
21 (%i2)   solve(pyth,a);
22 (%o2)   [a=-sqrt(c^2-b^2),a=sqrt(c^2-b^2)]
24 (%i3)   integrate(x*sin(a*x),x);
25 (%o3)   (sin(a*x)-a*x*cos(a*x))/a^2
27 For more information on Maxima, see the Maxima web site,
28 <http://maxima.sourceforge.net>.