edited by
494 views

3 Answers

Best answer
1 votes
1 votes

The circuit is 

The Output of the $1^{st}$ NOR Gate will be 

Truth Table :

$a$ $a$ $Output = \overline{a}$
$0$ $0$ $1$
$1$ $1$ $0$

The output of the $2^{nd}$ NOR Gate will be: 

Truth Table :

$b$ $c$ $Output = \overline{b+c}$
$0$ $0$ $1$
$0$ $1$ $0$
$1$ $0$ $0$
$1$ $1$ $0$

The output of the $3^{rd}$ NOR Gate will be 

Truth Table :

$a$ $b$ $c$ $\overline{a}$ $b+c$ $\overline{b+c}$ $\overline{a}+\overline{b+c}$

$\overline{\overline{a}+\overline{b+c}} = $

$a.(b+c)$

0 0 0 1 0 1 1 0
0 0 1 1 1 0 1 0
0 1 0 1 1 0 1 0
0 1 1 1 1 0 1 0
1 0 0 0 0 1 1 0
1 0 1 0 1 0 0 1
1 1 0 0 1 0 0 1
1 1 1 0 1 0 0 1

∴ The output of the circuit will be : $f = \overline{\overline{a}+\overline{b+c}} = a.(b+c)$

selected by
1 votes
1 votes
You could do it directly using $NOR$ Gate, Small circuits, Wouldn't take much time.

But must faster way to solve it is that It is a Two-level NOR-NOR Circuits, So, It can be Replaced by Two Level OR-AND circuit. i.e. Both NOR Gates at the first level can be replaced by OR gates and the NOR gate at the second level can be replaced by AND gate. Thus, We have $f = a(b+c)$

Related questions

1 votes
1 votes
0 answers
2
1 votes
1 votes
3 answers
3
srestha asked Jan 27, 2018
1,013 views
Can P) and Q) could be answer same time (Number of NAND and NOR gates could be same)?
3 votes
3 votes
1 answer
4
thepeeyoosh asked Jan 16, 2018
466 views