Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/proffan/maxima
https://github.com/proffan/maxima
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/proffan/maxima
- Owner: ProfFan
- License: other
- Created: 2024-11-10T21:09:49.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2024-11-10T21:10:28.000Z (about 2 months ago)
- Last Synced: 2024-12-01T20:49:33.825Z (25 days ago)
- Language: Common Lisp
- Size: 109 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
Maxima is a symbolic computation program. It is full featured,
doing symbolic manipulation of polynomials, matrices, rational
functions, integration, Todd-coxeter, graphing, bigfloats. It has a
symbolic debugger source level debugger for maxima code. Maxima is
based on the original Macsyma developed at MIT in the 1970's.
It comes with extensive self tests.Maxima is distributed under the GNU General Public License, with some
export restrictions from the U.S. Department of Energy. See the file
COPYING.Installation information is available in the file INSTALL. Summary
information about this release can be found in the file NEWS. Detailed
change information is available in the ChangeLog.A simple usage example:
(%i1) pyth:a^2+b^2=c^2;
(%o1) b^2+a^2=c^2(%i2) solve(pyth,a);
(%o2) [a=-sqrt(c^2-b^2),a=sqrt(c^2-b^2)](%i3) integrate(x*sin(a*x),x);
(%o3) (sin(a*x)-a*x*cos(a*x))/a^2For more information on Maxima, see the Maxima web site,
.