Omni Calculator logo
Board

Floor Division Calculator

New

Welcome to the floor division calculator, which will help you with this very practical math operation. Here, you will understand:

  • How to do floor division;
  • What the difference between division and floor division is;
  • How it shows up in real-life situations; and
  • Why is it called this way?

If you are keen to learn floor division, you are in the right place!

❓ We will also write more about programming-related issues, such as the floor division symbol in Python or how to perform floor division in C, C++, Java, and Javascript.

What is floor division?

Floor division, a.k.a. division with remainder, is an operation in which you round down the result of normal division to the nearest integer (a.k.a. whole number). So, the meaning of floor division is a type of division in which you always get an integer answer.

✅ For instance, if you divide 13 by 4 in the standard way, you will get 3.25, whereas the floor division will give 3. Other floor division examples are 26/5 or 76/13, both giving 5 as a result. You can quickly verify these answers with the floor division calculator.

Is the above process familiar to you? Yes, you guessed right — we can speak of the floor and ceiling functions. To learn more about them, check out our floor function calculator and ceiling function calculator.

How to perform floor division

Carrying out floor division is really easy! Let's see how to do floor division in an example. To show that the floor division of 13 by 4 is 3, you have to perform these simple steps:

  1. Divide 13 by 4 as usual, either by hand or using long division. You will get 3.25. If you forgot how to do long division, it is never too late to try out our long division calculator.

  2. If you already have an integer in Step 1, there is nothing more to do. However, this is not the case in this floor division example.

  3. Take the largest integer less than or equal to 3.25. You will be left with 3, a whole number, and this is what you are looking for!

Floor division examples in real life

Whether you know it or not, you carry out floor division all the time. Imagine you want to bring all your friends safely home from a party. The floor division is all you need to book the right number of cabs!

Each cab can take 4 people, the driver taking the fifth seat. So if you need to transport 13 friends, they will fill up 3 cabs. The remaining person will need to take the fourth cab, so 4 is the number of taxis to call. In this example, the number 3 of full cabs results from floor division (called quotient). The solo person to sit in the fourth cab is the remainder.

Or suppose you want to share some candies equally between your 4 siblings. If you have 13 chocolate bars to divide out, you should give 3 candies to each sibling. This is exactly what you get from the floor division! Of course, you keep the single remaining chocolate bar to yourself 😎

Useful, isn't it? Our floor division calculator can help you with all of that!

Floor division calculator formula

Here is a neat formula for floor division that underlies our floor division calculator:

Quotient=DividendDivisor\mathrm{Quotient} = \Bigg\lfloor{\frac{\mathrm{Dividend}}{\mathrm{Divisor}}\Bigg\rfloor}

where:

  • Dividend — Number that we divide;
  • Divisor — Number that we divide by; and
  • x\lfloor x \rfloorInteger part or floor of a number xx. As the name suggests, x\lfloor x \rfloor is the largest integer smaller than or equal to xx. On the other hand, ceiling of xx is denoted by x\lceil x \rceil and is the smallest integer greater than or equal to xx.

The full relationship between the dividend, divisor, quotient, and remainder can be recast as follows:

Dividend= Quotient×Divisor+Remainder\begin{align*} \mathrm{Dividend} = \ & \mathrm{Quotient} \times \mathrm{Divisor} \\ &+ \mathrm{Remainder} \end{align*}

🙋 You can read more about remainder in our remainder calculator, where you will encounter the same formula!

Floor division in Python and other languages

Floor division can be performed in various programming languages. The table below shows some of the more popular ones, assuming dividend x and divisor y are positive integers.

What?

How?

Floor division in Python

x // y

Floor division in C

x / y

Floor division in C++

x / y

Floor division in Java

x / y

Floor division in Javascript

Math.floor(x / y)

You can notice that the integer division automatically floors for C, C++, and Java. If you're dealing with decimals (float or double) or negative numbers, you must use the floor functions from respective libraries.

Also, the floor division operator in Python, //, is convenient for writing quick and clear code.

FAQs

What is the difference between division and floor division?

Regular division can give you a fraction as an answer, whereas floor division will always yield an integer answer. For example, 35 divided by 4 gives 8.75, and floor division operation gives 8.

When do floor and regular divisions give the same answer?

Regular and floor divisions of a by b will give the same answer only if b divides a. Equivalently, this means that a is a multiple of b, i.e., a can be obtained by adding b several times to itself.

Why is it called floor division?

The result of floor division is the floor, or the integer part, of what you get from normal division. It is often used in programming to get integer results for algorithms.

How do I do floor division with negative numbers?

When the dividend or divisor is negative (or both are), do the following:

  1. Perform standard division.

  2. Take the largest integer less than or equal to the result. For instance, the standard division of -7 by 5 will give -1.4, and the largest integer less than or equal to that is -2.

  3. The number -2 is the result of floor division.

You have to be careful here — the naive idea of "chopping off" the integer part of -1.4 will no longer work, as it will give -1 instead of -2.

What is the floor division of 9/2?

The floor division operation of 9 divided by 2 is 4.

The standard division of 9/2 is 4.5, which is then rounded down to 4. The floor division operation always yields integers smaller than or equal to the standard division results.

Check out 76 similar arithmetic calculators ➗

Absolute change

Absolute value

Adding and subtracting fractions