Computer Science
Write the name of following law and verify using truth table:
a(b + c) = ab + ac
Boolean Algebra
1 Like
Answer
a(b + c) = ab + ac
is distributive law.
Truth Table
a | b | c | b+c | a.(b+c) | a.b | a.c | a.b + a.c |
---|---|---|---|---|---|---|---|
0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 |
0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 |
0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 |
1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
1 | 0 | 1 | 1 | 1 | 0 | 1 | 1 |
1 | 1 | 0 | 1 | 1 | 1 | 0 | 1 |
1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
As columns "a(b + c)" and "ab + ac" have same values, hence the expression is proved.
Answered By
1 Like
Related Questions
The Hexadecimal number system uses 16 literals (0 - 9, A - F). Write down its base value.
Explore and list the steps required to type in an Indian language using UNICODE.
Convert the following base of number system:
(a) (1010100)10 = (……………)2
(b) (3674)8 = (……………)2
(c) (266)10 = (……………)8
(d) (9F2)16 = (……………)2
Draw the logic circuit for the following Boolean expression:
(X'+Y).Z + W'