I am trying to solve the following problem:
How many roots can a polynomial $P(x) = ax^2 + bx + c $, where $a$, $b$, $c \in \mathbb{Z_{18}}$, have?
($\mathbb{Z_{18}} = \{0, 1, 2, \ldots, 17\}$)
Obviously, they can not have more than 18 roots.
If it was in real numbers the answer would be either 2 or 0 as real polynomials have as many roots (can be pairs of complex numbers) as is their exponent.
I tried this...
Let $x_1$ be a root of $p(x)$.
Another root $x_2$ may exist;
$ 0 = a(x_1)^2 + bx_1 + c = a(x_2)^2 + bx_2 + c$
$ a(x_1)^2 + bx_1 = a(x_2)^2 + bx_2$
$ a((x_1)^2 - (x_2)^2) = b(x_2 - x_1)$
I can't just say $(x_1)^2 - (x_2)^2 = 0$ as there are zero divisors in $\mathbb{Z_{18}}$.
Is any of this in the right direction? I could use some help.
And is there a more general way I could describe possible roots of polynomials from that ring?