![]() | ||
In mathematics and computer science, the floor and ceiling functions map a real number to the greatest preceding or the least succeeding integer, respectively. More precisely, floor(x) =
Contents
- Notation
- Typesetting
- Definition and properties
- Equivalences
- Relations among the functions
- Quotients
- Nested divisions
- Continuity and series expansions
- Mod operator
- Quadratic reciprocity
- Rounding
- Truncation
- Number of digits
- Factors of factorials
- Beatty sequence
- Eulers constant
- Riemann function
- Formulas for prime numbers
- Solved problems
- Unsolved problem
- Computer implementations
- Spreadsheet software
- References
Notation
Carl Friedrich Gauss introduced the square bracket notation
The floor function is also called the greatest integer or entier (French for "integer") function, and its value at x is called the integral part or integer part of x; for negative values of x, the latter terms are sometimes instead taken to be the value of the ceiling function, i.e., the value of x rounded to an integer towards 0. The language APL uses ⌊x
; other computer languages commonly use notations like entier(x)
(ALGOL), INT(x)
(BASIC, MS Excel), or floor(x)
(C, C++, R, and Python). In mathematics, it can also be written with boldface or double brackets
The ceiling function is usually denoted by ceil(x)
or ceiling(x)
in non-APL computer languages that have a notation for this function. The J Programming Language, a follow on to APL that is designed to use standard keyboard symbols, uses >.
for ceiling and <.
for floor. In mathematics, there is another notation with reversed boldface or double brackets
The fractional part is the sawtooth function, denoted by
For all x,
Typesetting
The floor and ceiling functions are usually typeset with left and right square brackets where the upper (for floor function) or lower (for ceiling function) horizontal bars are missing, and, e.g., in the LaTeX typesetting system these symbols can be specified with the lfloor, floor, lceil and ceil commands in math mode. HTML 4.0 uses the same names: ⌊, ⌋, ⌈, and ⌉. Unicode contains codepoints for these symbols at U+2308
–U+230B
: ⌈x⌉, ⌊x⌋.
Definition and properties
In the following formulas, x and y are real numbers, k, m, and n are integers, and
Floor and ceiling may be defined by the set equations
Since there is exactly one integer in a half-open interval of length one, for any real x there are unique integers m and n satisfying
Then
Equivalences
These formulas can be used to simplify expressions involving floors and ceilings.
In the language of order theory, the floor function is a residuated mapping, that is, part of a Galois connection: it is the upper adjoint of the function that embeds the integers into the reals.
These formulas show how adding integers to the arguments affect the functions:
The above are never true if n is not an integer; however, for every x, y the following inequalities hold:
Relations among the functions
It is clear from the definitions that
In fact, for integers n:
Negating the argument switches floor and ceiling and changes the sign:
and:
Negating the argument complements the fractional part:
The floor, ceiling, and fractional part functions are idempotent:
The result of nested floor or ceiling functions is the innermost function:
Quotients
If m and n are integers and n ≠ 0,
If n is a positive integer
If m is positive
For m = 2 these imply
More generally, for positive m (See Hermite's identity)
The following can be used to convert floors to ceilings and vice versa (m positive)
If m and n are positive and coprime, then
Since the right-hand side is symmetrical in m and n, this implies that
More generally, if m and n are positive,
This is sometimes called a reciprocity law.
Nested divisions
For positive integer n, and arbitrary real numbers m,x:
Continuity and series expansions
None of the functions discussed in this article are continuous, but all are piecewise linear: the functions
Since none of the functions discussed in this article are continuous, none of them have a power series expansion. Since floor and ceiling are not periodic, they do not have uniformly convergent Fourier series expansions. The fractional part function has Fourier series expansion
for x not an integer.
At points of discontinuity, a Fourier series converges to a value that is the average of its limits on the left and the right, unlike the floor, ceiling and fractional part functions: for y fixed and x a multiple of y the Fourier series given converges to y/2, rather than to x mod y = 0. At points of continuity the series converges to the true value.
Using the formula floor(x) = x − {x} gives
for x not an integer.
Mod operator
For an integer x and a positive integer y, the modulo operation, denoted by x mod y, gives the value of the remainder when x is divided by y. This definition can be extended to real x and y, y ≠ 0, by the formula
Then it follows from the definition of floor function that this extended operation satisfies many natural properties. Notably, x mod y is always between 0 and y, i.e.,
if y is positive,
and if y is negative,
Quadratic reciprocity
Gauss's third proof of quadratic reciprocity, as modified by Eisenstein, has two basic steps.
Let p and q be distinct positive odd prime numbers, and let
First, Gauss's lemma is used to show that the Legendre symbols are given by
and
The second step is to use a geometric argument to show that
Combining these formulas gives quadratic reciprocity in the form
There are formulas that use floor to express the quadratic character of small numbers mod odd primes p:
Rounding
For an arbitrary real number
If tie-breaking is away from 0, then the rounding function is
Truncation
The truncation of a nonnegative number is given by
The truncation of any real number can be given by:
Number of digits
The number of digits in base b of a positive integer k is
Factors of factorials
Let n be a positive integer and p a positive prime number. The exponent of the highest power of p that divides n! is given by the formula
where
Beatty sequence
The Beatty sequence shows how every positive irrational number gives rise to a partition of the natural numbers into two sequences via the floor function.
Euler's constant (γ)
There are formulas for Euler's constant γ = 0.57721 56649 ... that involve the floor and ceiling, e.g.
and
Riemann function (ζ)
The fractional part function also shows up in integral representations of the Riemann zeta function. It is straightforward to prove (using integration by parts) that if φ(x) is any function with a continuous derivative in the closed interval [a, b],
Letting φ(n) = n−s for real part of s greater than 1 and letting a and b be integers, and letting b approach infinity gives
This formula is valid for all s with real part greater than −1, (except s = 1, where there is a pole) and combined with the Fourier expansion for {x} can be used to extend the zeta function to the entire complex plane and to prove its functional equation.
For s = σ + i t in the critical strip (i.e. 0 < σ < 1),
In 1947 van der Pol used this representation to construct an analogue computer for finding roots of the zeta function.
Formulas for prime numbers
n is a prime if and only if
Let r > 1 be an integer, pn be the nth prime, and define
Then
There is a number θ = 1.3064... (Mills' constant) with the property that
are all prime.
There is also a number ω = 1.9287800... with the property that
are all prime.
π(x) is the number of primes less than or equal to x. It is a straightforward deduction from Wilson's theorem that
Also, if n ≥ 2,
None of the formulas in this section are of any practical use.
Solved problems
Ramanujan submitted these problems to the Journal of the Indian Mathematical Society.
If n is a positive integer, prove that
(i)
(ii)
(iii)
Unsolved problem
The study of Waring's problem has led to an unsolved problem:
Are there any positive integers k ≥ 6 such that
Mahler has proved there can only be a finite number of such k; none are known.
Computer implementations
Many programming languages (including C, C++, PHP, and Python) provide standard functions for floor and ceiling.
Spreadsheet software
Most spreadsheet programs support some form of a ceiling
function. Although the details differ between programs, most implementations support a second parameter—a multiple of which the given number is to be rounded to. For example, ceiling(2, 3)
rounds 2 up to the nearest multiple of 3, giving 3. The definition of what "round up" means, however, differs from program to program.
Until Excel 2010, Microsoft Excel's ceiling
function was incorrect for negative arguments; ceiling(-4.5) was -5. This has followed through to the Office Open XML file format. Excel 2010 now follows the standard definition. Meanwhile its roundup
function continues to round away from zero.
The OpenDocument file format, as used by OpenOffice.org and others, follows the mathematical definition of ceiling for its ceiling
function, with an optional parameter for Excel compatibility. For example, CEILING(-4.5)
returns −4.