Floor function

Revision as of 13:43, 3 July 2006 by Inscrutableroot (talk | contribs) (proofreading)

The greatest integer function, also known as the floor function, gives the greatest integer less than or equal to its argument. The floor of $x$ is usually denoted by $\lfloor x \rfloor$ or $[x]$. The action of this function is the same as "rounding down." On a positive argument, this function is the same as "dropping everything after the decimal point," but this is not true for negative values.

For example:

  • $\lfloor 3.14 \rfloor = 3$
  • $\lfloor 5 \rfloor = 5$
  • $\lfloor -3.2 \rfloor = -4$

A useful way to use the floor function is to write $\lfloor x \rfloor=\lfloor y+k \rfloor$, where y is an integer and k is the leftover stuff after the decimal point. This can greatly simplify many problems.

See Also