Menu

Tree [c3b583] master rtoy-use-ac-help-string /
 History

HTTPS access


File Date Author Commit
 LICENSES unknown
 admin 2021-07-27 Wolfgang Dautermann Wolfgang Dautermann [61ca2a] Update FSF address.
 archive 2025-11-09 Wolfgang Dautermann Wolfgang Dautermann [691605] Fix some typos.
 changelogs 2025-07-28 Viktor T. Toth Viktor T. Toth [e03ffd] Adding 5.48 change log.
 crosscompile-windows 2025-10-28 Wolfgang Dautermann Wolfgang Dautermann [d3250f] Windows installer: Update SBCL.
 demo 2025-07-23 villate villate [d7e8c9] Moves the julia example to the right place, res...
 desktopintegration 2024-10-04 villate villate [181c06] Updates the name of the desktop launcher file f...
 doc 2025-11-03 villate villate [f3570d] Fixes a typo in the Plotting chapter of the doc...
 interfaces 2025-08-02 villate villate [425f9d] This completes my fixes of help output in html ...
 lisp-utils 2025-04-22 Viktor T. Toth Viktor T. Toth [9fb914] Updated defsystem.lisp for GCL 2.7.1 compatibil...
 locale 2018-01-14 Robert Dodier Robert Dodier [8fde1a] Commit new version of es.po, as provided by cyp...
 macosx 2020-10-19 Barton Willis Barton Willis [2e410f] o fix typo
 plotting unknown
 share 1 day ago Barton Willis Barton Willis [31a229] Fix for #3041 limit(inf*(zeroa+inf)) => und, sh...
 snap 2024-06-02 Gunter Königsmann Gunter Königsmann [f90a7d] Snappy package: Use the newest core.
 src 1 day ago Barton Willis Barton Willis [73bf03] #4633 integrate(exp(- t) log(t), t, 0, 1) --> i...
 tests 1 day ago Barton Willis Barton Willis [73bf03] #4633 integrate(exp(- t) log(t), t, 0, 1) --> i...
 .gitignore 2023-06-25 Raymond Toy Raymond Toy [e89451] Ignore build-html-index.log
 AUTHORS 2022-11-07 Wolfgang Dautermann Wolfgang Dautermann [d5960e] Change some URLs to https.
 COPYING 2021-06-17 Jaime E. Villate Jaime E. Villate [bf2e56] Use a link to the copy of the DOE letter in our...
 ChangeLog 1 day ago Barton Willis Barton Willis [9f875e] Update ChangeLog for fix to bug 4633.
 INSTALL 2022-03-19 Wolfgang Dautermann Wolfgang Dautermann [74f944] Document how to build the PDF documentation (fo...
 INSTALL.git unknown
 INSTALL.lisp 2021-03-23 Wolfgang Dautermann Wolfgang Dautermann [8457b3] Some spelling fixes.
 INSTALL.win32 2021-04-06 Wolfgang Dautermann Wolfgang Dautermann [042a6e] Changed some URLs to https.
 INSTALL.win32nogcl unknown
 Makefile.am 2024-05-30 Dan Gildea Dan Gildea [aa1ec2] put tests dir last in list
 NEWS 2021-05-29 Wolfgang Dautermann Wolfgang Dautermann [422588] Typos fixed.
 README 2025-07-16 villate villate [93335e] README file: removes reference to "NEWS" which ...
 README-lisps.md 2024-07-28 Wolfgang Dautermann Wolfgang Dautermann [f94c73] GCL 2.6.14 is now the minimum requirement - upd...
 README.developers-howto 2022-11-07 Wolfgang Dautermann Wolfgang Dautermann [d5960e] Change some URLs to https.
 README.external unknown
 README.i18n 2022-04-11 Wolfgang Dautermann Wolfgang Dautermann [ed59d8] Update README.i18n. Remove obsolete ./configure...
 README.rpms 2019-05-28 Gunter Königsmann Gunter Königsmann [ede2aa] We now build a separate rpm package with the em...
 bootstrap unknown
 common-html.mk 2025-08-01 villate villate [e53990] Do not add the HTML version of the manual to th...
 common-info.mk 2025-02-01 Wolfgang Dautermann Wolfgang Dautermann [6b3d5d] Fix wrong 'echo' output during make install.
 common.mk unknown
 configure.ac 3 hours ago Raymond Toy Raymond Toy [c3b583] Use AS_HELP_STRING for languages and other options
 configure.lisp 2021-06-03 Robert Dodier Robert Dodier [1a3405] Changes for configure.lisp and maxima.bat.in to...
 maxima-local.in 2022-07-12 Raymond Toy Raymond Toy [1c6148] Use correct path for htmldir for looking up htm...
 maxima.iss.in unknown
 maxima.spec.in 2025-05-26 Viktor T. Toth Viktor T. Toth [73edee] Minor fixes needed to create functional RPMs
 xmaxima-local.in 2021-06-24 Wolfgang Dautermann Wolfgang Dautermann [848b5b] xmaxima-local: fix command line option processing.

Read Me

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 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^2

For more information on Maxima, see the Maxima web site,
<https://maxima.sourceforge.io>.