A negative base (or negative radix) may be used to construct a non-standard positional numeral system. Like other place-value systems, each position holds multiples of the appropriate power of the system's base; but that base is negative—that is to say, the base is equal to for some natural number .
Negative-base systems can accommodate all the same numbers as standard place-value systems, but both positive and negative numbers are represented without the use of a minus sign (or, in computer representation, a sign bit); this advantage is countered by an increased complexity of arithmetic operations. The need to store the information normally contained by a negative sign often results in a negative-base number being one digit longer than its positive-base equivalent.
The common names for negative-base positional numeral systems are formed by prefixing nega- to the name of the corresponding positive-base system; for example, negadecimal (base −10) corresponds to decimal (base 10), negabinary (base −2) to binary (base 2), negaternary (base −3) to ternary (base 3), and negaquaternary (base −4) to quaternary (base 4).[1] [2]
Consider what is meant by the representation in the negadecimal system, whose base is −10:
+ Multiples of | |||||
1 | 2 | 2 | 4 | 3 |
Negative numerical bases were first considered by Vittorio Grünwald in an 1885 monograph published in Giornale di Matematiche di Battaglini.[3] Grünwald gave algorithms for performing addition, subtraction, multiplication, division, root extraction, divisibility tests, and radix conversion. Negative bases were later mentioned in passing by A. J. Kempner in 1936[4] and studied in more detail by Zdzisław Pawlak and A. Wakulicz in 1957.[5]
Negabinary was implemented in the early Polish computer BINEG (and UMC), built 1957–59, based on ideas by Z. Pawlak and A. Lazarkiewicz from the Mathematical Institute in Warsaw.[6] Implementations since then have been rare.
zfp, a floating-point compression algorithm from the Lawrence Livermore National Laboratory, uses negabinary to store numbers. According to zfp's documentation:[7]
Unlike sign-magnitude representations, the leftmost one-bit in negabinary simultaneously encodes the sign and approximate magnitude of a number. Moreover, unlike two’s complement, numbers small in magnitude have many leading zeros in negabinary regardless of sign, which facilitates encoding.
Denoting the base as, every integer can be written uniquely as
a=
n | |
\sum | |
i=0 |
di(-r)i
Negative-base systems may thus be compared to signed-digit representations, such as balanced ternary, where the radix is positive but the digits are taken from a partially negative range. (In the table below the digit of value −1 is written as the single character T.)
Some numbers have the same representation in base as in base . For example, the numbers from 100 to 109 have the same representations in decimal and negadecimal. Similarly,
17=24+20=(-2)4+(-2)0
Some numbers with their expansions in a number of positive and corresponding negative bases are:
Decimal | Negadecimal | Binary | Negabinary | Ternary | Negaternary | Balanced Ternary | Balanced Negaternary | Quaternary | Negaquaternary | |
---|---|---|---|---|---|---|---|---|---|---|
−15 | 25 | −1111 | 110001 | −120 | 1220 | T110 | 11T0 | −33 | 1301 | |
⋮ | ||||||||||
−5 | 15 | −101 | 1111 | −12 | 21 | T11 | TT1 | −11 | 23 | |
−4 | 16 | −100 | 1100 | −11 | 22 | TT | 1T | −10 | 10 | |
−3 | 17 | −11 | 1101 | −10 | 10 | T0 | 10 | −3 | 11 | |
−2 | 18 | −10 | 10 | −2 | 11 | T1 | 11 | −2 | 12 | |
−1 | 19 | −1 | 11 | −1 | 12 | T | T | −1 | 13 | |
0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | |
2 | 2 | 10 | 110 | 2 | 2 | 1T | TT | 2 | 2 | |
3 | 3 | 11 | 111 | 10 | 120 | 10 | T0 | 3 | 3 | |
4 | 4 | 100 | 100 | 11 | 121 | 11 | T1 | 10 | 130 | |
5 | 5 | 101 | 101 | 12 | 122 | 1TT | 11T | 11 | 131 | |
6 | 6 | 110 | 11010 | 20 | 110 | 1T0 | 110 | 12 | 132 | |
7 | 7 | 111 | 11011 | 21 | 111 | 1T1 | 111 | 13 | 133 | |
8 | 8 | 1000 | 11000 | 22 | 112 | 10T | 10T | 20 | 120 | |
9 | 9 | 1001 | 11001 | 100 | 100 | 100 | 100 | 21 | 121 | |
10 | 190 | 1010 | 11110 | 101 | 101 | 101 | 101 | 22 | 122 | |
11 | 191 | 1011 | 11111 | 102 | 102 | 11T | 1TT | 23 | 123 | |
12 | 192 | 1100 | 11100 | 110 | 220 | 110 | 1T0 | 30 | 110 | |
13 | 193 | 1101 | 11101 | 111 | 221 | 111 | 1T1 | 31 | 111 | |
14 | 194 | 1110 | 10010 | 112 | 222 | 1TTT | TT1T | 32 | 112 | |
15 | 195 | 1111 | 10011 | 120 | 210 | 1TT0 | TT10 | 33 | 113 | |
16 | 196 | 10000 | 10000 | 121 | 211 | 1TT1 | TT11 | 100 | 100 | |
17 | 197 | 10001 | 10001 | 122 | 212 | 1T0T | TT0T | 101 | 101 | |
18 | 198 | 10010 | 10110 | 200 | 200 | 1T00 | TT00 | 102 | 102 |
Note that, with the exception of nega balanced ternary, the base expansions of negative integers have an even number of digits, while the base expansions of the non-negative integers have an odd number of digits.
The base expansion of a number can be found by repeated division by, recording the non-negative remainders in
\{0,1,\ldots,r-1\}
-5 ÷ (-3)=2~remainder~1
=3~remainder~4
=1~remainder~-2.
For example, to convert 146 in decimal to negaternary:
\begin{array}{rr} 146 ÷ (-3)=&-48~remainder~2\\ -48 ÷ (-3)=&16~remainder~0\\ 16 ÷ (-3)=&-5~remainder~1\\ -5 ÷ (-3)=&2~remainder~1\\ 2 ÷ (-3)=&0~remainder~2 \end{array}
Proof: -3 · (-3 · (-3 · (-3 · (2) + 1) + 1) + 0) + 2 = (((2 · (–3) + 1) · (–3) + 1) · (–3) + 0) · (–3) + 2
= 14610.Reading the remainders forward we can obtain the negaternary least-significant-digit-first representation.
Proof: 2 + (0 + (1 + (1 + (2) · -3 ) · -3) · -3 ) · -3  = 14610.
Note that in most programming languages, the result (in integer arithmetic) of dividing a negative number by a negative number is rounded towards 0, usually leaving a negative remainder. In such a case we have . Because, is the positive remainder. Therefore, to get the correct result in such case, computer implementations of the above algorithm should add 1 and to the quotient and remainder respectively.
The following algorithms assume that
\{0,1\}
D
D=\{0,|b|-1\}
b\in\{-2,-4\}
The conversion to negabinary (base −2; digits in
\{0,1\}
JavaScript port for the same shortcut calculation:
The algorithm is first described by Schroeppel in the HAKMEM (1972) as item 128. The Wolfram MathWorld documents a version in the Wolfram Language by D. Librik (Szudzik).[8]
The conversion to negaquaternary (base −4; digits in
\{0,1,2,3\}
JavaScript port for the same shortcut calculation:
The following describes the arithmetic operations for negabinary; calculations in larger bases are similar.
Adding negabinary numbers proceeds bitwise, starting from the least significant bits; the bits from each addend are summed with the (balanced ternary) carry from the previous bit (0 at the LSB). This sum is then decomposed into an output bit and carry for the next iteration as show in the table:
Sum | Output | Comment | ||||
---|---|---|---|---|---|---|
Bit | Carry | |||||
−2 | 010 | 0 | 1 | 01 | −2 occurs only during subtraction. | |
−1 | 011 | 1 | 1 | 01 | ||
0 | 000 | 0 | 0 | 00 | ||
1 | 001 | 1 | 0 | 00 | ||
2 | 110 | 0 | −1 | 11 | ||
3 | 111 | 1 | −1 | 11 | 3 occurs only during addition. |
The second row of this table, for instance, expresses the fact that −1 = 1 + 1 × −2; the fifth row says 2 = 0 + −1 × −2; etc.
As an example, to add 1010101 (1 + 4 + 16 + 64 = 85) and 1110100 (4 + 16 − 32 + 64 = 52),
Carry: 1 −1 0 −1 1 −1 0 0 0 First addend: 1 0 1 0 1 0 1 Second addend: 1 1 1 0 1 0 0 + -------------------------- Number: 1 −1 2 0 3 −1 2 0 1 Bit (result): 1 1 0 0 1 1 0 0 1 Carry: 0 1 −1 0 −1 1 −1 0 0
so the result is 110011001 (1 − 8 + 16 − 128 + 256 = 137).
While adding two negabinary numbers, every time a carry is generated an extra carry should be propagated to next bit. Consider same example as above
Extra carry: 1 1 1 0 1 0 0 0 Carry: 0 1 1 0 1 0 0 0 First addend: 1 0 1 0 1 0 1 Second addend: 1 1 1 0 1 0 0 + -------------------------- Answer: 1 1 0 0 1 1 0 0 1
A full adder circuit can be designed to add numbers in negabinary. The following logic is used to calculate the sum and carries:[9]
si=ai ⊕ bi ⊕
+ | |
c | |
i |
⊕
- | |
c | |
i |
+ | |
c | |
i+1 |
=\overline{ai}\overline{bi}\overline{c
- | |
i |
- | |
c | |
i+1 |
=aibi
-} | |
\overline{c | |
i |
+(ai ⊕ bi)c
+ | |
i |
-} | |
\overline{c | |
i |
Incrementing a negabinary number can be done by using the following formula:[10]
2x ⊕ ((2x ⊕ x)+1)
(The operations in this formula are to be interpreted as operations on regular binary numbers. For example,
2x
To subtract, multiply each bit of the second number by −1, and add the numbers, using the same table as above.
As an example, to compute 1101001 (1 − 8 − 32 + 64 = 25) minus 1110100 (4 + 16 − 32 + 64 = 52),
Carry: 0 1 −1 1 0 0 0 First number: 1 1 0 1 0 0 1 Second number: −1 −1 −1 0 −1 0 0 + -------------------- Number: 0 1 −2 2 −1 0 1 Bit (result): 0 1 0 0 1 0 1 Carry: 0 0 1 −1 1 0 0
so the result is 100101 (1 + 4 −32 = −27).
Unary negation,, can be computed as binary subtraction from zero, .
Shifting to the left multiplies by −2, shifting to the right divides by −2.
To multiply, multiply like normal decimal or binary numbers, but using the negabinary rules for adding the carry, when adding the numbers.
First number: 1 1 1 0 1 1 0 Second number: 1 0 1 1 0 1 1 × ------------------------------------- 1 1 1 0 1 1 0 1 1 1 0 1 1 0 1 1 1 0 1 1 0 1 1 1 0 1 1 0 1 1 1 0 1 1 0 + ------------------------------------- Carry: 0 −1 0 −1 −1 −1 −1 −1 0 −1 0 0 Number: 1 0 2 1 2 2 2 3 2 0 2 1 0 Bit (result): 1 0 0 1 0 0 0 1 0 0 0 1 0 Carry: 0 −1 0 −1 −1 −1 −1 −1 0 −1 0 0
For each column, add carry to number, and divide the sum by −2, to get the new carry, and the resulting bit as the remainder.
It is possible to compare negabinary numbers by slightly adjusting a normal unsigned binary comparator. When comparing the numbers
A
B
A
B
Base representation may of course be carried beyond the radix point, allowing the representation of non-integer numbers.
As with positive-base systems, terminating representations correspond to fractions where the denominator is a power of the base; repeating representations correspond to other rationals, and for the same reason.
Unlike positive-base systems, where integers and terminating fractions have non-unique representations (for example, in decimal 0.999... = 1) in negative-base systems the integers have only a single representation. However, there do exist rationals with non-unique representations. For the digits with
t:=r-1=-b-1
T:=0.\overline{01}b=
infty | |
\sum | |
i=1 |
b-2i=
1{b | |
2-1} |
=
1{r | |
2-1} |
0.\overline{0t
1.\overline{t0}b=1+tbT=
(r2-1)+(r-1)b | |
r2-1 |
=
1{r+1}. | |
1{r+1}+z | |
z\in\Zr\Z
For example, in negaternary, i.e.
b=-3
t=2
1.\overline{02}(-3)=
5 | |
4 |
=2.\overline{20}(-3)
Such non-unique representations can be found by considering the largest and smallest possible representations with integer parts 0 and 1 respectively, and then noting that they are equal. (Indeed, this works with any integer-base system.) The rationals thus non-uniquely expressible are those of form
z(r+1)+1 | |
bi(r+1) |
z,i\in\Z.
See main article: Complex-base system.
Just as using a negative base allows the representation of negative numbers without an explicit negative sign, using an imaginary base allows the representation of Gaussian integers. Donald Knuth proposed the quater-imaginary base (base 2i) in 1955.[12]