Expression:
$$(x\times y)'+(y\times z)$$
My attempt:
- $(xy)' + (yz)$
- $(x'+y') + (yz) \quad \textit{After applying de Morgan's Axiom}$
- $x' + (y' + yz) \quad \textit{After applying 1st Distributive Axiom}$
- $x'+ (y' + y) + (y'z) \quad \textit{Rewriting}$
- $x' + 1 + (y'z) \quad \textit{After applying Inverse Axiom}$
- $x' + y' + z \quad \textit{After applying second Identity Axiom}$
The answer is supposed to be: $(x'+y')+z$
N.B. I am still new to this and learning, I am using the following book:
Discrete Mathematics for Computing / Edition 3
by Peter Grossman
Question: What am I missing or have I done wrong?
There is a mistake on line 4. Applying Distribution on $y’ + (yz)$ will get you $(y’+y)(y’+z)$, and so line 4 should be $x’ + ((y’+ y)(y’+z))$
Accordingly, line 5 should be $x’+ 1(y’+z)$. In fact, if line 5 was what you have, $x’+1+y’z$, then your line 6 should be just $1$, because $1+ [anything]$ is always just $1$. (I don’t know if your book has an equivalence principle for that, but many books call it Annihilation)
I also note that between your line 5 and 6, the $y’z$ term suddenly changes to $y’+z$, which isn’t right either, so you made two mistakes in going from line 5 to line 6
Despite these mistakes, you somehow managed to reach the correct answer. As indicated, the correct line 5 should have been $x’+1(y’+z)$ which by Identity becomes $x’+y’+z$. So, you happened to get to the right answer, but you made several mistakes getting there.
Here is how you would have done this correctly:
$(xy)’+yz$
$(x’ +y’)+yz$ (DeMorgan)
$x’ + (y’ +yz)$ (Association)
$x’+ (y’+y)(y’+z)$ (Distribution)
$x’ + 1(y’+z)$ (Complement)
$x’+ (y’+z)$ (Identity)
$(x’+y’)+z$ (Association)
So … You were very close! It’s just a matter of staying calm and composed and carefully applying those patterns correctly!