Boolean Logic And Circuits Flashcards

1
Q

Properties of Boolean operators

What is commutativity?

A

Both the AND and OR operators are commutative
= meaning the order of inputs does not affect the result.

A AND B is the same as B AND A ; A OR B is the same as B OR A

AB = BA ; A+B = B+A

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

Properties of Boolean operators

What is associativity?

A

Both the AND and OR operators are associative
= meaning the grouping of inputs does not affect the result

(A AND B) AND C is the same as A AND (B AND C)

(AB)C = A(BC)

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

Properties of Boolean operators

What is distributivity?

A

The AND and OR operators follow the distributive property
= allowing simplification of complex expressions

A AND (B OR C) is the same as (A AND B) OR (A AND C))

A(B+C) = (AB) + (A*C)

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

The precedence of logical operators determines the “______” in which they are evaluated in an expression

What is the general precedence of logical operators?

A
  1. NOT (highest precedence) evaluated first
  2. AND evaluated second
  3. OR (lowest precedence) evaluated last

It’s recommended to use parentheses to explicitly specify the desired order of evaluation to avoid any ambiguity

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

What is De Morgan’s Law?

A

State that negation of a logical expression involving AND or OR can be obtained by negating the individual terms and changing the operator

NOT (A AND B) is equivalent to (NOT A) OR (NOT B)

NOT(A OR B) is equivalent to (NOT A) AND (NOTB)

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

How can we prove that De Morgan’s laws are true?

How can we see if two circuits or Boolean expressions are equivalent?

A

Using truth tables

(REFER TO SLIDES FOR EXAMPLE)

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

Given a truth table, what is the Boolean function?

To create a sum of product expression, what are the 5 steps to follow?

A
  1. Start with a truth table that describes the desired behavior of the Boolean function, listing all possible input combinations and their corresponding outputs
  2. Identify the rows of the truth table where the output is “True” (1)
  3. For each of these rows, create a logical AND term by combining the input variables with their corresponding values. Invert False (0) values with the NOT operator
  4. Find the product for each row using the AND operator
  5. Combine all the logical AND terms using the logical OR operator, representing the function as the sum of these terms
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Logic operators in python

What are compound conditions?

A

In python they are used to evaluate multiple conditions together using logical operators

The logical operators used for combining conditions are and, or, and not

Using the “and” operator:
• x > 5 and y < 10

Using the “or” operator:
• age >= 18 or has_permission

Using the not operator:
• not has_permission

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