Multiplication and Division: Concepts and Algorithms
Multiplication is accelerated addition, and division is its inverse. In this article you will understand the properties of these operations, learn the algorithms step by step, and discover why division by zero does not exist.
Renato Freitas
Updated on May 5, 2026
Multiplication as repeated addition
Multiplication arises from addition. Adding 4 + 4 + 4 is slow; writing 3 × 4 = 12 is an elegant shortcut. We say that 3 × 4 means '3 groups of 4' or 'add 4 three times'. The numbers multiplied are called factors, and the result is the product.
Multiplication is commutative: 3 × 4 = 4 × 3 = 12. It does not matter which factor comes first — the product is the same. It is also associative: (2 × 3) × 4 = 2 × (3 × 4) = 24.
The distributive property is especially powerful: a × (b + c) = a × b + a × c. Example: 6 × 13 = 6 × 10 + 6 × 3 = 60 + 18 = 78. This property is at the heart of mental calculation and the multi-digit multiplication algorithm.
🧮 Try it yourself — CalcSim
Want more features? Download CalcSim IA app
The long multiplication algorithm
To multiply 46 × 23, we arrange the factors in columns. First we multiply 46 by 3 (the units digit of 23): 3×6=18, write 8 and carry 1; 3×4+1=13, write 13. Partial result: 138.
Then we multiply 46 by 2 (the tens digit of 23), shifting one place to the left: 2×6=12, write 2 and carry 1; 2×4+1=9, write 9. Partial result: 920 (or 92 on the shifted line).
We add the partial results: 138 + 920 = 1,058. The shift of each partial line reflects place value — multiplying by the tens digit is equivalent to multiplying by 10 and then by that digit.
Division: equal sharing and the inverse of multiplication
Division has two practical meanings. The sharing meaning: 12 candies for 3 children, how many does each get? 12 ÷ 3 = 4. The measurement meaning: how many groups of 3 fit into 12? Also 4. Both lead to the same result.
The terms of division are: dividend (12), divisor (3), quotient (4), and when it does not divide evenly, remainder. The fundamental relationship is: dividend = divisor × quotient + remainder. Whenever you finish a division, you can verify it using this formula.
Division and multiplication are inverse operations: if 4 × 3 = 12, then 12 ÷ 3 = 4 and 12 ÷ 4 = 3. That is why knowing your multiplication tables well makes division much easier.
The long division algorithm
Long division processes the dividend from left to right, digit by digit. To calculate 476 ÷ 4: how many times does 4 go into 4? Once. Remainder 0. Bring down the 7: how many times does 4 go into 7? Once (4), remainder 3. Bring down the 6: how many times does 4 go into 36? Nine times (36), remainder 0. Quotient: 119.
When the divisor has two or more digits, we estimate each digit of the quotient and adjust. It is an iterative process of trial and verification, but with practice it becomes fluid. Calculators do this instantly, but understanding the algorithm reveals how division works and helps with estimating answers.
Why is division by zero undefined?
Dividing by zero is not simply difficult — it is mathematically impossible to define. If 12 ÷ 0 = x, then 0 × x = 12. But zero times any number is zero, never 12. No number satisfies this equation.
Attempting to define 0 ÷ 0 also fails: any number x would satisfy 0 × x = 0, so the result would be indeterminate — infinitely many possible values at the same time. That is why division by zero is not infinity or zero: it simply does not exist. Calculators and computer programs display 'Error' or 'undefined' in these cases.
- a ÷ 0 is undefined for any a ≠ 0
- 0 ÷ 0 is indeterminate
- 0 ÷ a = 0 for any a ≠ 0 (this is valid)
Frequently asked questions
Is multiplication always greater than addition?
No. Multiplying by 0 gives 0; multiplying by 1 keeps the same number; multiplying by a fraction or decimal can reduce the value. The idea that 'multiplication increases' only works in general for integers greater than 1.
What is the remainder in division?
The remainder is what is 'left over' when the dividend is not exactly divisible by the divisor. In 17 ÷ 5, the quotient is 3 and the remainder is 2, because 5×3=15 and 17−15=2. The remainder is always less than the divisor.
How do I check whether a division is correct?
Use the proof: divisor × quotient + remainder = dividend. If you calculated 476 ÷ 4 = 119 (remainder 0), verify: 4 × 119 + 0 = 476. If it matches, it is correct.
Why is 'any number divided by zero is infinity' wrong?
Because infinity is not a natural (or real) number. Saying 5 ÷ 0 = ∞ would treat infinity as a numerical result, which creates contradictions in algebra. The correct answer is: the operation is undefined.
Does the order of factors in multiplication always give the same result?
Yes, for real numbers. A × B = B × A — this is the commutative property. However, in other mathematical contexts (such as matrix multiplication), commutativity does not hold. But for elementary arithmetic, yes, the order does not change the product.
Was this article helpful?
Rate with stars to help us improve the content.
Sign in to rate this article.
Still have questions?
The AI Professor explains step by step
Ask a question in natural language and get a personalised explanation about Numbers & Operations — or any other topic.
Prefer to solve it on your phone?
Download the free app →Keep learning