You are on page 1of 17

Boolean Logic

Boolean Operators (T/F)


x y x AND y
x NOT x
F F F
F T
F T F
T F
T F F
T T T

x y x OR y
F F F
F T T
T F T
T T T
Boolean Operators (1/0)
x y x AND y
x NOT x
0 0 0
0 1
0 1 0
1 0
1 0 0
1 1 1

x y x OR y
0 0 0
0 1 1
1 0 1
1 1 1
More Boolean Operators (1/0)
x y x NAND y
NAND = NOT(x AND y)
NOR = NOT(x OR y) 0 0 1
XOR = EXCLUSIVE OR 0 1 1
1 0 1
1 1 0

x y x NOR y x y x XOR y
0 0 1 0 0 0
0 1 0 0 1 1
1 0 0 1 0 1
1 1 0 1 1 0
Boolean Expressions
Follows a logical order of operations
1. NOT operators
2. Parentheses
3. AND
4. OR
Examples:
x OR y AND z
x OR (y AND z) Do it this way just in case
Truth Tables
Write out table of all
x y z x OR (y AND z)
possible combinations
F F F F
of truth values
F F T F
Evaluate the boolean F T F F
expression for all F T T T
combinations T F F T
T F T T
Example
T T F T
x OR y AND z
T T T T
Example
What is the truth table for: NOT x OR y?
x y NOT x OR y
F F
F T
T F
T T
Another Example
What is the truth table for: x AND NOT y?
x y x AND NOT y
F F
F T
T F
T T
Your Turn
What is the truth table for the Boolean
expression: x OR NOT y OR z?
Your Turn
What is the truth table for the Boolean
expression: x NAND y OR NOT z
Your turn
What is the truth table for the Boolean
expression: a AND (b XOR c)
Partner Practice
1. Write a Boolean expression with no more
than 3 variables (you can have multiple
Boolean operators)
2. Swap boards with somebody else in the
room
3. Write the truth table for the expression
Problem Scenarios
1. You will be given a scenario
2. Identify the input variables
3. Write the Boolean expression
4. Construct the truth table
Scenario #1
Either the sun is shining or rain is falling

1. Identify the input variables


2. Write the Boolean expression
3. Construct the truth table
Scenario #2
Maria wont go to school if it is cold and
raining or she has not done her homework.

1. Identify the input variables


2. Write the Boolean expression
3. Construct the truth table
Scenario #3
Your car has 4 wheel drive, which turns on
when the temperature is freezing or when
you hit the manual override, but you cannot
turn on the override when you are going
over 60 mph.
1. Identify the input variables
2. Write the Boolean expression
3. Construct the truth table
Scenario #4
You are ordering dinner, and your options
are a burger, fries, and vegetables. You
cannot get a burger and a side of fries
together. The healthy option of steamed
vegetables is allowed with your burger.

You might also like