Negate this sentence: "The integer n is odd only if 3n is odd" I need method to get the answer, not the answer itself Please, help
@perl
The integer n is odd only if 3n is even ??
How to get it?
p only if q means ' if p then q '
This is what I did: p: the integer n is odd q: 3n is odd p--> q then negate it
write it as an "if ... then..." statement first, then you will unconfuse yourself
I am not sure if it is right or not.. It is what I think..
how do we negate ' if p then q ' ? the negation is p and (not q)
the "only if" is annoying and confusing change it to "if P then Q" and you can negate it easily
p--> = ~p or q
negate the right hand side to gate p and not q
but it 's weird when verbalizing it.
If 3n is odd, then integer n is odd...
Let p = n is odd q = 3n is odd the original statement is 'if n is odd then 3n is odd. ' The negation is ' n is odd and 3n is not odd '
so the negation is n is odd and 3n is even
I am not allowed to use "Not" in my sentence
"not odd' we call "even" on planet earth
the opposite of odd (for integers) is even . if n is not odd, then n is even
@perl so that what I got, but it is weird, right? how n is odd and 3n is even, hahaha??
and we are assuming we are talking about ingegers
loser, yes it is weird, because it is false . (the original statement is true)
if you negate a true statement, you will get a false statement.
this is just a logical exercise ;)
if a statement is true, then its negated form will be false
ooooohhh.... yessssssssssss!
Thank you everybody. :)
lets prove the original statement is true. Given integer n is odd, then by definition of odd integer n = 2k+1 for some integer k. But now 3n = 3(2k+1) And 3n =3(2k+1) = 6k + 3 = 6k + 2 + 1 = 2(3k+1) + 1 So we have 3n = 2*m + 1 , where m = 3k+1 so 3n is an odd number by definition of odd integer.
its good to practice these proofs on your own
and since this is a true statement (since we proved it), if you negate it you know it will be false
I have proving problems like this too. It's not too hard to go over. But this problem confused me and your statement " negate true will get a false one" enlightens me. Thanks again.
Join our real-time social learning platform and learn together with your friends!