Difference between revisions of "Mathomatic"

From Christoph's Personal Wiki
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
  
 
The current version number is: '''12.7.6''' (Released 2007-09-06).
 
The current version number is: '''12.7.6''' (Released 2007-09-06).
 +
 +
==Examples==
 +
1-> x = (a + 1) * (b + 2)
 +
#1: x = (a + 1)*(b + 2)
 +
1-> b
 +
          x
 +
#1: b = ----- - 2
 +
        (a + 1)
 +
1-> code python
 +
b = ((x / (a + 1.0)) - 2.0)
  
 
==Mathomatic command reference==
 
==Mathomatic command reference==
 
  see: [http://mathomatic.orgserve.de/math/doc/am.html Mathomatic Command Reference]
 
  see: [http://mathomatic.orgserve.de/math/doc/am.html Mathomatic Command Reference]
 +
 +
==See also==
 +
*[http://integrals.wolfram.com/index.jsp The Wolfram Integrator]
  
 
==External links==
 
==External links==

Latest revision as of 20:15, 9 September 2007

Mathomatic is a portable, general purpose CAS (Computer Algebra System) written entirely in C. It is free software, published under the GNU Lesser General Public License (LGPL version 2.1). This is a console mode application that does symbolic math and quick calculations. It compiles and runs under any operating system with a C compiler. There are no dependencies other than the standard C libraries. Mathomatic has been under development since 1986 and now stands at 16,000 lines of code (including comments).

The current version number is: 12.7.6 (Released 2007-09-06).

Examples

1-> x = (a + 1) * (b + 2)
#1: x = (a + 1)*(b + 2)
1-> b
          x
#1: b = ----- - 2
       (a + 1)
1-> code python
b = ((x / (a + 1.0)) - 2.0)

Mathomatic command reference

see: Mathomatic Command Reference

See also

External links