Boolean & K-Maps Flashcards

Week 4 (12 cards)

1
Q

identity law

A

1 ^ A = A
0 v A = 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Null law

A

0 ^ A = 0
1 v A = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Idempotent law

A

A ^ A = A
A v A = A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

inverse law

A

A ^ ¬A = 0
A v ¬A = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

commutative law

A

A ^ B = B ^ A
A v B = B v A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

associative law

A

(A ^ B) ^ C = A ^ (B ^ C)
(A v B) v C = A v (B v C)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

distributive law

A

A v (B ^ C) = (A v B) ^ (A v C)
A ^ (B v C) = (A ^ B) v (A ^ C)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

absorption law

A

A ^ (A v B) = A
A v (A ^ B) = A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

de morgan’s law

A

¬(A ^ B) = ¬A v ¬B
¬(A v B) = ¬A ^ ¬B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

quine-mcluskey method

A
  1. tabulate expression & find pairs (where only one expression is different) - ¬A^B^C^D and ¬A^B^C^¬D give ¬A^B^C
  2. create a new table with terms left from the previous stage & find pairs & combine
  3. left with only terms that cannot be simplified further
  4. create a matrix & circle each x that is alone in a column
  5. put a square around any x that is in the same row as a circle x
  6. the terms with a square x are the terms of our minimised expression
How well did you know this?
1
Not at all
2
3
4
5
Perfectly