Boolean & K-Maps Flashcards
Week 4 (12 cards)
1
Q
identity law
A
1 ^ A = A
0 v A = 0
2
Q
Null law
A
0 ^ A = 0
1 v A = 1
3
Q
Idempotent law
A
A ^ A = A
A v A = A
4
Q
inverse law
A
A ^ ¬A = 0
A v ¬A = 1
5
Q
commutative law
A
A ^ B = B ^ A
A v B = B v A
6
Q
associative law
A
(A ^ B) ^ C = A ^ (B ^ C)
(A v B) v C = A v (B v C)
7
Q
distributive law
A
A v (B ^ C) = (A v B) ^ (A v C)
A ^ (B v C) = (A ^ B) v (A ^ C)
8
Q
absorption law
A
A ^ (A v B) = A
A v (A ^ B) = A
9
Q
de morgan’s law
A
¬(A ^ B) = ¬A v ¬B
¬(A v B) = ¬A ^ ¬B
10
Q
how to find DNF or SOP from K-Maps
A
- look for groups of 1sa
- group size 2^n only
- based on inputs determine a product (AND) term which evaluates to 1
11
Q
how to find CNF or POS from K-Maps
A
- look for groups of 0s
- group size 2^n only
- based on inputs determine a product (AND) term which evaluates to 0
12
Q
quine-mcluskey method
A
- tabulate expression & find pairs (where only one expression is different) - ¬A^B^C^D and ¬A^B^C^¬D give ¬A^B^C
- create a new table with terms left from the previous stage & find pairs & combine
- left with only terms that cannot be simplified further
- create a matrix & circle each x that is alone in a column
- put a square around any x that is in the same row as a circle x
- the terms with a square x are the terms of our minimised expression