Computer Science

Verify the following using truth table:

(i) a.(a+b) = a

(ii) X.(Y+Z) = X.Y + X.Z

Boolean Algebra

3 Likes

Answer

(i) a.(a+b) = a

Truth Table

aba + ba.(a+b)a
00000
01100
10111
11111

As columns "a.(a+b)" and "a" have same values, hence the expression is proved.

(ii) X.(Y+Z) = X.Y + X.Z

Truth Table

XYZY+ZX.(Y+Z)X.YX.ZX.Y+X.Z
00000000
00110000
01010000
01110000
10000000
10111011
11011101
11111111

As columns X.(Y+Z) and X.Y+X.Z have same values, hence the expression is proved.

Answered By

1 Like


Related Questions