ART

Mathomatic[2] is a free, portable, general-purpose computer algebra system (CAS) that can symbolically solve, simplify, combine, and compare algebraic equations, and can perform complex number, modular, and polynomial arithmetic, along with standard arithmetic. It does some symbolic calculus (derivative, extrema, Taylor series, and polynomial integration and Laplace transforms), numerical integration, and handles all elementary algebra except logarithms. Trigonometric functions can be entered and manipulated using complex exponentials, with the GNU m4 preprocessor. Not currently implemented are general functions like f(x), arbitrary-precision and interval arithmetic, and matrices.

Features

Mathomatic excels at solving, differentiating, simplifying, calculating, and visualizing elementary algebra.[3] It also does summations, products, and automated display of calculations of any length by plugging sequential or test values into any formula, then approximating and simplifying before display.

Intermediate results (showing the work) may be displayed by previously typing "set debug 1" (see the session example); this works for solving and almost every command in Mathomatic. "set debug 2" reveals even more details about the work done.

The software does not include a GUI except with the Mathomatic trademark authorized, versions for smartphones and tablets running iOS[4] or Android.[5] The free Mathomatic software, available on the official Mathomatic website,[6] is authorized for use in any other type of software, due to its permissive free software license (GNU LGPL). It is available as a free software library, and as a free console mode application that uses a color command-line interface with pretty-print output that runs in a terminal emulator under any operating system.[3] The console interface is very simple and requires little more than learning the basic algebra notation to get started. All input and output is line-at-a-time ASCII text. By default, input is standard input and output is standard output. Mathomatic is typically compiled with editline or GNU readline for easier input.

There is no programming capability; the interpreter works like an algebraic calculator. Expressions and equations are entered in standard algebraic infix notation. Operations are performed on them by entering simple English commands.

Because all numeric arithmetic is double precision floating point, and round-off error is not tracked, Mathomatic is not suitable for applications requiring high precision, such as astronomical calculations. It is useful for symbolic-numeric calculations of about 14 decimal digits accuracy, although many results will be exact, if possible.

Mathomatic can be used as a floating point or integer arithmetic code generating tool, simplifying and converting equations into optimized assignment statements in the Python, C, and Java programming languages. The output can be made compatible with most other mathematics programs, except TeX and MathML format input/output are currently not available. The ASCII characters that are allowed in Mathomatic variable names is configurable, allowing TeX format variable names.

The Mathomatic source code can be compiled as a symbolic math library with a very simple API, which can be linked to C compatible programs that need to use the Mathomatic symbolic math engine.
Session examples
Another set of examples, from a screenshot

Solving and code generation example, where the work is shown:

1-> x = (a+1)*(b+2)

#1: x = (a + 1)*(b + 2)

1-> set debug 1
Success.
1-> solve for b
level 1: x = (a + 1)*(b + 2)
Subtracting "(a + 1)*(b + 2)" from both sides of the equation:
level 1: x - ((a + 1)*(b + 2)) = 0
Subtracting "x" from both sides of the equation:
level 1: -1*(a + 1)*(b + 2) = -1*x
Dividing both sides of the equation by "-1":
level 1: (a + 1)*(b + 2) = x
Dividing both sides of the equation by "a + 1":
level 1: b + 2 = x/(a + 1)
Subtracting "2" from both sides of the equation:
level 1: b = (x/(a + 1)) - 2
Solve completed:
level 1: b = (x/(a + 1)) - 2
Solve successful:

x
#1: b = ------- - 2
(a + 1)

1-> code C ; output C programming language code
b = ((x/(a + 1.0)) - 2.0);
1-> variables C ; define the variables for the C compiler
double x;
double a;
double b;
1->

History

Development of Mathomatic was started in the year 1986 by George Gesslein II, as an experiment in computerized mathematics.[7] It was originally written in Microsoft C for MS-DOS. Versions 1 and 2 were published by Dynacomp of Rochester, New York in 1987[1] and 1988[8] as a scientific software product for DOS. Afterwards it was released as shareware and then emailware, with a 2D equation graphing program. At the turn of the century, Mathomatic was ported to the GNU C Compiler under Linux and became free software. The graphing program was discontinued; 2D/3D graphing of equations is now accomplished with gnuplot.

The name "Mathomatic" is a portmanteau of "math" and "automatic",[3] and was inspired by the naming and automation of Rog-O-Matic, which was an early experiment in artificial intelligence.
Available platforms

Mathomatic is available for almost all platforms, including Microsoft Windows using MinGW.[9] It is available for Mac OS X,[10][11] for iOS,[4] for Android,[5] and for the Nintendo DS under DSLinux and stand-alone.[12] Fedora Linux,[13] Slackware,[14] Debian,[15] Ubuntu,[16] Gentoo Linux,[17] and all of the main BSD Unix distributions[18][19][20] include Mathomatic as an automatically installable package. There is a port to JavaScript using Emscripten, allowing Mathomatic to run in a web browser.[21] The ports are all maintained by separate individuals.
Requirements

Building from source requires a C compiler with the standard POSIX C libraries. If Mathomatic is compiled with the GCC C compiler or the Tiny C Compiler for a Unix-like operating system, no changes need to be made to the source code. Mathomatic uses no special GCC only code, so it will usually compile easily with any C compiler. Use of the Mathomatic Symbolic Math Library allows mixing programming languages and is operating system independent.[22]

Mathomatic can be ported to any computer with at least 1 megabyte of free RAM. The Mathomatic standard distribution[6] memory requirement defaults to a maximum of 400 megabytes, depending on the size of the equation spaces and how many expressions have been entered. Equation spaces are fixed size arrays that are allocated as needed, the size of which is set during compilation or startup. Each algebraic expression or equation entered at the main prompt is stored in an equation space.

Mathomatic is written to do most symbolic manipulations with memory moves, like an assembly language program. This causes Mathomatic to crash when used with the new LLVM backend, which doesn't seem to like the standard C library function memmove(3). To use Mathomatic with a C compiler that uses an LLVM backend, disable all optimizations with "-O0" on the C compiler command line. Otherwise the regression tests will loop endlessly. This is most certainly an optimization bug in LLVM. To help those trying to debug this optimization error, Mathomatic will fail when LLVM optimizes the simplification of (32^.5) to 4*(2^.5), and the like, going into an endless loop every time.
See also

Free and open-source software portal iconMathematics portal

Comparison of computer algebra systems
Maxima – a more complete CAS with similar functionality, also free

References

The Software catalog: Microcomputer. sGoogle Books (6 February 2007). Retrieved on 29 November 2011.
FSF Free Software Directory entry [1]
George Gesslein II (29 June 2012). "Mathomatic User Guide". Official Mathomatic documentation. Retrieved 13 July 2012.
Mathomatic for iOS. Itunes.apple.com. Retrieved on 10 March 2012.
Mathomatic for Android. Play.google.com. Retrieved on 13 July 2012.
Found on the Mathomatic website. Mathomatic.org. Retrieved on 29 November 2011.
George Gesslein II (29 June 2012). "Mathomatic User Guide". Official Mathomatic documentation (history). Retrieved 13 July 2012.
Intelligent instruments & computer. sGoogle Books. Retrieved on 29 November 2011.
Mathomatic MS-Windows port. Mathomatic.org (4 November 2011). Retrieved on 29 November 2011.
Mathomatic Mac OS X port. Mathomatic.org (4 November 2011). Retrieved on 29 November 2011.
Mathomatic Mac OS X port from MacPorts
Mathomatic ported to the Nintendo DS Archived 28 October 2007 at the Wayback Machine. Blog.davr.org (22 February 1999). Retrieved on 29 November 2011.
The Mathomatic package in Fedora. Admin.fedoraproject.org. Retrieved on 29 November 2011.
Official Slackware port of Mathomatic in SlackBuilds. Slackbuilds.org. Retrieved on 29 November 2011.
All Mathomatic packages in Debian. Packages.debian.org. Retrieved on 31 August 2012.
All Mathomatic packages in Ubuntu Linux. Launchpad.net. Retrieved on 29 November 2011.
Gentoo Packages /package/sci-mathematics/mathomatic. Packages.gentoo.org (25 November 2011). Retrieved on 29 November 2011.
OpenBSD CVS tree for Mathomatic
NetBSD pkgsrc CVS tree for Mathomatic
FreeBSD CVS tree for Mathomatic
"Archived copy". Archived from the original on 14 January 2014. Retrieved 4 August 2013.

George Gesslein II (29 June 2012). "Mathomatic User Guide". Official Mathomatic documentation (developer info). Retrieved 13 July 2012.

Mathomatic on ORMS

External links

Official website
Mathomatic documentation
(in Italian) Additional documentation in Italian for Ubuntu
Mathematics on a UNIX workstation
"Mathomatic". Freecode.
Mathomatic at MacUpdate

Undergraduate Texts in Mathematics

Graduate Texts in Mathematics

Graduate Studies in Mathematics

Mathematics Encyclopedia

World

Index

Hellenica World - Scientific Library

Retrieved from "http://en.wikipedia.org/"
All text is available under the terms of the GNU Free Documentation License