Arbitrary Precision Calculator

This is an arbitrary precision calculator implemented in Java.

It works like any normal calculator, and allows calculating results to millions of digits of precision. In addition, it supports various special mathematical functions.


alt="Your browser understands the <applet> tag but isn't running the applet, for some reason." Your browser is completely ignoring the <applet> tag. The calculator understands basic operations, which are:

+addition
-subtraction
*multiplication
/division
%modulus
^power

For example:

1 + 2 * 3 ^ 4

calculates 1 + 2 * 34, which is 163.


More detailed instructions available are here.

This calculator taken from the Apfloat for Java package, by Mikko Tommila, which is distributed under the GNU Lesser General Public License.