simplify(~(~(x | y) & ~(y | z)))
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I don't understand why it is equivalent to x | y | z . Can someone please help to explain this to me?
0 commentaires
Réponse acceptée
Jan
le 10 Août 2017
Modifié(e) : Jan
le 10 Août 2017
~(x | y) <==> ~x & ~y
~(x & y) <==> ~x | ~y
Then
~(~(x | y) & ~(y | z)) ==>
~((~x & ~y) & (~y & ~z)) ==>
~(~x & ~y) | ~(~y & ~z) ==>
~~x | ~~y | ~~y | ~~z ==>
x | y | y | z ==>
x | y | z
Applying the operations from the outside to the inside is faster:
~(~(x | y) & ~(y | z)) ==>
~~(x | y) | ~~(x | z) ==>
x | y | y | z
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Calculus dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!