22.4Consecutive Natural Numbers
Mission progress0 / 10
Chapter 22 · Lesson 4

Turn Divisibility Claims into Remainder Classes

把整除断言转化为余数类

Use implications instead of testing every claim separately. Then turn “every pair has a divisible sum” into a small remainder-class problem.

Force the claims → build the number → compare the residue classes.
Worked example 4Guided Practice 310 interactive missionsWorks offline
Saved in this browser
Mission 1

Learn which way a divisibility claim travels

A true divisibility claim travels down to divisors. A false claim travels up to multiples.

Not complete

True claim: travel down

N is divisible by 1212 is the larger requirement
N is divisible by 2, 3, 4, and 6Every divisor of 12 also works

False claim: travel up

N is not divisible by 55 fails
N is not divisible by 10, 15, 20, …No multiple of 5 can work

Implication explorer

If the claim is true

If the claim is false

Checkpoint

Mission 2

Test every adjacent pair in the practice problem

Students 2 through 15 each claim that one five-digit number is divisible by their own label. Exactly two claims are false, their labels differ by 1, and every other claim is true. A label d means the claim “N is divisible by d.”

Not complete
original EXAMPLE 4

Which adjacent pair can be wrong?

Choose a proposed false pair. The runtime checker asks whether a five-digit number can be divisible by every other label from 2 through 15 while failing both chosen labels.

Checkpoint

Mission 3

Prove that labels 2 through 7 must be true

Assume one small label is false. Its double must also be false—but the two labels are not adjacent.

Not complete

Double-witness explorer

original proof chain

1
If label n is false, every multiple of n is false.
2
For 2 ≤ n ≤ 7, label 2n also lies from 4 through 14.
3
The labels n and 2n differ by n, so they are never adjacent.
4
That contradicts “exactly two adjacent labels are wrong.”

Checkpoint

Mission 4

Propagate the true claims and isolate the wrong pair

Once 2 through 7 are true, several larger labels become true automatically.

Not complete

Forced by least common multiples

1
Divisible by 2 and 5 ⇒ divisible by 10.
2
Divisible by 3 and 4 ⇒ divisible by 12.
3
Divisible by 2 and 7 ⇒ divisible by 14.

Isolated labels must also be true

Label 11 lies between true labels 10 and 12. Label 13 lies between 12 and 14. Label 15 could only form an adjacent false pair with 14, which is true.

So 11, 13, and 15 are true. Only the adjacent labels 8 and 9 remain.

Checkpoint

Mission 5

Build the five-digit number from the true labels

The number must be a common multiple of every true label, so start with their least common multiple.

Not complete
original EXAMPLE 4

Prime-factor ledger

The true labels require the prime powers in 12, 5, 7, 11, and 13.

Checkpoint

Mission 6

Audit any number against a line of divisibility claims

This added laboratory checks every label, groups consecutive false claims, and identifies the longest false run.

Not complete

Checkpoint for 60,060 and labels 2–15

Mission 7

Turn pairwise divisible sums into residue classes

Choose distinct whole numbers, using each at most once. Suppose at least three selected numbers have the property that the sum of every two distinct selected numbers is divisible by m.

Not complete

Three-residue proof

a + b ≡ 0 (mod m)
a + c ≡ 0 (mod m)

Subtract the two congruences:

b ≡ c (mod m)

Now use the pair b and c. Since b and c have the same remainder, their sum has the remainder of2b:

2b ≡ 0 (mod m)

Self-inverse residue classes

A residue class can hold several selected numbers only when adding the residue to itself gives 0.

Also a≡−b≡b, since2b≡0; thus all three have the same remainder. Any additional chosen value must share it by pairing with a. Two-number exception: with exactly two selected values, complementary residues r and m−r may work. The “all values lie in one self-inverse class” conclusion needs at least three selected values.

Checkpoint

Mission 8

Maximize the worked example selection by comparing residue classes

Guided Practice 3 asks for the largest subset of 1 through 1994 in which every pair has a sum divisible by 26.

Not complete
GUIDED PRACTICE 3

Only residues 0 and 13 can support three or more values

The two classes cannot be mixed, because 0+13 is not divisible by 26. Count each class and choose the larger one.

One maximum selection

Checkpoint for the worked example range

Try it on your own — a new problem

This extra practice has its own saved checkpoint. Try it, check your answer, then use a hint or the separate worked review.

Choose numbers from 1–30 so every pair of distinct chosen numbers has a sum divisible by 10. What is the largest possible number of choices?

Mission 9

Independent workshop

Correct all eight answers to complete the workshop.

Not complete
Workshop score0 / 8
Mission 10

Exit ticket and certificate

Correct all five items and complete the other nine missions to finish Lesson22.4.

Not complete
Exit score0 / 5

Divisibility Claim & Remainder-Class Architect

This certifies that a determined mathematician completed Lesson 22.4.

Chapter 22 · Consecutive Natural Numbers

original and instructional notes

The implication explorer, exhaustive adjacent-pair checker, general claim audit, and configurable maximum-selection laboratory are added instructional scaffolds.They preserve the original conditions while making the logic visible and testable.