blob: 4f835c66743bb92e5386c0f1f2053c24035c276f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
Given truth table
****************************************
A B C | f f'
0 0 0 | 1 1
0 0 1 | 0 0
0 1 0 | 1 0
0 1 1 | 1 0
1 0 0 | 1 0
1 0 1 | 0 0
1 1 0 | 0 1
1 1 1 | 0 1
f(A,B,C) = summation(1,2,3,4,5)
The complement of function is as given below
f'(A,B,C) = summation(0,6,7)
= A'B'C' + ABC' + ABC
= A'B'C' + AB
f = (A + B + C)(A' + B'
This is the reduced POS expression
|