from that statement let a = 2 and b = 6 => 6 * 2 = 12 so the statement if ab is odd then a is odd or b is even is wrong because 6 is even and we have one more test case which is b must be even, and b is even but still the answer is even. |
What the statement is saying is that an odd product's factors are either both odd, or one of them is even. Case 1: odd(A) && odd(B) odd(AB) => odd(A) || even(B) T => T || F T => T T Case 2: odd(A) && even(B) odd(AB) => odd(A) || even(B) T => T || T T => T T |
lets say A is 3 and B is 6, A is odd that is true so we don't even have to check for the second condition, so this equals true? but 3 x 6 = 18 and 18 is not odd? |
but for the product of two numbers to be odd I thought both numbers have to be odd? |
We know that odd(AB) => odd(A) && odd(B) (i.e. "both factors of an odd product have to be odd"), but we can make a weaker statement*: odd(AB) => odd(A) || odd(B) ("at least one of the factors must be odd"). Because AB = BA, odd(A) || odd(B) can be simplified to odd(A), so we get odd(AB) => odd(A). |
How is it that we can make 1: odd(AB) => odd(A) || odd(B)? going back to normal math -> 2: odd(AB) => odd(A) && odd(B) but both the former(1) and latter(2) are much different? |
I know in boolean algebra that AB + A will give A as A(B+1) = A(1) = A, but how does odd(AB) or odd(BA) simplify to odd(A)? |
I already explained every step of the way. odd(AB) => odd(A) && odd(B) implies odd(AB) => odd(A) || odd(B) is equivalent to odd(AB) => odd(A) is equivalent to odd(AB) => odd(A) || false is equivalent to odd(AB) => odd(A) || even(B) |
I understand odd(AB) => odd(A) && odd(B) but how does this imply odd(AB) => odd(A) || odd(B)? |
|
|
if n is prime and not 2, then n is odd". Is 9 a counterexample? |
Consider this statement: "if n is prime and not 2, then n is odd". Is 9 a counterexample? |
insert weird symbol that means BS here in serious papers |
9 is not a prime number and not 2 = False then n is odd = False |
so this would still be P -> Q so then 9 is a counterexample? |
9 is not a prime number and not 2 = False then n is odd = False |
I already explained every step of the way. odd(AB) => odd(A) && odd(B) implies odd(AB) => odd(A) || odd(B) |
but we can make a weaker statement odd(AB) => odd(A) && odd(B) implies odd(AB) => odd(A) || odd(B) |
We know that odd(AB) => odd(A) && odd(B) (i.e. "both factors of an odd product have to be odd"), but we can make a weaker statement*: odd(AB) => odd(A) || odd(B) ("at least one of the factors must be odd"). Because AB = BA, odd(A) || odd(B) can be simplified to odd(A), so we get odd(AB) => odd(A). |
should be odd and also not be a prime number. so yes 9 is a counterexample |
how does odd(AB) => odd(A) && odd(B) imply odd(AB) => odd(A) || odd(B) ? |
Example: "If x is a man then x is mortal". If y is not a man then you know nothing about its mortality. If z is mortal then you know nothing about its humanity. |