retagged by
306 views
3 votes
3 votes

Which of the following statements must be true?

  1. $\left \lfloor x \right \rfloor = \left \lceil x \right \rceil$ if and only if $x$ is an integer.
  2. $\left \lfloor x \right \rfloor  + 1 =  \left \lceil x \right \rceil$ if and only if $x$ is not an integer.
  3. $\left \lfloor x \right \rfloor  \left \lceil y \right \rceil = \left \lceil x \right \rceil \left \lfloor y \right \rfloor$ for all $x,y.$
  4. $-\left \lfloor x \right \rfloor = \left \lceil -x \right \rceil $ for all $x.$
retagged by

1 Answer

4 votes
4 votes
C is not true. Take $x = 2.5$ and $y = 4.$

Rest all are standard properties of floor and ceil functions.
Answer:

Related questions

3 votes
3 votes
1 answer
4