Characteristic and Mantissa

Summary: §112–§113 of Chapter 6: the integer–fractional split of a base-10 logarithm. The integer part — the characteristic — equals one less than the digit count of the number. The fractional part — the mantissa — depends only on the digit pattern of the number, not on where the decimal point sits. Two numbers with the same mantissa share digits and differ only by a power of 10.

Sources: chapter6 (§112–§113)

Last updated: 2026-04-26


The split

For , write the common-logarithm

  • is the characteristic.
  • is the mantissa.

This decomposition is unique (source: chapter6, §112).

The characteristic counts digits

For with digits in its integer part, , so and hence .

The characteristic of a number is one less than the number of digits which express the number.

(source: chapter6, §112)

Examples:

DigitsCharacteristic
10
54
76

Conversely, from a tabulated , one reads off characteristic , hence has 8 integer digits — without computing itself (source: chapter6, §112).

For the characteristic is negative.

The mantissa is invariant under

Multiplying by adds to — i.e. it changes the characteristic by and leaves the mantissa unchanged. So the mantissa encodes only the digit string of , independent of decimal placement (source: chapter6, §113):

Same mantissa same digit string , with the decimal point shifted according to the characteristic. From , the mantissa gives the digit string , and the characteristic 2 says the integer part has 3 digits, giving (source: chapter6, §113).

Negative characteristics by convention

A logarithm like has integer part and fractional part . To preserve the digit-pattern reading of the mantissa, tables write this as

— i.e. with characteristic “diminished by 10.” Likewise is written as , as , etc. (source: chapter6, §113). This convention keeps the mantissa in and the table lookup unchanged.

Why this is useful

The split is what makes a printed log table small enough to be portable. The mantissa table lists, for every digit pattern from 1 to (typically) 100,000, the seven-place mantissa. The characteristic is computed by inspection of the number itself. Together:

  • For multiplication: add logs, separately combining characteristics and mantissas; carry from the mantissa to the characteristic on overflow.
  • For finding a number from its log: read the mantissa table backward to recover the digit string; the characteristic positions the decimal point.

§113’s closing example:

To find the digit count of the 25th term of the progression (each term the square of its predecessor):

  1. The terms are . The 25th term is .
  2. .
  3. .
  4. Characteristic 5050445 ⇒ the number has 5,050,446 digits.
  5. Mantissa ⇒ the leading digits are ; pushing to more decimal places of , Euler reports the eleven leading digits as (source: chapter6, §113).

The actual 5,050,446-digit number is uncomputable in any direct sense at the time — but its digit count and leading digits drop out of one multiplication and a table lookup. This is the kind of computation Chapter 6’s machinery makes routine.