Assumption:
If the digit sum of $x ∈ ℕ ∩ [12, 100)$ is dividable by 3, it is also dividable by 12.
Examples:
- $12 → 1+2 = 3$;
$3 \mod 3 = 0 \Rightarrow 12 \mod 12 = 0$ - $13 → 1+3 = 4$;
$4 \mod 3 = 1 \Rightarrow 13 \mod 12 ≠ 0$ - $24 → 2+4 = 6$;
$6 \mod 3 = 0 \Rightarrow 24 \mod 12 = 0$
Assumption (more formal):
- Let $x ∈ ℕ ∩ [12, 100)$
- Notation used for x:
- $a_0$ describes the first digit from the right
- $a_1$ describes the seconds digit from the right
- ...
- Example: x = 32: $a_1 = 3$, $a_0 = 2$
- $(a_1 + a_0) \mod 3 = 0 \Rightarrow (a_1 \times 10 + a_0) \mod 12 = 0$
Question
How would I start from here? I know I could pick $15$ or other numbers to disprove by example. But I'd like to imagine (for the sole purpose of exercise) finding a specific example is too difficult.
Always try out enough examples to see whether or not the statement is actually provable.
$x=15$ is a counterexample: its digits sum to $6$, which is divisible by $3$, but $15$ isn't divisible by $12$.