I need to prove that, given integers $a$, $b$, and $c$ such that
$a\mod6=3$, $b\mod8=3$, and $c\mod10=3$ then,
$(a + b + c) \mod6$ is odd.
Here's what I have tried.
By using the definition of mod and quotient remainder theorem, I get
$a = 6x + 3$
$b = 8y + 3$
$c = 10z + 3$
I then consider $a + b + c$:
$a + b + c = 6x + 3 + 8y + 3 + 10z + 3 = 6x + 8y + 10z + 9$
I know that I need to get that in the form $6q + r $ where q is an integer and r is odd. But it doesn't look like I can manipulate that equation to get it to be in the form $6q$ ... unless I'm not seeing something or I need to somehow use the definition of odd somewhere.
Update: I was able to show that $a + b + c$ is odd, by getting this:
$a + b + c = 2(3x + 4y + 5z + 4) + 1$
But now I'm stuck on how I would show that "an odd integer" mod 6 = an odd integer.