KnowledgeBoat Logo

Computer Science

Simplify the following expression using laws of boolean algebra:
(a.b + x + y + z).(a.b + x'.y'.z')

Boolean Algebra

15 Likes

Answer


(a.b + x + y + z).(a.b + x'.y'.z')
= a.b + [(x + y + z).(x'.y'.z')]      [Distributive Law]
= a.b + [(x + y + z).(x + y + z)']    [De-Morgan's Law]
= a.b + 0                             [Complementary Law: (x + y + z).(x + y + z)' = 0]
= a.b

Answered By

9 Likes


Related Questions