I have a few problems proving stuff with integers, basically the most basic stuff is driving mad right now.
Basically, there's two exercices.
1) If 3x is even, then x is even
Which is true (I think, at least). The method of resolution that I have here assumes x is even, and then proves that 3x is also even. But that's completely the opposite of what I need. Using some methods that I saw in other questions, the only way I could think of is doing something like this:
"Assuming 3x is even, then 3x = 2a and x = $\frac{{2}}{3}a$, so x = $2(\frac{{1}}{3}a)$ and $(\frac{{1}}{3}a) = b$. Finally, x = 2b proves that x is even.
Naturally, both a and b are integers.
1) If 4x is even, then x is even
This is clearly false, and it's pretty easy to find a counterexample.
Except that if I use the method above, I can easily prove a FALSE statement.
Doing a quick copy paste:
"Assuming 4x is even, then 4x = 2a and x = $\frac{{1}}{2}a$, so x = $2(\frac{{1}}{4}a)$ and $(\frac{{1}}{4}a) = b$. Finally, x = 2b proves that x is even.
I am of course doing something very wrong somewhere, but I can't find a recipe for this.
Thank you very much!
Instead, in your first proof, I would say: let $3x = 2a$. Then $a$ is divisible by $3$, so $a = 3n$ for some integer $n$. Consequently, $x = 2n$, even.
I think you would find it useful to learn (if you haven't yet) the proof that $\sqrt{2}$ is irrational.
– avs Aug 17 '16 at 00:34