How can I calculate the minimum DFA's number of states accepting strings whose length is not multiple of 9 based on an alphabet composed by 4 symbols?
My attempt is:
$L = \{w \in \{a,b,c,d\}^* : \text{9 does not divide |w|}\}$
that means there is not a whole number $z$ such that $|w| = 9\cdot z$
therefore $|w| \in \mathbb{N} - \{9, 18, 27, ...\}$
- How can I continue?