Strict ceiling and floor notation

591 Views Asked by At

The normal ceiling and floor functions, denoted $\lceil x \rceil$ and $\lfloor x \rfloor$ respectively, refer to the smallest integer greater than or equal to $x$, and similar for the floor function.

I have a need for some notation to represent the smallest integer strictly greater than $x$, or similar for 'strict floor'.

I've had a google and nothing came up, and I'd prefer not to make up notation if some already exists. Has anyone come across notation for this before?

2

There are 2 best solutions below

0
On

It seems that strict ceil is equal to $ 1 - \lceil - x \rceil $, and srtict floor is $ - 1 - \lfloor - x \rfloor $.

Hope that helps.

2
On

In addition to the answers given, I would like to add:

If you cannot easily find the notation for what you are doing, it is definitely not standardized (the Schur/Hadamard product comes to mind). You can also expect the reader not to be familiar with any notation, and thus choose what's most convenient.

Just be sure to define the notation clearly in whatever report/thesis/assignemnt you are writing.