Remainder


In mathematics, the remainder is the amount "left over" after performing some computation. In arithmetic, the remainder is the integer "left over" after dividing one integer by another to produce an integer quotient. In algebra, the remainder is the polynomial "left over" after dividing one polynomial by another. The modulo operation is the operation that produces such a remainder when given a dividend and divisor.
Formally it is also true that a remainder is what is left after subtracting one number from another, although this is more precisely called the difference. This usage can be found in some elementary textbooks; colloquially it is replaced by the expression "the rest" as in "Give me two dollars back and keep the rest." However, the term "remainder" is still used in this sense when a function is approximated by a series expansion and the error expression is referred to as the remainder term.

Integer division

If a and d are integers, with d non-zero, it can be proven that there exist unique integers q and r, such that and. The number q is called the quotient, while r is called the remainder.
See Euclidean division for a proof of this result and division algorithm for algorithms describing how to calculate the remainder.
The remainder, as defined above, is called the least positive remainder or simply the remainder. The integer a is either a multiple of d or lies in the interval between consecutive multiples of d, namely, q⋅d and d.
At times it is convenient to carry out the division so that a is as close as possible to an integral multiple of d, that is, we can write
In this case, s is called the least absolute remainder. As with the quotient and remainder, k and s are uniquely determined except in the case where d = 2n and s = ± n. For this exception we have,
A unique remainder can be obtained in this case by some convention such as always taking the positive value of s.

Examples

In the division of 43 by 5 we have:
so 3 is the least positive remainder. We also have,
and −2 is the least absolute remainder.
These definitions are also valid if d is negative, for example, in the division of 43 by −5,
and 3 is the least positive remainder, while,
and −2 is the least absolute remainder.
In the division of 42 by 5 we have:
and since 2 < 5/2, 2 is both the least positive remainder and the least absolute remainder.
In these examples, the least absolute remainder is obtained from the least positive remainder by subtracting 5, which is d. This holds in general. When dividing by d, either both remainders are positive and therefore equal, or they have opposite signs. If the positive remainder is r1, and the negative one is r2, then

For floating-point numbers

When a and d are floating-point numbers, with d non-zero, a can be divided by d without remainder, with the quotient being another floating-point number. If the quotient is constrained to being an integer, however, the concept of remainder is still necessary. It can be proved that there exists a unique integer quotient q and a unique floating-point remainder r such that a = qd + r with 0 ≤ r < |d|.
Extending the definition of remainder for floating-point numbers as described above is not of theoretical importance in mathematics; however, many programming languages implement this definition, see modulo operation.

In programming languages

While there are no difficulties inherent in the definitions, there are implementation issues that arise when negative numbers are involved in calculating remainders. Different programming languages have adopted different conventions:
Euclidean division of polynomials is very similar to Euclidean division of integers and leads to polynomial remainders. Its existence is based on the following theorem: Given two univariate polynomials a and b defined over a field, there exist two polynomials q and r which satisfy:
where
where "deg" denotes the degree of the polynomial Moreover, q and r are uniquely determined by these relations.
This differs from the Euclidean division of integers in that, for the integers, the degree condition is replaced by the bounds on the remainder r The similarity of Euclidean division for integers and also for polynomials leads one to ask for the most general algebraic setting in which Euclidean division is valid. The rings for which such a theorem exists are called Euclidean domains, but in this generality uniqueness of the quotient and remainder are not guaranteed.
Polynomial division leads to a result known as the Remainder theorem: If a polynomial f is divided by xk, the remainder is the constant r = f.