GATE CSE · Digital Logic
Generate GATE-level questions covering Boolean identities, De Morgan’s laws, simplification of expressions, canonical forms (SOP/POS), and equivalence transformations. Include tricky simplification and expression evaluation problems.
Concept summary for GATE CSE 2027 · 195 practice questions available
Mathematical structure for binary variables and logical operations. Variables take values 0 or 1 only.
| Law | AND form | OR form |
|---|---|---|
| Identity | A·1 = A | A+0 = A |
| Null | A·0 = 0 | A+1 = 1 |
| Idempotent | A·A = A | A+A = A |
| Complement | A·A' = 0 | A+A' = 1 |
| Absorption | A·(A+B) = A | A+(A·B) = A |
| De Morgan's | (A·B)' = A'+B' | (A+B)' = A'·B' |
Every Boolean expression remains valid if AND↔OR and 0↔1 are swapped simultaneously.
Simplification questions: apply absorption and De Morgan's first - they give maximum reduction fastest. Consensus theorem removes a term without introducing new variables.