Complete Guide to Division
1. Introduction to Division
Division is one of the four basic operations in arithmetic, alongside addition, subtraction, and multiplication. It represents sharing or grouping items equally.
Basic Definition:
Division can be viewed in two ways:
- Partitive Division: Dividing a quantity into a specific number of equal groups (how many in each group?)
- Quotitive Division: Determining how many groups of a specific size can be formed (how many groups?)
Example: 12 ÷ 3 = 4 can mean:
- Partitive: 12 items shared equally among 3 people results in 4 items per person
- Quotitive: 12 items arranged in groups of 3 results in 4 groups
In mathematics, division is denoted by various symbols:
- The division sign: ÷
- The forward slash: /
- The division bar (fraction bar): —
- In some programming contexts: / or divide()
Terminology:
In the expression 20 ÷ 4 = 5:
- Dividend: 20 (the number being divided)
- Divisor: 4 (the number dividing the dividend)
- Quotient: 5 (the result of division)
- Remainder: 0 (the amount left over after division)
2. Properties of Division
Non-Commutative Property:
Unlike addition and multiplication, changing the order in division changes the result.
a ÷ b ≠ b ÷ a (in general)
Example: 8 ÷ 2 = 4, but 2 ÷ 8 = 0.25
Non-Associative Property:
Division is not associative. The order of operations matters.
(a ÷ b) ÷ c ≠ a ÷ (b ÷ c)
Example: (24 ÷ 6) ÷ 2 = 4 ÷ 2 = 2, but 24 ÷ (6 ÷ 2) = 24 ÷ 3 = 8
Relation to Multiplication:
Division is the inverse of multiplication.
If a ÷ b = c, then a = b × c
Example: If 15 ÷ 3 = 5, then 15 = 3 × 5
Identity Property:
Dividing a number by 1 leaves the number unchanged.
a ÷ 1 = a
Example: 42 ÷ 1 = 42
Zero Property:
Zero divided by any non-zero number equals zero.
0 ÷ a = 0 (where a ≠ 0)
Example: 0 ÷ 7 = 0
Undefined Division:
Division by zero is undefined in mathematics.
a ÷ 0 is undefined (for any value of a)
Example: 5 ÷ 0 is undefined
3. Division Methods
Long Division Method
The traditional method for dividing larger numbers:
Let's divide 825 by 5:
Steps:
- Divide 8 by 5. 5 goes into 8 one time: 1 × 5 = 5. Write 1 above the 8.
- Subtract: 8 - 5 = 3. Bring down the 2: 32.
- Divide 32 by 5. 5 goes into 32 six times: 6 × 5 = 30. Write 6 above the 2.
- Subtract: 32 - 30 = 2. Bring down the 5: 25.
- Divide 25 by 5. 5 goes into 25 five times: 5 × 5 = 25. Write 5 above the 5.
- Subtract: 25 - 25 = 0. No remainder.
- Result: 825 ÷ 5 = 165
Let's divide 436 by 6 (with a remainder):
Steps:
- Divide 4 by 6. Since 4 < 6, consider 43.
- Divide 43 by 6: 6 goes into 43 seven times (7 × 6 = 42). Write 7 above the 3.
- Subtract: 43 - 42 = 1. Bring down the 6: 16.
- Divide 16 by 6: 6 goes into 16 two times (2 × 6 = 12). Write 2 above the 6.
- Subtract: 16 - 12 = 4. This is our remainder.
- To express as a decimal, add a decimal point and zeros, then continue dividing.
- Result: 436 ÷ 6 = 72 remainder 4, or 72.666...
Short Division Method
A faster method for dividing by single-digit numbers:
Let's divide 728 by 4:
1 8 2
_______
4 ) 7 2 8
4 8 8
Steps:
- Divide 7 by 4: 4 goes into 7 one time with 3 remainder. Write 1 above the 7 and mentally carry the 3.
- Combine the carried remainder with the next digit: 3 + 2 = 5. Divide 5 by 4: 4 goes into 5 one time with 1 remainder. Write 8 above the 2 (because 4 × 1 = 4, and 7 - 4 = 3, and 32 ÷ 4 = 8).
- Combine the carried remainder with the next digit: 1 + 8 = 9. Divide 9 by 4: 4 goes into 9 two times with 1 remainder. Write 2 above the 8.
- If there were another digit, we'd continue, but since we're done, the remainder is 1.
- Result: 728 ÷ 4 = 182
Let's divide 945 by 7:
1 3 5 _______ 7 ) 9 4 5
Steps:
- Divide 9 by 7: 7 goes into 9 one time with 2 remainder. Write 1 above the 9 and mentally carry the 2.
- Combine the carried remainder with the next digit: 2 + 4 = 26. Divide 26 by 7: 7 goes into 26 three times with 5 remainder. Write 3 above the 4.
- Combine the carried remainder with the next digit: 5 + 5 = 10. Divide 10 by 7: 7 goes into 10 one time with 3 remainder. Write 5 above the last digit (because 5 × 7 = 35, and 45 - 35 = 10).
- Result: 945 ÷ 7 = 135
Chunking Method
Breaking down division into manageable chunks using known multiplication facts:
Let's divide 92 by 4:
Result: 92 ÷ 4 = 23
Let's divide 217 by 7:
Result: 217 ÷ 7 = 31
Repeated Subtraction Method
Repeatedly subtracting the divisor from the dividend until reaching zero or a number less than the divisor:
Let's divide 15 by 3:
15 - 3 = 12 (Count 1 subtraction) 12 - 3 = 9 (Count 2 subtractions) 9 - 3 = 6 (Count 3 subtractions) 6 - 3 = 3 (Count 4 subtractions) 3 - 3 = 0 (Count 5 subtractions)
Result: 15 ÷ 3 = 5 (it took 5 subtractions to reach 0)
Let's divide 17 by 4:
17 - 4 = 13 (Count 1 subtraction) 13 - 4 = 9 (Count 2 subtractions) 9 - 4 = 5 (Count 3 subtractions) 5 - 4 = 1 (Count 4 subtractions)
We can't subtract 4 from 1 (since 1 < 4), so we stop.
Result: 17 ÷ 4 = 4 remainder 1 (it took 4 subtractions to reach a number less than 4)
Equal Distribution Method
Physically or visually distributing items equally:
Let's divide Divide 12 by 3:
Imagine distributing 12 items equally among 3 groups:
Each group gets 4 items.
Result: 12 ÷ 3 = 4
Divide 14 by 3:
Distributing items one by one into 3 groups:
Group 1 has 5 items, Group 2 has 5 items, and Group 3 has 4 items. This is not equal.
Each group should have 4 items with 2 left over.
Result: 14 ÷ 3 = 4 remainder 2
Factor Tree Method
Finding the prime factorization to solve certain division problems:
Let's divide 36 by 4:
First, create a factor tree for 36:
36
/ \
4 9
/ \ / \
2 2 3 3
Prime factorization of 36 = 2² × 3²
Prime factorization of 4 = 2²
To divide, remove the factors of 4 from 36:
36 ÷ 4 = (2² × 3²) ÷ 2² = 3²
Result: 36 ÷ 4 = 9
Let's divide 72 by 8:
First, create a factor tree for 72:
72
/ \
8 9
/ \ / \
2 4 3 3
/ \
2 2
Prime factorization of 72 = 2³ × 3²
Prime factorization of 8 = 2³
To divide, remove the factors of 8 from 72:
72 ÷ 8 = (2³ × 3²) ÷ 2³ = 3²
Result: 72 ÷ 8 = 9
4. Mental Math Strategies
Dividing by 10, 100, 1000:
Simply move the decimal point to the left.
24 ÷ 10 = 2.4, 24 ÷ 100 = 0.24, 24 ÷ 1000 = 0.024
Dividing by 2:
Halve the number.
36 ÷ 2 = 18
For odd numbers, halve the number and add .5
35 ÷ 2 = 17.5
Dividing by 4:
Halve the number, then halve it again.
48 ÷ 4 = 48 ÷ 2 ÷ 2 = 24 ÷ 2 = 12
Dividing by 5:
Multiply by 2, then divide by 10.
45 ÷ 5 = (45 × 2) ÷ 10 = 90 ÷ 10 = 9
Dividing by 9:
Multiply by 10, then subtract the original number and divide by 9.
Example: 36 ÷ 9
36 × 10 = 360 360 - 36 = 324 324 ÷ 9 = 36
But actually, we can directly see that 36 ÷ 9 = 4 because 9 × 4 = 36
Using Factors:
Break down division into smaller, easier divisions using factors.
Example: 84 ÷ 6
6 = 2 × 3 84 ÷ 6 = 84 ÷ 2 ÷ 3 = 42 ÷ 3 = 14
5. Division Tables
Knowing multiplication tables helps with division, since division is the inverse of multiplication.
| ÷ | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | 1 | 0.5 | 0.333... | 0.25 | 0.2 | 0.166... | 0.142... | 0.125 | 0.111... | 0.1 |
| 2 | 2 | 1 | 0.666... | 0.5 | 0.4 | 0.333... | 0.285... | 0.25 | 0.222... | 0.2 |
| 3 | 3 | 1.5 | 1 | 0.75 | 0.6 | 0.5 | 0.428... | 0.375 | 0.333... | 0.3 |
| 4 | 4 | 2 | 1.333... | 1 | 0.8 | 0.666... | 0.571... | 0.5 | 0.444... | 0.4 |
| 5 | 5 | 2.5 | 1.666... | 1.25 | 1 | 0.833... | 0.714... | 0.625 | 0.555... | 0.5 |
| 6 | 6 | 3 | 2 | 1.5 | 1.2 | 1 | 0.857... | 0.75 | 0.666... | 0.6 |
| 7 | 7 | 3.5 | 2.333... | 1.75 | 1.4 | 1.166... | 1 | 0.875 | 0.777... | 0.7 |
| 8 | 8 | 4 | 2.666... | 2 | 1.6 | 1.333... | 1.142... | 1 | 0.888... | 0.8 |
| 9 | 9 | 4.5 | 3 | 2.25 | 1.8 | 1.5 | 1.285... | 1.125 | 1 | 0.9 |
| 10 | 10 | 5 | 3.333... | 2.5 | 2 | 1.666... | 1.428... | 1.25 | 1.111... | 1 |
| 20 | 20 | 10 | 6.666... | 5 | 4 | 3.333... | 2.857... | 2.5 | 2.222... | 2 |
| 30 | 30 | 15 | 10 | 7.5 | 6 | 5 | 4.285... | 3.75 | 3.333... | 3 |
| 40 | 40 | 20 | 13.333... | 10 | 8 | 6.666... | 5.714... | 5 | 4.444... | 4 |
| 50 | 50 | 25 | 16.666... | 12.5 | 10 | 8.333... | 7.142... | 6.25 | 5.555... | 5 |
| 60 | 60 | 30 | 20 | 15 | 12 | 10 | 8.571... | 7.5 | 6.666... | 6 |
| 70 | 70 | 35 | 23.333... | 17.5 | 14 | 11.666... | 10 | 8.75 | 7.777... | 7 |
| 80 | 80 | 40 | 26.666... | 20 | 16 | 13.333... | 11.428... | 10 | 8.888... | 8 |
| 90 | 90 | 45 | 30 | 22.5 | 18 | 15 | 12.857... | 11.25 | 10 | 9 |
| 100 | 100 | 50 | 33.333... | 25 | 20 | 16.666... | 14.285... | 12.5 | 11.111... | 10 |
The table reads as "row ÷ column = value". For example, in the row labeled "24" and the column labeled "6", the value 4 means 24 ÷ 6 = 4.
Fact Families:
Understanding the relationship between multiplication and division helps in learning division facts.
For the numbers 3, 7, and 21:
- 3 × 7 = 21
- 7 × 3 = 21
- 21 ÷ 3 = 7
- 21 ÷ 7 = 3
These four equations form a "fact family".
6. Division with Different Number Types
Division with Decimals:
When dividing with decimals, there are two approaches:
- Decimal in the divisor: Multiply both dividend and divisor by the same power of 10 to make the divisor a whole number
- Decimal in the dividend: Perform regular division, placing the decimal point in the quotient directly above the decimal point in the dividend
Let's divide 24.6 by 0.6:
Step 1: Multiply both numbers by 10 to get rid of the decimal in the divisor:
24.6 ÷ 0.6 = (24.6 × 10) ÷ (0.6 × 10) = 246 ÷ 6
Step 2: Perform the division:
246 ÷ 6 = 41
Result: 24.6 ÷ 0.6 = 41
Let's divide 5 by 0.25:
Step 1: Multiply both numbers by 100 to get rid of the decimal in the divisor:
5 ÷ 0.25 = (5 × 100) ÷ (0.25 × 100) = 500 ÷ 25
Step 2: Perform the division:
500 ÷ 25 = 20
Result: 5 ÷ 0.25 = 20
Division with Fractions:
To divide by a fraction, multiply by its reciprocal (flip the fraction upside down).
Let's divide 6 by 3/4:
6 ÷ 3/4 = 6 × 4/3 = 24/3 = 8
When dividing a fraction by a fraction, multiply by the reciprocal of the divisor:
2/3 ÷ 1/4 = 2/3 × 4/1 = 8/3 = 2 2/3
Division with Mixed Numbers:
Convert mixed numbers to improper fractions first, then follow the rules for fraction division.
Let's divide 5 1/2 by 1 1/4:
Step 1: Convert mixed numbers to improper fractions:
5 1/2 = 11/2 1 1/4 = 5/4
Step 2: Divide by multiplying by the reciprocal:
11/2 ÷ 5/4 = 11/2 × 4/5 = 44/10 = 22/5 = 4 2/5
Result: 5 1/2 ÷ 1 1/4 = 4 2/5
Division with Negative Numbers:
Follow these rules:
- Positive ÷ Positive = Positive
- Positive ÷ Negative = Negative
- Negative ÷ Positive = Negative
- Negative ÷ Negative = Positive
Examples:
- 12 ÷ 4 = 3 (Positive ÷ Positive = Positive)
- 12 ÷ (-4) = -3 (Positive ÷ Negative = Negative)
- -12 ÷ 4 = -3 (Negative ÷ Positive = Negative)
- -12 ÷ (-4) = 3 (Negative ÷ Negative = Positive)
7. Handling Remainders
Expressing Remainders:
Remainders can be expressed in several ways:
- Whole number with remainder: 17 ÷ 5 = 3 remainder 2
- Decimal: 17 ÷ 5 = 3.4
- Fraction: 17 ÷ 5 = 3 2/5
- Mixed number: 17 ÷ 5 = 3 2/5
Converting Remainders to Decimals:
Let's convert 17 ÷ 5 = 3 remainder 2 to a decimal:
Method 1: Continue the division into decimal places:
3.4
_______
5 ) 17.0
15
---
20
20
---
0
Method 2: Divide the remainder by the divisor:
3 remainder 2 = 3 + 2/5 = 3 + 0.4 = 3.4
Result: 17 ÷ 5 = 3.4
Converting Remainders to Fractions:
Let's convert 17 ÷ 5 = 3 remainder 2 to a fraction:
3 remainder 2 = 3 + 2/5 = 3 2/5
To express as an improper fraction:
3 2/5 = (3 × 5 + 2)/5 = 17/5
Result: 17 ÷ 5 = 3 2/5 or 17/5
Interpreting Remainders in Word Problems:
The context of the problem determines how to handle remainders:
- Sometimes you round down (discard the remainder)
- Sometimes you round up (add 1 to the quotient)
- Sometimes you express it as a decimal or fraction
- Sometimes the remainder itself is the answer
Example: If 17 people need to travel in cars that seat 5 people each, how many cars are needed?
17 ÷ 5 = 3 remainder 2, so 4 cars are needed (round up).
Example: If you have 17 cookies and give 5 cookies to each child, how many children get cookies?
17 ÷ 5 = 3 remainder 2, so 3 children get cookies (round down).
8. Real-World Applications
Equal Sharing and Grouping:
Division helps in sharing items equally or organizing them into groups.
If 24 cookies need to be shared equally among 6 children, how many cookies does each child get?
24 ÷ 6 = 4 cookies per child
If you have 30 flowers and want to make bouquets with 6 flowers each, how many bouquets can you make?
30 ÷ 6 = 5 bouquets
Unit Rate and Unit Price:
Division is used to find unit rates and compare prices.
If a 24-ounce bottle of juice costs $3.60, what is the cost per ounce?
$3.60 ÷ 24 = $0.15 per ounce
If a car travels 240 miles on 10 gallons of gas, what is the fuel efficiency?
240 miles ÷ 10 gallons = 24 miles per gallon
Scaling Recipes:
Division helps in adjusting recipe quantities.
A recipe that serves 8 people calls for 4 cups of flour. How much flour is needed per person?
4 cups ÷ 8 people = 0.5 cups or 1/2 cup per person
If you want to make a recipe that serves 3 people but the recipe is for 12 people, by what factor should you divide all ingredients?
12 ÷ 3 = 4, so divide all ingredients by 4
Finding Averages:
Division is used to calculate averages or means.
A student scored 85, 92, 78, 90, and 88 on five tests. What is the student's average score?
(85 + 92 + 78 + 90 + 88) ÷ 5 = 433 ÷ 5 = 86.6
Percentages:
Division is used to calculate percentages.
If 15 out of 25 students passed an exam, what percentage passed?
15 ÷ 25 = 0.6 = 60%
9. Word Problems
Basic Division Word Problem:
Maria has 42 stickers. She wants to give an equal number of stickers to each of her 7 friends. How many stickers will each friend receive?
Solution: 42 ÷ 7 = 6 stickers per friend
Division with Remainder Word Problem:
A school has 234 students who need to be organized into teams of 8 for a science project. How many complete teams can be formed, and how many students will be left over?
Step 1: Divide to find the number of complete teams: 234 ÷ 8 = 29 remainder 2
Step 2: The remainder represents the students left over
Solution: 29 complete teams can be formed, with 2 students left over
Division for Unit Rate Word Problem:
A car traveled 385 miles on 14 gallons of gas. How many miles per gallon did the car get?
Solution: 385 miles ÷ 14 gallons = 27.5 miles per gallon
Division for Equal Sharing Word Problem:
A baker has 96 muffins to pack equally into 6 boxes. How many muffins should be placed in each box?
Solution: 96 muffins ÷ 6 boxes = 16 muffins per box
Multi-step Division Problem:
A theater has 450 seats. For a show, tickets are sold at $12 for adults and $8 for children. If the total ticket sales were $4,640 and all seats were filled, how many adult tickets and how many child tickets were sold?
Step 1: Let's say x = number of adult tickets and y = number of child tickets.
Step 2: We know that x + y = 450 (total seats)
Step 3: We also know that 12x + 8y = 4,640 (total sales)
Step 4: From the first equation, y = 450 - x
Step 5: Substitute into the second equation: 12x + 8(450 - x) = 4,640
Step 6: Simplify: 12x + 3,600 - 8x = 4,640
Step 7: Simplify further: 4x + 3,600 = 4,640
Step 8: Subtract 3,600 from both sides: 4x = 1,040
Step 9: Divide both sides by 4: x = 260
Step 10: Find y: y = 450 - 260 = 190
Solution: 260 adult tickets and 190 child tickets were sold
10. Interactive Division Quiz
Test Your Division Skills
Try these problems and check your answers:



