SLR 15 Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What are the two De Morgan laws in Boolean algebra

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
2
Q

What are the 8 basic laws of Boolean Algebra

A

X ^ TRUE = X
X ^ FALSE = FALSE
X ^ X = X
X ^ ¬X = FALSE

X v TRUE = TRUE
X v FALSE = X
X v X = X
X v ¬X = TRUE

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

How to represent the logical operators

A

¬ = NOT
v = OR
^ = AND

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

What are the commutativity rules in Boolean algebra

A

X v Y = Y v X

X ^ Y = Y ^ X

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

What are the associativity rules in Boolean algebra

A

(X v Y) v Z = X v (Y v Z)

(X ^ Y) ^ Z = X ^ (Y ^ Z)

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

What are the distributivity rules in Boolean algebra

A

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

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

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

What are the absorbtion rules in Boolean algebra

A

X v (X ^ Y) = X

X ^ (X v Y) = X

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

What is double negation in Boolean algebra

A

¬¬X = X

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

What mathematical operators can be used to represent the Boolean operators?

A
  • == AND
    + == OR
    + == XOR (kinda)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does DNF stand for in Boolean algebra and what does it mean?

A

Disjunctive normal form, AND expressions joined by ORs

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

What does CNF stand for in boolean algebra and what deos it mean

A

Conjunctive normal form, OR expressions joined by ANDs

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

What is an Adder in boolean algebra

A

Logic gate circuitry for adding two values.

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

What is the difference between half- and full-adders?

A

Half adders do not take into account the previous “carry” bit from other calculations, whereas full-adders do.

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

What is a Flip-Flop in boolean logic

A

The building block for almost all memory devices, can store one bit and toggle 0–>1, 1–>0

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