Example

Consider now the case where a single precision number is represented by 32 bits, one for the sign, 7 for the exponent and 24 for the mantissa. Then the 32 bit combination, 0 0111010 101100110000010000000000, represents the positive number [Maple Math] with [Maple Math] and [Maple Math] in binary notation. (We assume [Maple Math] and [Maple Math] ). In other words,

> e1:=convert(0111010,decimal,binary);

[Maple Math]

> Mantissa:=convert(101100110000010000000000,decimal,binary);

[Maple Math]

> number:=evalf(Mantissa*16^(e1-64));

[Maple Math]