This is apples vs. oranges. In most languages/APIs, min/max take two (or more) inputs, and return the smallest/biggest. floor/ceil take one argument, and round it down or up to the nearest integer.

Answer from Oliver Charlesworth on Stack Overflow
🌐
GeeksforGeeks
geeksforgeeks.org › mathematics › difference-between-floor-and-ceil-function
Difference Between Floor and Ceil Function - GeeksforGeeks
October 1, 2024 - Ceil and floor functions are in-built functions present in most programming languages. They take the floating value as an input parameter and returns an integer as an output parameter. No need to worry if you don't know how to program. It is just a simple input-output program. ... // C++ program to illustrate ceil and floor functions #include <bits/stdc++.h> using namespace std; int main() { cout <<"ceil of "<<5.384<<" is "<< ceil(5.384) << endl; cout <<"floor of "<<3.184<<" is "<< floor(3.184) << endl; cout <<"ceil of "<<6.892<<" is "<< ceil(6.892) << endl; cout <<"floor of "<<15.764<<" is "<< floor(15.764) << endl; return 0; } // This code is contributed by Devansh Thakur.
🌐
Cuemath
cuemath.com › algebra › floor-and-ceiling-function
Floor Function and Ceiling Function - Definition, Formulas, Properties, Examples
The floor function gives an integer number value which is a numeric value lesser than the value of the function, and a ceiling function gives an integer number value which is a numeric value greater than the value of the function.
People also ask

What is the difference between ceiling function and floor function?
The ceiling function returns the smallest nearest integer which is greater than or equal to the specified number whereas the floor function returns the largest nearest integer which is less than or equal to a specified value.
🌐
byjus.com
byjus.com › maths › ceiling-function
Byjus
Give examples of floor and ceiling functions.
If 2.6 is a specified value, then, the ceiling value is equal to 3, and the floor value is equal to 2.
🌐
byjus.com
byjus.com › maths › ceiling-function
Byjus
What does the floor function do?
The floor function gives the greatest nearest value that is less than or equal to the specified value. That means the resultant value will be less than the specified value.
🌐
byjus.com
byjus.com › maths › ceiling-function
Byjus
🌐
Suneet Agrawal
agrawalsuneet.github.io › blogs › math-round-vs-math-floor-vs-math-ceil-kotlin
Math.round vs Math.floor vs Math.ceil : Kotlin · Suneet Agrawal
Although they round to the nearest ... Integer which can be above, below or equal to the actual value. ... Math.floor rounds up to the nearest Integer which can be equal to or below the actual value....

This is apples vs. oranges. In most languages/APIs, min/max take two (or more) inputs, and return the smallest/biggest. floor/ceil take one argument, and round it down or up to the nearest integer.

Answer from Oliver Charlesworth on Stack Overflow
Top answer
1 of 3
3

Simply put it's two ways of thinking of rounding off a number. Ceiling rounds up to nearest integer. Floor rounds down to nearest integer. If the number is an integer, nothing happens.

2 of 3
3

It's easy to think about floor and ceil from the perspective of the number line. Let's say you have some decimal number, (I'm going to be using this number as an example throughout my answer)
So, as you can see, the functions just return the nearest integer values.
floor returns the nearest lowest integer and ceil returns the nearest highest integer.

All real numbers are made of a characteristic (an integer part) and mantissa (a fractional part)

When floor a number, you can think of it as replacing the Mantissa with

and ceil can be thought of as replacing the mantissa with .

That's not a very popular way of thinking about it but it was the way I thought about it when I first started using it in programming.

Remember, the number remains the same when it is an integer. ie, floor() ceil()


Let's now look at the proper definitions along with the graphs for them.

Floor Function: Returns the greatest integer that is less than or equal to

Ceiling Function: Returns the least integer that is greater than or equal to

Don't let the infinite staircase scare you. It's much more simpler than it seems. Those "line-segments" that you see are actually called piecewise-step functions.

Simply, the black dot represents 'including this number' and the white represents 'excluding this number'. Meaning that each segment actually is from x to all numbers less than x+1.


Let's look at 2.31 and how it would look on both the graphs at once. You can see that the line hits the floor function at the "line-piece" for and hits the ceiling function at

🌐
Wikipedia
en.wikipedia.org › wiki › Floor_and_ceiling_functions
Floor and ceiling functions - Wikipedia
February 5, 2026 - In mathematics, the floor function ... denoted ⌊x⌋ or floor(x). Similarly, the ceiling function maps x to the least integer greater than or equal to x, denoted ⌈x⌉ or ceil(x). ......
Find elsewhere
🌐
Suneet Agrawal
agrawalsuneet.github.io › blogs › round-vs-floor-vs-ceil-swift
Round vs Floor vs Ceil : Swift · Suneet Agrawal
In the case of a negative number, ... //this will print: -4 print(floor(-3.99)) //this will print: -4 · ceil rounds up to the nearest Integer which can be equal to or above the actual value....
🌐
BYJUS
byjus.com › maths › ceiling-function
Byjus
June 7, 2022 - If 5.6 is a specified value, then the floor value is 5 (which is less than 5.6), and the ceiling value is 6 (which is greater than 5.6). Both the functions are represented by square brackets symbol, but with top and bottom parts missing. Also, another difference can be found using the graph.
🌐
Difference Between
differencebetween.net › technology › software-technology › difference-between-ceil-and-floor-functions
Difference Between Ceil and Floor Functions | Difference Between | Ceil vs Floor Functions
July 21, 2011 - Ceil and floor functions are different in many respects. For example, ceil function returns the least value of the integer that is greater than or equal to the specified number. On the other hand, floor function gets the greatest value that is less than or equal to the specified number.
🌐
Math is Fun
mathsisfun.com › sets › function-floor-ceiling.html
Floor and Ceiling Functions
The floor and ceiling functions give us the nearest integer up or down. The Floor of 2.31 is 2 The Ceiling of 2.31 is 3.
🌐
Reddit
reddit.com › r/learnmath › can someone explain to me what the floor and cealing functions are actually doing numerically?
r/learnmath on Reddit: Can someone explain to me what the floor and cealing functions are actually doing numerically?
June 26, 2022 -

When I truncate a number what my brain actually does is ignoring the fractional part of said number. But its not doing any real math.

I understand I can express a truncate function with conditional floor and cealing functions... but thats is not what I need.

I need someone to teach me how to arrive from a number to its integer using only mathematical operations and not logical functions.

I need to know...

Plz help me someone...

🌐
Codecademy
codecademy.com › forum_questions › 4f35e646fe0083000301a5e5
1.2: Why not use Math.ceil? | Codecademy
I’m was wondering why we had to use the floor and adding too and why not use some sort of ceiling(i didn’t know yet that Math.ceil existed), but i figured floor is more efficient because all floor is doing, i believe, is dropping the decimals (1.99 = 1, 2.0002345 =2) where a ceiling would have to drop the decimals and increase the number by 1 anyway.
🌐
Analytics Vidhya
analyticsvidhya.com › home › understanding floor and ceiling functions in python
Floor and Ceiling Functions in Python | Applications and Behaviour
June 20, 2023 - This leads to the rather amazing result relating sums of the floor function of multiples of to the continued fraction of by · The smallest integer bigger than or equal to ⌈x⌉ is the result of the ceil function, denoted by ceil(x) or x. ...
🌐
Educative
educative.io › answers › mathceil-mathfloor-and-mathround-in-javascript
Math.ceil, Math.floor, and Math.round in JavaScript
While the Math.ceil method returns the smallest integer greater than or equal to the value we pass, Math.floor returns the largest or equal integer that is less than the given value.