Consider the recursive definition of the natural numbers:
- Basis: $0 \in \mathbb{N}$
- Recursive step: if $n \in \mathbb{N}$ , then $s(n) \in \mathbb{N} $
Give recursive definitions of:
- $T_0$ the set of natural numbers that are divisible by 3
- $T_1$ the set of natural numbers with a remainder of 1 when divided by 3
I'm having trouble understanding the adaptation of the basis and recursion step for natural numbers. Should I approach it something like:
Basis: if $n = 0, {0\over 3}$ is divisible by 3
Recursive: if $n \in \mathbb{N} $, then $s(n+3)$ is divisible by 3 ( where $s$ is the successor function )
I will of course need some type of closure. I would appreciate any help trying to grasp the concept