KnowledgeBoat Logo

Computer Science

Reduce the following boolean expression to its simple form:
A.[B + C.(A.B + A.C')]

Boolean Algebra

12 Likes

Answer


  A.[B + C.(A.B + A.C')]
= A.[B + A.B.C + A.C'.C]  [Distributive Law]
= A.[B + A.B.C + 0]       [Complementary Law: C'.C = 0]
= A.[B(1 + AC)]           [Distributive Law]
= A.B                     [∵ 1+AC=1]

Answered By

11 Likes


Related Questions