Says i have this logic :
X = (A & B) | ~B
Which can be shorten to :
X = ~(~A & B)
and then :
X = A | ~B
so :
(A & B) | ~B = A | ~B
About this one, i can prove it drawing a truth table, but i still can not shorten the logic. The guy gave me the shorten logic told me to use De Morgan, but I can't do it through i'm aware of basic De Morgan law
Likewise :
A AND (A OR B) <=> A
This one i have no idea how it can be shorten like that!
Any explanation is greatly appreciated !!!
A | ~B = A | ~B? – DanZimm Aug 15 '14 at 09:23