Save
Computer Science
Computer Systems
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
willow
Visit profile
Cards (11)
Boolean algebra concerns representing values with
letters
and
simplifying
expressions
View source
Boolean values
TRUE
and
FALSE
, which can be represented as 1 and 0 respectively
View source
Boolean algebra notation
A,
B
, C, etc. (unknown
Boolean
values)
A
(NOT
A
)
A •
B
(A AND
B
)
AB
(alternative notation for A AND
B
)
A +
B
(A OR
B
)
View source
Algebraic operations have an order of
precedence
, meaning that some operations must be applied
before
others
View source
Order of precedence in Boolean algebra
Brackets
NOT
AND
OR
View source
Boolean identities
A • 0 =
0
B
• 1 =
B
C •
C
=
C
D + 0 =
D
E +
1
=
1
F +
F
=
F
G =
G
View source
De
Morgan's laws
"
Break the bar and change the sign
"
View source
Applying De
Morgan's
laws
1.
Break
the
bar
2.
Change
the
sign
View source
Distributive rules in Boolean algebra: A
•
(B + C) = A
•
B + A • C
View source
Example 1: Simplify A + B • A
A
+
B
• A
=
B
+
A
=
1
View source
Example 2: Simplify C • B + C • B
C •
B
+ C • B
=
B
• (
C
+ C)
=
B
View source