4

The function $f(x)$ integer part of $x$ is defined as the largest integer less than or equal to $x$. Generally I have always use this symbol to indicate the integer part of $x$

$$f(x)=[x]$$ instead of

$$f(x)=\left\lfloor x\right\rfloor.$$ Are there some differences or are they represent the same quantity?

Sebastiano
  • 7,649
  • 1
    Depending on context / author, $[x]$ may mean the nearest integer (i.e. round instead of floor or ceiling). See e.g. here. –  Sep 27 '19 at 22:34
  • 1
    This is the same object. Both notations are used. – Mark Sep 27 '19 at 22:34
  • @Bungo Thank you very much for your comment (+1). In mathematical analysis I have always used $[x]$. In combinatorial geometry I have used the $\left\lfloor x\right\rfloor$. – Sebastiano Sep 27 '19 at 22:37
  • 2
    If this bothers you, then get ready for binomial coefficients... I've seen no less than 8 variations on notation for that. – JMoravitz Sep 27 '19 at 22:38
  • @Mark Thank you also to you. I have appreciated all the comments. – Sebastiano Sep 27 '19 at 22:39
  • 1
    @JMoravitz: Genuinely curious, what are those $8$ variations? I've only ever seen ${}^nC_k$ and $\binom nk$. – YiFan Tey Sep 27 '19 at 22:42
  • 4
    @YiFan $\binom{n}{k},~\binom{k}{n}$ (yes, some places flip which goes on top vs bottom), $~nC_k,~^nC_k~C^n_k,~C^k_n$ (see previous) $~\text{Binom}(n,k),~C(n,k),~(n){k}$ (made more confusing as this pochhammer symbol is also sometimes used for falling factorial instead) – JMoravitz Sep 27 '19 at 22:46
  • 3
    If $\lfloor x \rfloor$ doesn't mean the largest integer less than or equal then what does it mean? Things mean what we say they mean. But... okay, no, mathematicians don't have some subtle different meaning for it. It (often called the "floor" function) is a function $\lfloor\ \rfloor:\mathbb R \to \mathbb Z$ via $\lfloor x\rfloor= n$ where $n$ is the unique integer so that $n\le n < n+1$. Personally I find it for more clear to read but a real pain to type. – fleablood Sep 27 '19 at 23:29
  • @JMoravitz Thank you for your precious comment. Thank you again. – Sebastiano Sep 28 '19 at 19:37
  • @fleablood I'm very glad that I'm having severals comment for my question. Thank you. – Sebastiano Sep 28 '19 at 19:38

1 Answers1

8

$[x]$ is the older notation for the largest integer that does not exceed $x$. Earliest Uses of Various Mathematical Symbols says

Greatest integer function (floor function). Until recently $[x]$ has been the standard symbol for the greatest integer function. According to Grinstein (1970), "The use of the bracket notation, which has led some authors to term this the bracket function, stems back to the work of Gauss (1808) in number theory. The function is also referred to by Legendre who used the now obsolete notation $E(x)$." The Gauss reference is to Theorematis arithmetici demonstratio nova. Werke Volume: Bd. 2 p. 5.

Recently the symbol $\lfloor x \rfloor$ has come into use. It was introduced in 1962 by Kenneth E. Iverson who also coined the name floor function. [...]

$\lfloor x \rfloor$ has two advantages: it is completely unambiguous (there is nothing else it is used for) and it has a mnemonic symmetric partner in $ \lceil x \rceil $, the ceiling function. Examples of use: $$ \begin{align} \lfloor 2 \rfloor &= 2 & \lceil 2 \rceil &= 2 \\ \lfloor 2.5 \rfloor &= 2 & \lceil 2.5 \rceil &= 3 \\ \lfloor -1 \rfloor &= -1 & \lceil -1 \rceil &= -1 \\ \lfloor -1.5 \rfloor &= -2 & \lceil -1.5 \rceil &= -1 \\ \lfloor \pi \rfloor &= 3 & \lceil \pi \rceil &= 4 \end{align} $$

Chappers
  • 67,606