For each statement, we need to determine if Set A equals Set B:
i. A = {a, b, b, c}, B = {a, b, c}
ii. A = {a, b, c}, B = {b, c, a}
iii. A = {1, 2, 3}, B = {1, 2, 3}
iv. A = {x | x(x - 1) = 0}, B = {0, 1}
Given: A = {1, 2, 3}, B = {3, 4, 5} R1 = {(1,3), (1,4), (3,3)} R2 = {(2,3), (2,4), (3,3), (2,5)}
i. R1 ∪ R2 = {(1,3), (1,4), (3,3), (2,3), (2,4), (2,5)}
ii. R1 ∩ R2 = {(3,3)}
iii. R1 \ R2 = {(1,3), (1,4)}
iv. R2 \ R1 = {(2,3), (2,4), (2,5)}
v. R1 ⊕ R2 = {(1,3), (1,4), (2,3), (2,4), (2,5)} (symmetric difference)
vi. A × B = {(1,3), (1,4), (1,5), (2,3), (2,4), (2,5), (3,3), (3,4), (3,5)}
Argument: If today is Tuesday, then I have a test in Computer science or a test in Econ. If my Econ professor is sick, then I will not have a test in Econ. Today is Tuesday and my Econ professor is sick. Therefore, I have a test in Computer science.
Let:
Premises in CNF:
Conclusion: C
Resolution steps:
Therefore, the argument is valid.
The table shows various logical rules. Key completions:
Argument:
Analysis: This is a valid syllogism using universal instantiation. If all members of set "men" have property "mortal" and Socrates is in set "men", then Socrates must have property "mortal".
Relation R: {(x, y) | x + y = 0} on real numbers
Reflexive: NO - For reflexivity, we need (x,x) ∈ R for all x, which means x + x = 0, so x = 0. Only true for x = 0.
Symmetric: YES - If (x,y) ∈ R, then x + y = 0, which means y + x = 0, so (y,x) ∈ R.
Antisymmetric: NO - We have (1,-1) ∈ R and (-1,1) ∈ R, but 1 ≠ -1.
Transitive: NO - We have (1,-1) ∈ R and (-1,1) ∈ R, but (1,1) ∉ R since 1 + 1 ≠ 0.
Problem: Choose 2 books of different languages from 5 Latin, 7 Greek, and 10 French books.
Solution:
Total: 35 + 50 + 70 = 155 ways
Looking at the cube diagram, this represents a Boolean lattice with vertices labeled with letters. The structure shows:
Given: A = {1, 2, 3, 4, 5, 6, 7, 8, 9} with divisibility relation
i. Poset diagram: Elements connected by divisibility (e.g., 1 divides all, 2 divides 4, 6, 8, etc.)
ii. Minimum elements: {1} (1 divides all others)
iii. Maximum elements: {5, 7, 9} (not divisible by any other element in set)
iv. Maximal elements: {5, 7, 9}
v. 3 ∨ 5: No upper bound in this poset (3 and 5 are coprime)
vi. Antichains: Sets of mutually incomparable elements, e.g., {5, 7, 9}
vii. Longest chain: 1 → 2 → 4 → 8 (length 4)
viii. 8 ∧ 6 = 2 (greatest common divisor)
Starting from S:
MST edges: S-A(1), A-C(3), C-D(3), A-B(6), B-T(5) Total weight: 1 + 3 + 3 + 6 + 5 = 18
Statement: R = {(a,b,c) | a + b = c}
Base case (n=1): R¹ contains (a,b,c) where a + b = c Inductive step: Assume true for n, prove for n+1 First three elements: (0,0,0), (0,1,1), (1,0,1)
Prove: ∑(i=1 to n) i = n(n+1)/2
Base case: n=1: ∑(i=1 to 1) i = 1, and 1(1+1)/2 = 1 ✓
Inductive step: Assume true for n=k ∑(i=1 to k) i = k(k+1)/2
Prove for n=k+1: ∑(i=1 to k+1) i = ∑(i=1 to k) i + (k+1) = k(k+1)/2 + (k+1) = (k+1)(k/2 + 1) = (k+1)(k+2)/2
Therefore, the formula holds for all n ≥ 1.
Given: Population of Mando = 8300 (2500 adult females, 3800 children)
i. Subsets of concern: Adult females, children, adult males ii. Adults in Mando: 8300 - 3800 = 4500 iii. Adult males: 4500 - 2500 = 2000 iv. Females and children: 2500 + 3800 = 6300
Premises: "Paula is out for a trip or it is not raining" and "It is raining or Rafael is cooking"
Conclusion: If Paula is not out for a trip, then Rafael is cooking.
Let: P = Paula is out, R = It is raining, C = Rafael is cooking Premises: P ∨ ¬R, R ∨ C To prove: ¬P → C
Resolution: From P ∨ ¬R and R ∨ C, we get P ∨ C (resolving ¬R with R) This gives us ¬P → C, which is our conclusion.
The table shows different types of relations with their properties (reflexive, irreflexive, symmetric, antisymmetric, asymmetric, transitive). Students need to analyze each figure and mark appropriate properties.
Natural number definitions:
Set A = {ab, bc} First four elements of A:*
Problem: n people standing in a ring Solution: (n-1)! ways
Explanation: Fix one person's position to account for rotational symmetry, then arrange the remaining (n-1) people, giving (n-1)! arrangements.