asked 199k views
1 vote
If the greatest integer function is called the floor function because it rounds any number down to the nearest integer, what would you presume about the ceiling function?

2 Answers

4 votes
Ceiling Function is the least integer that is greater than or equal to x.
answered
User ViviG
by
9.0k points
7 votes

Answer with explanation:

  • The greatest integer function which is also known as a floor function rounds any number down to the nearest integer.

for example--

If -2 ≤x <-1 then value of function is -2

If -1 ≤x < 0 then value of function is -1

If 0 ≤x < 1 then value of function is 0

If 1 ≤x < 2 then value of function is 1

and so on.

  • Similarly the least integer function which is also known as a ceiling function rounds any number up to the nearest integer.

for example--

If -2 < x ≤ -1 then value of function is -1

If -1 < x ≤ 0 then value of function is 0

If 0 < x ≤ 1 then value of function is 1

If 1 < x ≤ 2 then value of function is 2

and so on.

answered
User Namelessjon
by
7.9k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.