Save
Computer Science GCSE WJEC
Unit 1
Boolean Algebra
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Evan Crecraft
Visit profile
Cards (25)
What is the commutative law for AND in Boolean algebra?
A.B
=
B.A
View source
What is the commutative law for OR in Boolean algebra?
A
+ B = B + A
View source
What is the commutative law for XOR in Boolean algebra?
A⊕B = B⊕A
View source
What is the associative law for AND in Boolean algebra?
A.(B.
C
) = (
A.B
).C
View source
What is the associative law for OR in Boolean algebra?
A + (B + C)
=
(A + B) + C
View source
What is the associative law for XOR in Boolean algebra?
A
⊕ (
B⊕C
) = (A⊕B) ⊕ C
View source
What is the purpose of the distributive law in Boolean algebra?
To expand brackets in
expressions
View source
What is the distributive law in Boolean algebra?
A.(B + C) =
A.B
+
A.C
View source
How can you factorise expressions in Boolean algebra?
By identifying
common factors
in
terms
View source
What does the
OR
operation
output when both inputs are true?
1 (true)
View source
What does the AND operation output when both inputs are true?
1
(true)
View source
What does the NOT operation output?
The opposite value of the
input
View source
What does the XOR operation output when both inputs are true?
0
(false)
View source
How do you simplify the expression P.(0 + P)?
Apply
distributive law
: P.(0 + P) = P.0 + P.P
Use
annulment law
: P.0 = 0
Use idempotent law: P.P = P
Final result: P
View source
How do you simplify the expression Q.(Q + P) + P.(Q + P)?
Expand brackets: Q.Q + Q.P + P.Q + P.P
Use
idempotent law
: Q + Q.P + P.Q + P
Factorise: Q(1 + P) + P(Q + 1)
Use
annulment law
: Q + P
View source
What does the absorptive law state in Boolean algebra?
A
+ (A.B) = A
View source
What is the order of precedence in Boolean algebra?
Brackets,
NOT
,
XOR
, AND, OR
View source
How is TRUE represented in Boolean algebra?
By
1
View source
How is FALSE represented in Boolean algebra?
By
0
View source
What does the logical operator OR represent in Boolean algebra?
A
+ B represents A OR B
View source
What does the logical operator AND represent in Boolean algebra?
A.B represents A
AND
B
View source
What does the logical operator NOT represent in Boolean algebra?
Ā
represents NOT A
View source
What does the logical operator XOR represent in Boolean algebra?
A⊕B
represents A XOR B
View source
What are the laws for simplifying Boolean expressions using OR operation?
Identity law
: A + 0 = A
Annulment law
: A + 1 = 1
Idempotent law
: A + A = A
Inverse law
: A +
Ā
= 1
View source
What are the laws for simplifying Boolean expressions using AND operation?
Identity law
: A.1 = A
Annulment law
: A.0 = 0
Idempotent law
: A.A = A
Complement law
: A.Ā = 0
View source