Logical Connectives - Beginner Level: AND-OR-NOT logic BEGINNER

Ready to master logical connectives? This concept mastery features 20 beginner-level challenges. Worksheet 2 of 30 sharpens your AND-OR-NOT logic skills. Master AND-OR-NOT logic, conditional statements, logical connectives through guided practice. Perfect for entry-level test preparation.

📝 Worksheet 2 of 30 • 20 questions • ⏱️ Estimated time: 20 minutes • 🎯 Beginner level

What you'll learn in this worksheet:
Your progress through Logical Connectives
Worksheet 2 of 30 (6% complete)

Question 1

Complete the truth table for the expression: (p ↔ q) ∧ r What is the truth value when p=T, q=T, r=T?
Step 1: Break down the expression
Expression: (p ↔ q) ∧ r
Given: p=T, q=T, r=T

Step 2: Evaluate inner expressions first
p ↔ q = T ↔ T = T
(Biconditional is True when both have same value)

Step 3: Evaluate outer expression
T ∧ T = True
Remember: AND is True only when both operands are True

Question 2

Consider the statement: 'Neither p nor q' If p is T and q is F, what is the truth value of 'Neither p nor q'?
Step 1: Understand 'neither...nor' statements
'Neither p nor q' means 'not p AND not q'
Logical form: ¬p ∧ ¬q

Step 2: Build the truth table
¬p ∧ ¬q is True ONLY when both p and q are False
Truth table:
p=T, q=T → ¬T ∧ ¬T = F ∧ F = F
p=T, q=F → ¬T ∧ ¬F = F ∧ T = F
p=F, q=T → ¬F ∧ ¬T = T ∧ F = F
p=F, q=F → ¬F ∧ ¬F = T ∧ T = T

Step 3: Apply given values
p = T, q = F
¬p = F, ¬q = T
¬p ∧ ¬q = F

Answer: False

Question 3

Evaluate the compound logical expression: p → (q ∧ r) Given: p = True, q = False, r = True
Step 1: Break down the compound expression
Expression: p → (q ∧ r)

Step 2: Evaluate inner expression first
q ∧ r = False ∧ True = False

Step 3: Evaluate outer expression
p → (False) = True → False = False
Implication is False only when antecedent is True and consequent is False

Question 4

Convert the following to standard logical form: "A number is prime only if it is greater than 1" What is the correct conditional representation?
Step 1: Understand 'only if' statements
'P only if Q' means 'If P, then Q' (P → Q)
This is DIFFERENT from 'If Q then P' (Q → P)

Key insight: 'only if' introduces a NECESSARY condition
Q is necessary for P (P cannot be true without Q)

Step 2: Identify components
Statement: A number is prime only if it is greater than 1
P: Number is prime, G: Greater than 1

Step 3: Convert to logical form
Logical form: P → G
Equivalent: If a number is prime, then it is greater than 1

Step 4: Important distinction
Note: Being greater than 1 is necessary but not sufficient
'Only if' ≠ 'If and only if'
'Only if' gives one direction only (→)
'If and only if' gives both directions (↔)

Question 5

Evaluate the compound logical expression: (p ∧ q) ∨ r Given: p = True, q = False, r = False
Step 1: Break down the compound expression
Expression: (p ∧ q) ∨ r

Step 2: Evaluate inner expression first
p ∧ q = True ∧ False = False

Step 3: Evaluate outer expression
(False) ∨ False = False
Since OR is True when at least one operand is True

Question 6

Consider the statements: p: The car has fuel q: The car engine is working If p is False and q is True, what is the truth value of p ∧ q (p AND q)?
Step 1: Understand the conjunction (AND) operator
The conjunction p ∧ q is True ONLY when BOTH p and q are True.

Step 2: Apply the given values
p = False, q = True

Step 3: Evaluate p ∧ q
Since at least one of p or q is False, p ∧ q = False

Question 7

Find a counterexample to show this statement is FALSE: "p → q is logically equivalent to q → p" Provide truth values for p, q, r that make the two sides different.
Implication is not symmetric. Converse is not equivalent to original.

p=True, q=False: p→q=False, q→p=True → Different!

Question 8

Rewrite the following statement in standard 'if-then' form: "You will fail unless you study" What is the equivalent conditional statement?
Step 1: Understand 'unless' statements
'P unless Q' means 'If not Q, then P'
In logical form: 'P unless Q' ≡ '¬Q → P'

Step 2: Identify components
Original: You will fail unless you study
p: You will fail, q: You study

Step 3: Convert to if-then form
'unless' tells us what happens if the condition is NOT met
Logical form: ¬q → p

Step 4: Write in English
Equivalent statement: If you do not study, then you will fail

Question 9

Given: p ∧ q What can you validly derive?
Rule: Simplification (∧-elimination)

From a conjunction P ∧ Q, you can derive P (or Q) alone.

Answer: p

Question 10

Consider the conditional statement: "If p: You study hard, then q: You will pass" (p → q) If p is True and q is False, what is the truth value of p → q?
Step 1: Understand the implication (→) operator
The implication p → q is False ONLY when p is True but q is False.
In all other cases, it is True.

Truth table for p → q:
p=T, q=T → Result=T
p=T, q=F → Result=F (the only False case)
p=F, q=T → Result=T
p=F, q=F → Result=T

Step 2: Apply the given values
p = True, q = False

Step 3: Evaluate p → q
Since p is True but q is False, the implication fails: p → q = False

Question 11

Are the following two logical expressions equivalent? Expression 1: ¬(p ∨ q) Expression 2: ¬p ∧ ¬q Answer Yes or No and explain why.
Step 1: Understand what logical equivalence means
Two expressions are logically equivalent if they have the same truth value for ALL possible combinations of variables.

Step 2: Analyze the expressions
Expression 1: ¬(p ∨ q)
Expression 2: ¬p ∧ ¬q

Step 3: Apply De Morgan's Law
De Morgan's Law states: ¬(p ∨ q) ≡ ¬p ∧ ¬q
The negation of a disjunction equals the conjunction of negations.
These expressions ARE equivalent.

Question 12

Are the following two logical expressions equivalent? Expression 1: ¬(p ∨ q) Expression 2: ¬p ∧ ¬q Answer Yes or No and explain why.
Step 1: Understand what logical equivalence means
Two expressions are logically equivalent if they have the same truth value for ALL possible combinations of variables.

Step 2: Analyze the expressions
Expression 1: ¬(p ∨ q)
Expression 2: ¬p ∧ ¬q

Step 3: Apply De Morgan's Law
De Morgan's Law states: ¬(p ∨ q) ≡ ¬p ∧ ¬q
The negation of a disjunction equals the conjunction of negations.
These expressions ARE equivalent.

Question 13

Consider the statements: p: The store is open q: Customers can enter If p is False and q is False, what is the truth value of p ∧ q (p AND q)?
Step 1: Understand the conjunction (AND) operator
The conjunction p ∧ q is True ONLY when BOTH p and q are True.

Step 2: Apply the given values
p = False, q = False

Step 3: Evaluate p ∧ q
Since at least one of p or q is False, p ∧ q = False

Question 14

Rewrite the following statement in standard 'if-then' form: "She won't come unless you invite her" What is the equivalent conditional statement?
Step 1: Understand 'unless' statements
'P unless Q' means 'If not Q, then P'
In logical form: 'P unless Q' ≡ '¬Q → P'

Step 2: Identify components
Original: She won't come unless you invite her
p: She won't come, q: You invite her

Step 3: Convert to if-then form
'unless' tells us what happens if the condition is NOT met
Logical form: ¬q → p

Step 4: Write in English
Equivalent statement: If you do not invite her, then she won't come

Question 15

Logic puzzle: Three people, A, B, and C, are each either a knight (always tells truth) or knave (always lies). A says: 'B is a knave.' B says: 'A and C are the same type.' C says: 'A is a knight.' What are A, B, and C (or A and B)?
Case analysis: If A knight → B knave (A's truth) → A and C different (B's lie) → C knight? But C says 'A is knight' which would be true, consistent. Wait, need full check.

Actually solve: Assume A knight → 'B knave' true → B knave → B's statement 'A and C same' is false → A and C different → C knave → C says 'A knight' which is false (since A knight?) Contradiction.

Therefore A knave → 'B knave' false → B knight → B's statement true → A and C same → C knave → C says 'A knight' false (since A knave) ✓. Solution: A knave, B knight, C knave.

Question 16

You meet two people, A and B. A says: 'We are both knaves.' What are A and B?
Step 1: Analyze A's statement
A says: 'We are both knaves'

Step 2: Test if A is a knight
If A is a knight, then A tells the truth.
But then 'We are both knaves' would be true.
This means A is a knave, which contradicts our assumption.
Therefore, A cannot be a knight.

Step 3: Test if A is a knave
If A is a knave, then A lies.
A's statement 'We are both knaves' must be false.
For 'both knaves' to be false, at least one must be a knight.
Since A is a knave, B must be a knight.

Step 4: Verify
A (knave) lies: 'We are both knaves' is indeed false ✓
B is a knight ✓

Answer: A is a knave, B is a knight

Question 17

Identify the logical fallacy in this argument: "If you study, you'll pass. You didn't study, so you won't pass." What fallacy is being committed?
Fallacy of denying the antecedent. Form: If P then Q, not P, therefore not Q. You might still pass without studying.

Question 18

Consider the statements: p: The meeting is on Monday q: The meeting is on Tuesday If p is True and q is False, what is the truth value of p ∨ q (p OR q)?
Step 1: Understand the disjunction (OR) operator
The disjunction p ∨ q is True when AT LEAST ONE of p or q is True.
It is False ONLY when both p and q are False.

Step 2: Apply the given values
p = True, q = False

Step 3: Evaluate p ∨ q
Since at least one of p or q is True, p ∨ q = True

Question 19

Identify the logical fallacy in this argument: "Either you support our policy, or you hate the country." What fallacy is being committed?
False dilemma (either/or fallacy). Presents only two options when more exist (e.g., you could disagree but still love your country).

Question 20

Classify the following logical statement: (p → q) → p Is it a Tautology (always True), Contradiction (always False), or Contingent (depends on variables)?
Step 1: Understand the classifications
• Tautology: Always True for all possible truth values
• Contradiction: Always False for all possible truth values
• Contingent: True for some values, False for others

Step 2: Analyze the expression
Expression: (p → q) → p

Step 3: Test all possible combinations
This is contingent - depends on values of p and q
Previous Worksheet Next Worksheet