Chapter 41 - Simplifying Boolean expressions Flashcards

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

What is the purpose of De Morgan’s laws?

A

» Can manipulate and simplify Boolean expressions

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

» Why are De Morgan’s laws beneficial to manufacturing?

A

» Any Boolean function can be converted to which uses only NAND or only NOR functions

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

Why is it beneficial for any integrated circuit to be built just from one type of logic gate?

A

» Costs can be kept down by using only one type of gate

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

What is De Morgan’s First Law?

A

» States that ¬(A v B) = ¬A ∧ ¬B

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

What is De Morgan’s Second Law?

A

» ¬( A ∧ B ) = ¬A v ¬B

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

What are the three steps to implement each of de Morgan’s Law?

A

» Complement both terms in the expression
» Change AND to OR and OR to AND
» Complement the results

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

What does X and 0 equal to?

A

» 0

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

What does X and 1 equal to?

A

» X

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

What does X and X equal to?

A

» X

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

What does X and NOT X equal to?

A

» 0

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

What does X or 0 equal to?

A

» X

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

What does X or 1 equal to?

A

» 1

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

What does X or X equal to?

A

» X

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

What does X or NOT X equal to?

A

» 1

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

What are the 2 Commutative rules?

A

» x AND y = y AND x
x OR y = y OR x

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

What is the purpose of a Truth table?

A

» Shows every possible input and output combination

17
Q

What does the commutative rule state?

A

» That any value in AND or OR expressions can be swapped without changing the results

18
Q

What does the Associative law state?

A

» Confirms that the order of operators in an expression has no impact on the results

19
Q

What are the associative rules?

A

» x and ( y and z ) = ( x and y) and z
» x or (y or z) = (x or y) or z

20
Q

What does The distributive law state?

A

» A value outside of a set of brackets can be distributed between the values within the brackets

21
Q

What are the Distributive Laws?

A

» X.(Y+Z)=(X.Y)+(X.Z)
» X+(Y.Z)=(X+Y).(X+Z)

22
Q

What does the absorption rule state?

A

» A value outside the bracket can cancel out a value inside the bracket

23
Q

What are the 2 rules in order for absorption to happen?

A

» The value outside the brackets must be present within the brackets
» The operators inside and outside the brackets must be different