blob: 12e7950f21480f76a6834d7d260cbe799efb7b84 (
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
|
C'D' C'D CD CD'
A'B' 1 1 1 1
AB' 0 0 0 1
AB 0 1 0 1
AB' 1 1 1 0
From the map, high outputs for 0,2,4,6,7,8,9,11,12,14
0. 0. 0. 0.
0. 0. 1. 0.
0. 1. 0. 0.
0. 1. 1. 0.
0. 1. 1. 1.
1. 1. 1. 0.
1. 0. 0. 1.
1. 0. 1. 1.
1. 1. 0. 0.
1. 1. 1. 0.
Evaluating expression from truth table and map
!a'b'c' d' + a'b'c d' + a'bc' d' + a'bc d' + a'bcd + abc d' + ab'c'd + ab'cd + abc' d' + abc d' !
Reduced expression using boolean algebra
f= a'd' + bd' + a'bc + ab'd + c'd'
|