← 2025 Paper 2
UPSC Maths 2025 Paper 2 Q5c-ii — Solution
5 marks · Section B
Question
Determine the truth table for the Boolean function F(x,y,z)=(x+y+z′)(x′+y′). Also derive the full disjunctive normal form of F(x,y,z) from the truth table.
Technique
Evaluate the product-of-sums expression over all 23=8 input combinations to build the truth table, then collect the minterms (rows where F=1) to write the full disjunctive normal form (canonical sum of products).
Solution
Here + is OR, juxtaposition is AND, and prime is complement. Evaluate F=(x+y+z′)(x′+y′). Note that (x′+y′)=0 only when x=y=1, and (x+y+z′)=0 only when x=0,y=0,z=1.
| x | y | z | x+y+z′ | x′+y′ | F |
|---|
| 0 | 0 | 0 | 1 | 1 | 1 |
| 0 | 0 | 1 | 0 | 1 | 0 |
| 0 | 1 | 0 | 1 | 1 | 1 |
| 0 | 1 | 1 | 1 | 1 | 1 |
| 1 | 0 | 0 | 1 | 1 | 1 |
| 1 | 0 | 1 | 1 | 1 | 1 |
| 1 | 1 | 0 | 1 | 0 | 0 |
| 1 | 1 | 1 | 1 | 0 | 0 |
F=1 in rows 0,2,3,4,5, i.e. minterms m0,m2,m3,m4,m5.
Full disjunctive normal form (sum of minterms). Each minterm uses every variable, primed where the variable is 0:
- m0: (x,y,z)=(0,0,0)→x′y′z′
- m2: (0,1,0)→x′yz′
- m3: (0,1,1)→x′yz
- m4: (1,0,0)→xy′z′
- m5: (1,0,1)→xy′z
F(x,y,z)=x′y′z′+x′yz′+x′yz+xy′z′+xy′z=∑m(0,2,3,4,5).
Answer
F(x,y,z)=x′y′z′+x′yz′+x′yz+xy′z′+xy′z
(minterms 0,2,3,4,5).