Problem: Show that there does not exist any integer coordinates to the curve $$y = \frac{x^2-3}{4}, x\in \mathbb{R}.$$
My attempt: The problem is equivalent of saying that there does not exist any $x\in \mathbb{R}$ such that $$x^2-3 \equiv 0 \text{ mod } 4.$$
I've tried to factor $x^2-3 \equiv (x+\sqrt{3})(x-\sqrt{3}) \text{ mod } 4$ and reason that this implies that $$ x+\sqrt{3} \text{ mod } 4$$ or $$ x-\sqrt{3} \text{ mod } 4.$$ This would then mean that $x = \pm \sqrt{3} + 4l, l \in \mathbb{Z}$, which is not an integer. I don't think such a solution would be valid though for example for $x = \sqrt{3}$ on of the factors $x \pm \sqrt{3}$ wouldn't be an integer. Would appreciate any insight on this problem.
This problem gives you a chance to review basic modulo arithmetic with the squares. So any integer can be either odd or even. Hence you can write: For any $x \in \mathbb{Z}$, $x = 2k$ or $x = 2k + 1$.
Thus: $x^2 = (2k)^2 = 4k^2 \equiv 0 \pmod 4$ or $x^2 = (2k + 1)^2 = 4(k^2 + k) + 1 \equiv 1\pmod 4$.
But your equation gives: $x^2 \equiv 3 \pmod 4$ and this can't happen. So the answer follows.