Module 5
範囲の境界 (Han'i no Kyōkai)
帰国子女・インターナショナルスクール生のための、デジタルSAT 数学の無料教材。独学で進められます。
When a question asks how many integers lie in a range, two decisions change the answer: whether the endpoints count, and the +1.
The counting rule. The number of integers from a to b inclusive is b − a + 1, not b − a.
From 12 to 40 inclusive: 40 − 12 + 1 = 29. Sanity-check on a tiny case: from 1 to 3 inclusive there are 3 numbers (1, 2, 3), and 3 − 1 + 1 = 3. ✓
日本語の「12から40まで」のまでは、端の数を含みます。だから特に指定がなくても両端を含めて読むのが普通で、inclusive はわざわざ書く必要のない指定に見えます。英語の between は逆で、指定がなければ両端を含みません。+1 の抜けは日本語話者に限った間違いではありませんが、この二つが重なるのが日本語話者の失点パターンです。両端を含むと思い込み、さらに +1 を忘れます。この二つの誤りは打ち消し合いません。
How many integers are there from 12 to 40, inclusive?
Correct Answer: C
Explanation: 40 − 12 + 1 = 29.
40 − 12 − 1 — excluding both endpoints, which "inclusive" explicitly forbids.40 − 12. The single most common error in this module — the +1 was forgotten.Rated Easy, and it is still missed constantly. Verify the rule on a three-number case before you trust it on a twenty-nine-number one.
The integer x is between 3 and 11, exclusive. How many possible values does x have?
Correct Answer: B
Explanation: Exclusive means 3 and 11 do not count, so x runs 4, 5, 6, 7, 8, 9, 10 — 7 values. (Formula: 10 − 4 + 1 = 7.)
10 − 4 — the +1 was dropped after correctly handling exclusivity.11 − 3 — treats the range as though one endpoint counted.11 − 3 + 1 — the inclusive count. The word "exclusive" was ignored.Rated Medium: two independent decisions (endpoints, +1) each have a wrong answer waiting. With a range this small, write the numbers out — it takes six seconds and cannot be wrong.
How many multiples of 5 are there from 10 to 60, inclusive?
Correct Answer: B
Explanation: (60 − 10) ÷ 5 + 1 = 10 + 1 = 11. They are 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60.
(60 − 10) ÷ 5 — the +1 again.60 ÷ 5, which counts multiples of 5 starting from 5 rather than from 10.Rated Medium. The +1 rule survives division by the step size — divide the span by the step, then add one.