Basics

Numbers are represented in the form [Maple Math] with [Maple Math] the 'Mantissa', [Maple Math] the number base (a fixed property of the computer) and [Maple Math] an integer exponent. Often, the exponent is expressed as [Maple Math] where [Maple Math] is, again, a machine constant.

In addition, these numbers are stored in binary form, whereby each digit in the number represents a coefficient of a power of 2 rather then the coefficient of a power of 10 as in the common decimal system. For example:

> convert(55,binary);

[Maple Math]

> 1*2^5+1*2^4+0*2^3+1*2^2+1*2^1+1*2^0;

[Maple Math]

> convert(110111,decimal,binary);

[Maple Math]

Binary notation is used because it can easily be represented electronically: the only two possible digits are 0 or1, or charged or not charged, on or off.