blob: f6cafe7dc2b57859d44871e68d3c3ab58614297e (
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
|
a'b' a'b ab ab'
c'd' 1 1
cd' 1 1
cd 1 1
cd' 1 1
From the map, high outputs are for 0,1,5,7,8,10,14,15
0. 0. 0. 0.
0. 0. 0. 1.
0. 1. 0. 1.
0. 1. 1. 1.
1. 0. 0. 0.
1. 0. 1. 0.
1. 1. 1. 0.
1. 1. 1. 1.
Evaluating expression from truth table and map
!a'b'c' d' + a'b'c'd + a'bc'd + a'bcd + ab'c' d' + ab'c d' + abc d' + abcd !
The resulting two possible solution are
F = a'c'd' + bc'd + acd + b'cd'
F = a'b'd' + a'bc' + abd + ab'c
|