A number is divisible by 7 if, when we double the last digit and subtract it from the rest of the number, the result is a multiple of 7 (like 0, 7, 14, 21, etc.).
If the new number is still big, we can repeat the steps until we get a small number we can check easily.
Take the last digit of the number.
Double it. (Multiply it by 2)
Subtract this number from the rest of the number.
If the result is a multiple of 7 or becomes 0, then the number is divisible by 7
Take the last digit: 3
Double it: 3 × 2 = 6
Subtract from the rest of the number: 20 - 6 = 14
14 is a multiple of 7 (14 ÷ 7 = 2)
203 is divisible by 7.
Take the last digit: 4
Double it: 4 × 2 = 8
Subtract from the rest of the number: 36 - 8 = 28
28 is a multiple of 7 (28 ÷ 7 = 4)
364 is divisible by 7.
Are they divisible by 7?
1. 574
2. 133
3. 945