CBSE Class 11 Computer Science
Question 56 of 68
Data Representation and Boolean Logic — Question 27
Back to all questionsa(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.