Find the number of solutions of the congruence equation
$y^2 = 3x^2-x-9$ (mod $109$)
My progress: Considering myself as a beginner to these type of complex problems in Number Theory, I wonder if there is non-brute force way to find the number of solutions of this congruence. Taking granted, my knowledge in such quadratic equations is pretty low, so any suggestion or related theorems/lemmas/methods would be welcomed! Thank you very much!
Usually you want to try something similar to completing squares. So some knowledge of quadratic residues/ reciprocity is helpful. In this case, observe that $p=109$ is prime and we can write \begin{align*} y^2 & = 3x^2-x-9 \pmod{109}\\ &=3x^2-x+\color{red}{100} \pmod{109}\\ &=\color{red}{(60)^2}x-x+100 \pmod{109}\\ y^2&=(60)^2x-\color{red}{1200}x+(10)^2 \pmod{109}\\ y^2&=(60x-10)^2 \pmod{109}. \end{align*} Using the prime property ($p | ab \implies p|a \text{ or } p|b$) we get $$y-60x+10 \equiv 0 \pmod{109} \text{ or } y+60x-10 \equiv 0 \pmod{109}.$$ Now you can count the solutions.