$$3x^2 - 5y^2 + 7z^2 = 0$$
I am totally lost with this question and I have no clue where or even how to start this. There is a little hint given saying I might want to consider the equation modulo different integers. I don't even know how to do modulos for I was never taught.
Modulo basically means remainder. A number
$$n\mod m$$
(read $n$ modulo (or mod) $m$) is the remainder when $n$ is divided by $m$. Furthermore,
$$n\equiv k\mod m$$
(read $n$ is equivalent to $k$ mod $m$) means that $n$ and $k$ give the same remainder when divided by $m$, or that
$$m|(n-k)$$
This is useful because we can consider the "residues" (basically meaning remainders) that applying different functions to numbers yields, $\mod m$. For instance, the residues of $x^2\mod m$ are just the set of remainders that $x^2$ can leave when divided by $m$. When $m=4$, we have that
$$0^2\mod 4 = 0$$
$$1^2\mod 4 = 1$$
$$2^2\mod 4 = 0$$
$$3^2\mod 4 = 1$$
$$(4n+k)^2\equiv 16n^2+8nk+k^2 \equiv 4(4n^2+2nk)+k^2\equiv k^2\mod 4$$
Because of these relations, the residues that $x^2$ can leave $\mod 4$ are $0$ and $1$. From this, we know that there exist no integer solutions to
$$x^2=4k+2$$
or
$$x^2=4k+3$$
which can be very important in number theory.
Hint on this specific problem: Consider the problem $\mod 3$. What residues could $3x^2$,$-5y^2$, or $7z^2$ leave $\mod 3$? When does the equation equal $0\mod 3$?