blob: 8d138f2ef42dfcea4b0d00af85b209fffd14e186 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
f(a,b,c) = Summation minterms (1,2,5) + Summation dont cares (0,3)
implies that minterms 1,2 and 5 are included in the function and that 0 and 3 are dont cares, that is the truth table is as follows:
a b c | f
0 0 0 | x
0 0 1 | 1
0 1 0 | 1
0 1 1 | x
1 0 0 | 0
1 0 1 | 1
1 1 0 | 0
1 1 1 | 0
|