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
The plus and minus signs, and , are mathematical symbols used to represent the notions of positive and negative, respectively. In addition, represents the operation of addition, which results in a sum, while represents subtraction, resul ...
(or, in computer representation, a
sign bit
In computer science, the sign bit is a bit in a signed number representation that indicates the sign of a number. Although only signed numeric data types have a sign bit, it is invariably located in the most significant bit position, so the te ...
); 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
Ternary (from Latin ''ternarius'') or trinary is an adjective meaning "composed of three items". It can refer to:
Mathematics and logic
* Ternary numeral system, a base-3 counting system
** Balanced ternary, a positional numeral system, usef ...
(base 3), and negaquaternary (base −4) to
quaternary (base 4).
Example
Consider what is meant by the representation in the negadecimal system, whose base is −10:
The representation (which is intended to be negadecimal notation) is equivalent to in decimal notation, because 10,000 + (−2,000) + 200 + (−40) + 3 = .
;Remark
On the other hand, in decimal would be written in negadecimal.
History
Negative numerical bases were first considered by
Vittorio Grünwald
Vittorio Grünwald (Verona, Italy, 13 June 1855 – Florence, Italy, March 1943) was an Italian professor of mathematics and German language. His father Guglielmo (Willhelm) Grünwald (son of Aronne and Regina) was Hungarian, his mother Fortuna M ...
in an 1885 monograph published in ''Giornale di Matematiche di Battaglini''. 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 and studied in more detail by
Zdzisław Pawlak
Zdzislaw I. Pawlak (10 November 1926 – 7 April 2006) was a Polish mathematician and computer scientist. He was affiliated with several organization, including the Polish Academy of Sciences and the Warsaw School of Information Technology. H ...
and A. Wakulicz in 1957.
Negabinary was implemented in the early
Polish
Polish may refer to:
* Anything from or related to Poland, a country in Europe
* Polish language
* Poles, people from Poland or of Polish descent
* Polish chicken
*Polish brothers (Mark Polish and Michael Polish, born 1970), American twin screenwr ...
computer
BINEG (and
UMC), built 1957–59, based on ideas by Z. Pawlak and A. Lazarkiewicz from the
Mathematical Institute in
Warsaw
Warsaw ( pl, Warszawa, ), officially the Capital City of Warsaw,, abbreviation: ''m.st. Warszawa'' is the capital and largest city of Poland. The metropolis stands on the River Vistula in east-central Poland, and its population is official ...
. Implementations since then have been rare.
Notation and use
Denoting the base as , every
integer
An integer is the number zero (), a positive natural number (, , , etc.) or a negative integer with a minus sign ( −1, −2, −3, etc.). The negative numbers are the additive inverses of the corresponding positive numbers. In the language ...
can be written uniquely as
:
where each digit is an integer from 0 to and the leading digit is (unless ). The base expansion of is then given by the string .
Negative-base systems may thus be compared to
signed-digit representation
In mathematical notation for numbers, a signed-digit representation is a positional numeral system with a set of signed digits used to encode the integers.
Signed-digit representation can be used to accomplish fast addition of integers because ...
s, such as
balanced ternary
Balanced ternary is a ternary numeral system (i.e. base 3 with three digits) that uses a balanced signed-digit representation of the integers in which the digits have the values −1, 0, and 1. This stands in contrast to the standard (unbalanc ...
, 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,
:
and is represented by 10001 in binary and 10001 in negabinary.
Some numbers with their expansions in a number of positive and corresponding negative bases are:
Note that, with the exception of nega balanced ternary, the base expansions of negative integers have an
even number
In mathematics, parity is the property of an integer of whether it is even or odd. An integer is even if it is a multiple of two, and odd if it is not.. For example, −4, 0, 82 are even because
\begin
-2 \cdot 2 &= -4 \\
0 \cdot 2 &= 0 \\
4 ...
of digits, while the base expansions of the non-negative integers have an
odd number
In mathematics, parity is the property of an integer of whether it is even or odd. An integer is even if it is a multiple of two, and odd if it is not.. For example, −4, 0, 82 are even because
\begin
-2 \cdot 2 &= -4 \\
0 \cdot 2 &= 0 \\
41 ...
of digits.
Calculation
The base expansion of a number can be found by repeated division by , recording the non-negative remainders in
, and concatenating those remainders, starting with the last. Note that if is with remainder , then and therefore . To arrive at the correct conversion, the value for must be chosen such that is non-negative and minimal. For the fourth line of the following example this means that
:
has to be chosen — and not
nor
For example, to convert 146 in decimal to negaternary:
:
Reading the remainders backward we obtain the negaternary representation of 146
10: 21102
–3.
:Proof: (((2 · (–3) + 1) · (–3) + 1) · (–3) + 0) · (–3) + 2 = 146
10.
Note that in most
programming languages
A programming language is a system of notation for writing computer program, computer programs. Most programming languages are text-based formal languages, but they may also be visual programming language, graphical. They are a kind of computer ...
, 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.
Example implementation code
To negabinary
= C#
=
static string ToNegabinary(int value)
= C++
=
auto to_negabinary(int value)
To negaternary
= C#
=
static string negaternary(int value)
= Visual Basic .NET
=
Private Shared Function ToNegaternary(value As Integer) As String
Dim result As String = String.Empty
While value <> 0
Dim remainder As Integer = value Mod -3
value /= -3
If remainder < 0 Then
remainder += 3
value += 1
End If
result = remainder.ToString() & result
End While
Return result
End Function
= Python
=
def negaternary(i: int) -> str:
"""Decimal to negaternary."""
if i 0:
digits = 0" else:
digits = []
while i != 0:
i, remainder = divmod(i, -3)
if remainder < 0:
i, remainder = i + 1, remainder + 3
digits.append(str(remainder))
return "".join(digits :-1
>>> negaternary(1000)
'2212001'
= Common Lisp
=
(defun negaternary (i)
(if (zerop i)
"0"
(let ((digits "")
(rem 0))
(loop while (not (zerop i)) do
(progn
(multiple-value-setq (i rem) (truncate i -3))
(when (minusp rem)
(incf i)
(incf rem 3))
(setf digits (concatenate 'string (write-to-string rem) digits))))
digits)))
To any negative base
= Java
=
public String negativeBase(int integer, int base)
= AutoLisp
=
from
10 -2
1 (one, unit, unity) is a number representing a single or the only entity. 1 is also a numerical digit and represents a single unit of counting or measurement. For example, a line segment of ''unit length'' is a line segment of length 1. ...
interval:
(defun negabase (num baz / dig rst)
;; NUM is any number. BAZ is any number in the interval 10, -2
1 (one, unit, unity) is a number representing a single or the only entity. 1 is also a numerical digit and represents a single unit of counting or measurement. For example, a line segment of ''unit length'' is a line segment of length 1. ...
;;
;; NUM and BAZ will be truncated to an integer if they're floats (e.g. 14.25
;; will be truncated to 14, -123456789.87 to -123456789, etc.).
(if (and (numberp num)
(numberp baz)
(<= (fix baz) -2)
(> (fix baz) -11))
(progn
(setq baz (float (fix baz))
num (float (fix num))
dig (if (= num 0) "0" ""))
(while (/= num 0)
(setq rst (- num (* baz (setq num (fix (/ num baz))))))
(if (minusp rst)
(setq num (1+ num)
rst (- rst baz)))
(setq dig (strcat (itoa (fix rst)) dig)))
dig)
(progn
(prompt
(cond
((and (not (numberp num))
(not (numberp baz)))
"\nWrong number and negabase.")
((not (numberp num))
"\nWrong number.")
((not (numberp baz))
"\nWrong negabase.")
(t
"\nNegabase must be inside 10 -2
1 (one, unit, unity) is a number representing a single or the only entity. 1 is also a numerical digit and represents a single unit of counting or measurement. For example, a line segment of ''unit length'' is a line segment of length 1. ...
interval.")))
(princ))))
= PHP
=
The conversion from integer to some negative base:
function toNegativeBase($no, $base)
= Visual Basic .NET
=
Function toNegativeBase(Number As Integer , base As Integer) As System.Collections.Generic.List(Of Integer)
Dim digits As New System.Collections.Generic.List(Of Integer)
while Number <> 0
Dim remainder As Integer= Number Mod base
Number = CInt(Number / base)
if remainder < 0 then
remainder += system.math.abs(base)
Number+=1
end if
digits.Insert(0, remainder)
end while
return digits
end function
Shortcut calculation
The following algorithms assume that
# the input is available in
bitstring
A bit array (also known as bitmask, bit map, bit set, bit string, or bit vector) is an array data structure that compactly stores bits. It can be used to implement a simple set data structure. A bit array is effective at exploiting bit-level ...
s and coded in (base +2; digits in
) (as in most of today's digital computers),
# there are add (+) and xor (^) operations which operate on such bitstrings (as in most of today's digital computers),
# the set
of output digits is standard, i. e.
with base
,
# the output is coded in the same bitstring format, but the meaning of the places is another one.
To negabinary
The conversion to ''negabinary'' (base −2; digits in
) allows a remarkable shortcut
(C implementation):
unsigned int toNegaBinary(unsigned int value) // input in standard binary
Due to D. Librik (Szudzik). The bitwise XOR portion is originally due to
Schroeppel (1972).
JavaScript port for the same shortcut calculation:
function toNegaBinary(number)
To negaquaternary
The conversion to ''negaquaternary'' (base −4; digits in
) allows a similar shortcut (C implementation):
unsigned int toNegaQuaternary(unsigned int value) // input in standard binary
JavaScript port for the same shortcut calculation:
function toNegaQuaternary(number)
Arithmetic operations
The following describes the arithmetic operations for negabinary; calculations in larger bases are similar.
Addition
Adding negabinary numbers proceeds bitwise, starting from the
least significant bit
In computing, bit numbering is the convention used to identify the bit positions in a binary number.
Bit significance and indexing
In computing, the least significant bit (LSB) is the bit position in a binary integer representing the binary ...
s; the bits from each addend are summed with the (
balanced ternary
Balanced ternary is a ternary numeral system (i.e. base 3 with three digits) that uses a balanced signed-digit representation of the integers in which the digits have the values −1, 0, and 1. This stands in contrast to the standard (unbalanc ...
) 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:
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).
Another method
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 0 1 0 0 0
Carry: 1 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
Negabinary full adder
A
full adder circuit can be designed to add numbers in negabinary. The following logic is used to calculate the sum and carries:
:
:
:
Incrementing negabinary numbers
Incrementing a negabinary number can be done by using the following formula:
:
Subtraction
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, .
Multiplication and division
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.
Comparing negabinary numbers
It is possible to compare negabinary numbers by slightly adjusting a normal unsigned
binary comparator. When comparing the numbers
and
, invert each odd positioned bit of both numbers.
After this, compare
and
using a standard unsigned comparator.
Fractional numbers
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.
Non-unique representations
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
the biggest digit and
:
we have
:
as well as
:
So every number
with a
terminating fraction added has two distinct representations.
For example, in negaternary, i.e.
and
, there is
:
.
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
:
with
Imaginary base
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 integer
In number theory, a Gaussian integer is a complex number whose real and imaginary parts are both integers. The Gaussian integers, with ordinary addition and multiplication of complex numbers, form an integral domain, usually written as \mathbf /ma ...
s.
Donald Knuth
Donald Ervin Knuth ( ; born January 10, 1938) is an American computer scientist, mathematician, and professor emeritus at Stanford University. He is the 1974 recipient of the ACM Turing Award, informally considered the Nobel Prize of computer ...
proposed the
quater-imaginary base (base 2i) in 1955.
[D. Knuth. The Art of Computer Programming. Volume 2, 3rd Edition. Addison-Wesley. pp. 205, "Positional Number Systems"]
See also
*
Quater-imaginary base
*
Binary
*
Balanced ternary
Balanced ternary is a ternary numeral system (i.e. base 3 with three digits) that uses a balanced signed-digit representation of the integers in which the digits have the values −1, 0, and 1. This stands in contrast to the standard (unbalanc ...
*
Quaternary numeral system
*
Numeral system
A numeral system (or system of numeration) is a writing system for expressing numbers; that is, a mathematical notation for representing numbers of a given set, using digits or other symbols in a consistent manner.
The same sequence of symb ...
s
*
1 − 2 + 4 − 8 + ⋯
1 (one, unit, unity) is a number representing a single or the only entity. 1 is also a numerical digit and represents a single unit of counting or measurement. For example, a line segment of ''unit length'' is a line segment of length 1. ...
(
p-adic numbers
In mathematics, the -adic number system for any prime number extends the ordinary arithmetic of the rational numbers in a different way from the extension of the rational number system to the real and complex number systems. The extens ...
)
References
Further reading
*
External links
*
*{{MathWorld, title=Negadecimal, urlname=Negadecimal
Non-standard positional numeral systems
Computer arithmetic