Show there is no $n>0$ where $n\in \mathbb{Z}$ such that $n$, $n+10$, $n+20$, $n+30$ are all prime

You're working in base $10$, right? If the sum of digits of a number is divisible by $3$, then the number itself is also divisible by $3$. For example, the digits of $489$ add up to $21$, which means that $489$ is divisible by $3$.

If we add $10$ to that, we get $499$, and its digits add up to $22$. Add another $10$ to get $509$, so the digits only add up to $14$, but notice that $2 + 2 = 4$ and $1 + 4 = 5$. Add another $10$ to get $519$, with digits adding up to $15$, that's divisible by $3$ just like $489$ is.


Since you specifically said "no solution" in bold, I will try to stop short of that.

Consider the number $30n + k$, where $n$ is any integer whatsoever and $k$ satisfies $0 \leq k < 30$. For what values of $k$ could $30n + k$ possibly be prime? Certainly not $k = 4$ or 6. In general, we want $\gcd(30, k) = 1$ (remember that $\gcd(30, 0) = 0$).

This means that if $k$ is one of these numbers: 1, 7, 11, 13, 17, 19, 23, 29, then $30n + k$ might be prime. Notice that 1 and 11 are in there, but 21 is not. 13 and 23 are in there, but 3 is not (of course only $n = 0$ will make $30n + 3$ prime).

I hope this points you in the right direction.