I need to find all the common roots of the two polynimials $10x^{15}+9x^2+1$ and $10x^{15}+8x^2+2$ over $GF(19)$. 1 is not a root of either. The only method that I can come up with is trying brute force to just divide the polynomials by $x-r$ where $r \in GF(19)$. What am I not seeing here that I can only come up with this method? What did I not understand?
In general, is there an efficient way to find the roots of a polynomial over a finite field?
Thank you for your help.