User:Virginia-American/Sandbox/Floor and Ceiling

From Wikipedia, the free encyclopedia
The floor function
The ceiling function

In mathematics and computer science, the floor and ceiling functions map a real number to the next smallest or next largest integer. More precisely, floor(x) is the largest integer not greater than x and ceiling(x) is the smallest integer not less than x.[1]

This article also discusses two related functions, the fractional part function and the mod operator.

Synonyms and Notations[edit]

Gauss introduced the square bracket notation [x] for the floor function in his third proof of quadratic reciprocity (1808).[2] This remained the standard[3] in mathematics until Iverson introduced the names "floor" and "ceiling" and the corresponding notations and in his 1962 programming language APL.[4][5] Both notations are now used in mathematics; this article follows Iverson.[6]

The floor function is also called the greatest integer or entier (French for "integer") function, and the floor of a nonnegative x may be called the integral part or integral value of x. Computer languages (other than APL) commonly use ENTIER(x) (Algol), floor(x), or int(x) (C and C++).[7]

The ceiling function is usually denoted by ceil(x) or ceiling(x) in non-APL computer languages; there is no common alternative to Iverson's in mathematics.

Fractional part[edit]

The fractional part function, denoted by for real x is defined by the formula[8]

For all x,

If x is positive, the floor of x is simply x with everything to the right of the decimal point replaced with 0, and the fractional part is x with everything to the left of the decimal point replaced with 0.

mod operator[edit]

The mod operator, denoted by x mod y for real x and y, y ≠ 0, is defined by the formula

x mod y is always between 0 and y; i.e.

if y is positive,

and if y is negative,


If x is an integer and y is a positive integer,

Examples[edit]

  −2.7 −2 12/5 2.7
−3 −2 2 2
−2 −2 3 3
0.3 0 2/5 = 0.4 0.7

Formulas[edit]

 is the set of integers (positive, negative, and zero).
 
In these formulas, x and y are real numbers and k, m, and n are integers.

Definitions[edit]

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 such that

Then   and   may also be taken as the definition of floor and ceiling.

As stated above,

Equivalences[edit]

These formulas can be used to simplify expressions involving floors and ceilings.[9]

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 affects the functions.

The above may or may not be true for if n is not an integer, but we do have:

Relations among the functions[edit]

It is clear from the definitions that

  with equality if and only if x is an integer, i.e.

Negating the argument switches floor and ceiling and changes the sign:

  i.e.


Negating the argument complements the fractional part:

The floor, ceiling, and fractional part functions are idempotent:

In fact, since for integers n  

For fixed y, x mod y is idempotent:

Also, from the definitions,

Quotients[edit]

If n ≠ 0,


If n is positive[10]


If m is positive[11]

For m = 2 these imply

.


More generally,[12] for positive m


These can be used to convert floors to ceilings and vice-versa[13]

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.[14]

Continuity[edit]

None of the functions discussed in this article are continuous, but all are piecewise linear.   and are piecewise constant functions, with discontinuites at the integers. also has discontinuites at the integers, and   as a function of x for fixed y is discontinuous at multiples of y.

  is upper semi-continuous and    and   are lower semi-continuous. x mod y is lower semicontinuous for positive y and upper semi-continuous for negative y.

Series expansions[edit]

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 Fourier expnsions.

x mod y for fixed y has the Fourier series expansion[15]

in particular {x} = x mod 1 is given by

At points of discontinuity, a Fourier series converges to a value that is the average of its limits on the left and the right. For x mod y, y fixed, the Fourier series converges to y/2 at multiples of y. At points of continuity the series converges to the true value.

Using the formula {x} = x − floor(x), floor(x) = x − {x} gives

Applications[edit]

Quadratic reciprocity[edit]

Gauss's third proof of quadratic reciprocity, as modified by Eisenstein, has two basic steps.[16][17]

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:[18]

Rounding[edit]

The ordinary rounding of the positive number x to the nearest integer can be expressed as

Number of digits[edit]

The number of digits in base b of a positive integer k is

Factors of factorials[edit]

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

Note that this is a finite sum, since the floors are zero when pk > n.

Spectra (Beatty's theorem)[edit]

Beatty's theorem shows how every positive irrational number gives rise to a partition of the natural numbers into two sequences via the floor function.[19]

Euler's constant γ[edit]

There are formulas for Euler's constant γ = 0.57721 56649 ... that involve the floor and ceiling, e.g.[20]


and

Riemann ζ function[edit]

The fractional part function also shows up in integral representations of the Riemann zeta function. It is straightforward to prove (by integration by parts)[21] 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 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.[22]

Formula for prime numbers[edit]

Let r > 1 be an integer, pn be the nth prime, and define

Then[23]

Until a way is found to calculate α without using the primes explicitly, this formula is of no practical use.

Unsolved problem[edit]

The study of Waring's problem has led to an unsolved problem:

Are there any positive integers k such that[24]

Mahler[25] has proved there can only be a finite number of such k; none are known.

Computer implementations[edit]

The operator (int) in C[edit]

C and related programming languages convert floating point values into integers using the type casting syntax: (int) value. The fractional part is discarded (i.e., the value is truncated toward zero)[26].

Spreadsheet software[edit]

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. As a typical example, ceiling(2, 3) would round 2 up to the nearest multiple of 3, so this would return 3. The definition of what "round up" means, however, differs from program to program.

Microsoft Excel's ceiling function does not follow the mathematical definition, but rather as with (int) operator in C, it is a mixture of the floor and ceiling function: for x ≥ 0 it returns ceiling(x), and for x < 0 it returns floor(x). This has followed through to the Office Open XML file format. For example, CEILING(-4.5) returns -5. A mathematical ceiling function can be emulated in Excel by using the formula "-INT(-value)" (please note that this is not a general rule, as it depends on Excel's INT function, which behaves differently that most programming languages).

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.


Typesetting[edit]

The floor and ceiling function 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, \rfloor, \lceil and \rceil commands in math mode. Unicode contains codepoints for these symbols, at U+2308U+230B: ⌈x⌉, ⌊x⌋.

See also[edit]

Notes[edit]

  1. ^ Graham, Knuth, & Patashnik, Ch. 3.1
  2. ^ Lemmermeyer, pp. 10, 23
  3. ^ e.g., Cassels, p. 1
  4. ^ Higham, p. 25
  5. ^ Iverson
  6. ^ See the Wolfram MathWorld article.
  7. ^ Sullivan, p. 86
  8. ^ Graham, Knuth, & Patashnik, p. 70
  9. ^ Graham, Knuth, & Patashink, Ch. 3
  10. ^ Graham, Knuth, & Patashnik, p. 72
  11. ^ Graham, Knuth, & Patashnik, p. 85
  12. ^ Graham, Knuth, & Patashnik, p. 85 and Ex. 3.15
  13. ^ Graham, Knuth, & Patashnik, Ex. 3.12
  14. ^ Graham, Knuth, & Patashnik, p. 94
  15. ^ Titchmarsh, p. 15, Eq. 2.1.7
  16. ^ Lemmermeyer, § 1.4, Ex. 1.32–1.33
  17. ^ Hardy & Wright, §§ 6.11–6.13
  18. ^ Lemmermeyer, p. 25
  19. ^ Graham, Knuth, & Patashnik, pp. 77–78
  20. ^ These formulas are from the Wikipedia article Euler's constant, which has many more.
  21. ^ Titchmarsh, p. 13
  22. ^ Titchmarsh, pp.14–15
  23. ^ Hardy & Wright, § 22.3
  24. ^ Hardy & Wright, p. 337
  25. ^ Mahler, K. On the fractional parts of the powers of a rational number II, 1957, Mathematika, 4, pages 122-124
  26. ^ ISO standard for C, § 6.3.1.4, p. 43.

References[edit]

  • J.W.S. Cassels (1957). An introduction to Diophantine approximation. Cambridge Tracts in Mathematics and Mathematical Physics. Vol. 45. Cambridge University Press.
  • Graham, Ronald L.; Knuth, Donald E.; Patashnik, Oren (1994), Concrete Mthematics, Reading Ma.: Addison-Wesley, ISBN 0-201-55802-5
  • Nicholas J. Higham, Handbook of writing for the mathematical sciences, SIAM. ISBN 0898714206, p. 25
  • ISO/IEC. ISO/IEC 9899::1999(E): Programming languages — C (2nd ed), 1999; Section 6.3.1.4, p. 43.
  • Iverson, Kenneth E. (1962), A Programming Language, Wiley
  • Michael Sullivan. Precalculus, 8th edition, p. 86
  • Titchmarsh, Edward Charles; Heath-Brown, David Rodney ("Roger") (1986), The Theory of the Riemann Zeta-function (2nd ed.), Oxford: Oxford U. P., ISBN 0-19-853369-1

External links[edit]

  • Štefan Porubský, "Integer rounding functions", Interactive Information Portal for Algorithmic Mathematics, Institute of Computer Science of the Czech Academy of Sciences, Prague, Czech Republic, retrieved 10/24/2008