短い答え
長い除算では、除算の問題を、除算、乗算、減算、引き下げという繰り返しのステップに分割します。 1,234 ÷ 12 の場合: 12 を最初の桁に割り、その桁で約数を掛け、引き算して次の桁を減らし、これを繰り返します。線の上の数字は商を形成します。最後の減算後に残ったものが剰余となります。
重要なポイント
- すべてのステップは、同じ 4 つの移動サイクル (除算、乗算、減算、引き下げる) に従い、引き下げる桁がなくなるまで繰り返されます。
- A remainder of 0 means the division is exact; a nonzero remainder means the answer either continues as a decimal or is best left as "quotient remainder R."
- 小数が終了するか永遠に繰り返すかは、約数の最低項の素因数にのみ依存します。2 と 5 は終了し、他の素因数は繰り返します。
- 小数で割る?除数が整数になるまで、被除数と除数の両方で小数点を同じ桁数だけシフトし、その後、通常の除算を行います。
The four-step long division cycle
| ステップ | 操作 |
|---|---|
| 1. Divide | How many times does the divisor fit into the current digits? |
| 2. Multiply | Multiply the divisor by that digit |
| 3. Subtract | 引き算して残りを見つけます |
| 4. 降ろす | 次の桁を下げて繰り返します |
Worked example: 1,234 ÷ 12
12 into 12 (first two digits) = 1, remainder 0
Bring down 3 → 03; 12 into 3 = 0, remainder 3
4→34を倒す。 12 を 34 にすると = 2、余りが 10
Quotient: 102, remainder 10
So 1,234 ÷ 12 = 102 remainder 10, or 102.8333... as a repeating decimal. Since 12 = 2² × 3, and 3 isn't a factor of 2 or 5, the decimal never terminates — it repeats the digit 3 forever.
小数による除算
12.5 ÷ 0.25
両方の 2 桁を右にシフトします (0.25 は小数点以下 2 桁です): 1250 ÷ 25
1250 ÷ 25 = 50
Multiplying both numbers by the same power of 10 doesn't change the answer — it just clears the decimal from the divisor so ordinary long division applies. This is the same principle as multiplying a fraction's numerator and denominator by the same number.
避けるべきよくある間違い
- 続行する前に数字を下げるのを忘れると、その後に続くすべての数字がずれてしまい、答え全体が狂ってしまいます。
- Misplacing the decimal point in the quotient — it belongs directly above the decimal point in the dividend, not wherever feels natural.
- Reporting a remainder when a decimal answer was expected, or vice versa — check what form the question actually wants.
- 除数の小数点を同じ量だけシフトせずに被除数の小数点をシフトすると、問題の値が変わります。
関連する電卓
- 基本的な電卓 — get a quick decimal answer without the full step-by-step breakdown.
- 分数計算機 — express the same division as an exact fraction instead of a decimal.
- 四捨五入計算機 — round a repeating or long decimal result to a usable number of places.
- Percentage Calculator — 除算結果を直接パーセンテージに変換します。