Discrete Math Quiz: Relation Properties
19 questions · exam conditions
0:00
Relation PropertiesQuestion 1 of 19

Consider the relation WW on the set of all functions from R\mathbb{R} to R\mathbb{R} where fWgfWg if and only if f(0)=g(0)f(0) = g(0). Which properties does WW have?

WW is reflexive and symmetric but not transitive
WW is reflexive and transitive but not symmetric
WW is symmetric and transitive but not reflexive
WW is reflexive, symmetric, and transitive
← Back to quizzes

Discrete Math Quiz

Discrete Math Quiz: Relation Properties

Practice Relation Properties in Discrete Math with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.

What this quiz covers

This quiz focuses on Relation Properties, giving you a quick way to practice the rules, question types, and explanations that matter most for Discrete Math.

How to use this quiz

Try each quiz question before looking at the correct answer. Use the explanations to review missed ideas, then come back to similar questions until the pattern feels familiar.

All questions

Question 1

Consider the relation WW on the set of all functions from R\mathbb{R} to R\mathbb{R} where fWgfWg if and only if f(0)=g(0)f(0) = g(0). Which properties does WW have?

  1. WW is reflexive and symmetric but not transitive
  2. WW is reflexive and transitive but not symmetric
  3. WW is symmetric and transitive but not reflexive
  4. WW is reflexive, symmetric, and transitive (correct answer)
Explanation: W is reflexive because f(0) = f(0) for any function f, so fWf holds. W is symmetric because if f(0) = g(0), then g(0) = f(0), so if fWg then gWf. W is transitive because if f(0) = g(0) and g(0) = h(0), then f(0) = h(0), so if fWg and gWh then fWh. Therefore W is an equivalence relation on the set of all functions from ℝ to ℝ.

Question 2

Let XX be the relation on Z×Z\mathbb{Z} \times \mathbb{Z} defined by (a,b)X(c,d)(a,b)X(c,d) if and only if a+d=b+ca + d = b + c. Determine which properties XX satisfies.

  1. XX is reflexive and symmetric but not transitive
  2. XX is reflexive and transitive but not symmetric
  3. XX is reflexive, symmetric, and transitive (correct answer)
  4. XX is symmetric and transitive but not reflexive
Explanation: When you encounter a relation and need to determine its properties, systematically check each property using the definitions. A relation is reflexive if every element relates to itself, symmetric if aRbaRb implies bRabRa, and transitive if aRbaRb and bRcbRc together imply aRcaRc. For relation XX where (a,b)X(c,d)(a,b)X(c,d) if and only if a+d=b+ca + d = b + c, let's verify each property: Reflexive: Does (a,b)X(a,b)(a,b)X(a,b) for all (a,b)(a,b)? We need a+b=b+aa + b = b + a, which is always true by commutativity of addition. So XX is reflexive. Symmetric: If (a,b)X(c,d)(a,b)X(c,d), does (c,d)X(a,b)(c,d)X(a,b)? If a+d=b+ca + d = b + c, then c+b=d+ac + b = d + a (just rearranging the same equation). So XX is symmetric. Transitive: If (a,b)X(c,d)(a,b)X(c,d) and (c,d)X(e,f)(c,d)X(e,f), does (a,b)X(e,f)(a,b)X(e,f)? From the first relation: a+d=b+ca + d = b + c. From the second: c+f=d+ec + f = d + e. Adding these equations: a+d+c+f=b+c+d+ea + d + c + f = b + c + d + e. Canceling c+dc + d from both sides gives a+f=b+ea + f = b + e, which means (a,b)X(e,f)(a,b)X(e,f). So XX is transitive. Since XX satisfies all three properties, answer C is correct. Option A incorrectly claims transitivity fails, B incorrectly claims symmetry fails, and D incorrectly claims reflexivity fails. Study tip: When checking relation properties, work through the algebra carefully and remember that equivalence relations (like this one) always satisfy all three properties.

Question 3

Let ZZ be a relation on N\mathbb{N} where aZbaZb if and only if aa and bb have the same number of prime factors (counting multiplicities). Which statement is correct about ZZ?

  1. ZZ is reflexive, symmetric, and transitive (correct answer)
  2. ZZ is reflexive and transitive but not symmetric
  3. ZZ is symmetric and transitive but not reflexive
  4. ZZ is reflexive and symmetric but not transitive
Explanation: When analyzing relations, you need to systematically check three key properties: reflexivity (every element relates to itself), symmetry (if aa relates to bb, then bb relates to aa), and transitivity (if aa relates to bb and bb relates to cc, then aa relates to cc). Let's examine relation ZZ where aZbaZb means aa and bb have the same number of prime factors with multiplicities. For example, 12=22312 = 2^2 \cdot 3 has 3 prime factors (counting 22 twice), so 12Z812Z8 since 8=238 = 2^3 also has 3 prime factors. Reflexivity: Every natural number has the same number of prime factors as itself, so aZaaZa always holds. Symmetry: If aa and bb have the same number of prime factors, then bb and aa also have the same number of prime factors. The relationship is perfectly symmetric. Transitivity: If aa and bb have nn prime factors, and bb and cc have nn prime factors, then aa and cc both have nn prime factors, so aZcaZc holds. Since ZZ satisfies all three properties, it's an equivalence relation, making choice A correct. Choice B incorrectly claims ZZ isn't symmetric, but we've shown it is. Choice C wrongly states ZZ isn't reflexive, but every number relates to itself. Choice D incorrectly claims ZZ isn't transitive, but having the same count is clearly transitive. Study tip: When checking if a relation is an equivalence relation, systematically verify all three properties with concrete examples. Relations based on "sameness" (like equal counts) are often equivalence relations.

Question 4

Let TT be a relation on the set of all non-empty subsets of {1,2,3}\{1, 2, 3\} where ATBATB if and only if max(A)max(B)\max(A) \leq \max(B). Which statement correctly describes TT?

  1. TT is reflexive and transitive but not symmetric (correct answer)
  2. TT is symmetric and transitive but not reflexive
  3. TT is reflexive and symmetric but not transitive
  4. TT is reflexive, symmetric, and transitive
Explanation: The non-empty subsets are: {1}, {2}, {3}, {1,2}, {1,3}, {2,3}, {1,2,3}. T is reflexive since max(A) ≤ max(A) for any set A. T is not symmetric: consider A = {1} and B = {2}. We have max({1}) = 1 ≤ 2 = max({2}), so ATB. However, max({2}) = 2 ≰ 1 = max({1}), so BTA does not hold. T is transitive: if ATB and BTC, then max(A) ≤ max(B) and max(B) ≤ max(C), which implies max(A) ≤ max(C), so ATC. Therefore T is reflexive and transitive but not symmetric.

Question 5

Let S={1,2,3,4}S = \{1, 2, 3, 4\} and define relation RR on SS by aRbaRb if and only if a2b2(mod3)a^2 \equiv b^2 \pmod{3}. Which combination of properties does RR possess?

  1. Reflexive and symmetric, but not transitive
  2. Reflexive, symmetric, and transitive (equivalence relation) (correct answer)
  3. Symmetric and transitive, but not reflexive
  4. Reflexive and transitive, but not symmetric
Explanation: First, compute squares mod 3: 121(mod3)1^2 \equiv 1 \pmod{3}, 221(mod3)2^2 \equiv 1 \pmod{3}, 320(mod3)3^2 \equiv 0 \pmod{3}, 421(mod3)4^2 \equiv 1 \pmod{3}. So R={(1,1),(1,2),(1,4),(2,1),(2,2),(2,4),(3,3),(4,1),(4,2),(4,4)}R = \{(1,1), (1,2), (1,4), (2,1), (2,2), (2,4), (3,3), (4,1), (4,2), (4,4)\}. Reflexive: All pairs (a,a)(a,a) are present since a2a2(mod3)a^2 \equiv a^2 \pmod{3} always. Symmetric: If a2b2(mod3)a^2 \equiv b^2 \pmod{3}, then b2a2(mod3)b^2 \equiv a^2 \pmod{3}. Transitive: If a2b2(mod3)a^2 \equiv b^2 \pmod{3} and b2c2(mod3)b^2 \equiv c^2 \pmod{3}, then a2c2(mod3)a^2 \equiv c^2 \pmod{3}. Choice A is wrong because transitivity holds. Choice C is wrong because reflexivity holds. Choice D is wrong because symmetry holds.

Question 6

Consider the relation PP on Z×Z\mathbb{Z} \times \mathbb{Z} defined by (a,b)P(c,d)(a,b)P(c,d) if and only if ad=bcad = bc. Determine which properties PP satisfies.

  1. Symmetric and transitive but not reflexive, because pairs with zero components can't satisfy the multiplicative condition ab=baab = ba
  2. Reflexive and symmetric but not transitive, since the cross-multiplication condition doesn't chain properly through three pairs
  3. Reflexive, symmetric, and transitive, representing the equivalence of rational numbers when treating pairs as fractions (correct answer)
  4. Reflexive and transitive but not symmetric, since ad=bcad = bc doesn't necessarily imply cb=dacb = da due to order of operations
Explanation: When you encounter a relation on ordered pairs with a cross-multiplication condition like ad=bcad = bc, you should immediately think about rational number equivalence. This relation essentially treats pairs (a,b)(a,b) as fractions ab\frac{a}{b} and asks when two "fractions" are equal. Let's verify each property systematically. For reflexivity, we need (a,b)P(a,b)(a,b)P(a,b), which means ab=baa \cdot b = b \cdot a. This is always true by commutativity of multiplication, even when components are zero (since 0anything=00 \cdot anything = 0). For symmetry, if (a,b)P(c,d)(a,b)P(c,d), then ad=bcad = bc. We need (c,d)P(a,b)(c,d)P(a,b), which requires cb=dacb = da. Since multiplication is commutative, cb=bc=ad=dacb = bc = ad = da, so symmetry holds. For transitivity, if (a,b)P(c,d)(a,b)P(c,d) and (c,d)P(e,f)(c,d)P(e,f), then ad=bcad = bc and cf=decf = de. We need af=beaf = be. From the equations: adcf=bcdead \cdot cf = bc \cdot de, so acdf=bcdeacdf = bcde. If c0c \neq 0, we can divide both sides by cdcd to get af=beaf = be. When c=0c = 0, both original equations force specific constraints that still preserve transitivity. Choice A incorrectly claims the relation isn't reflexive due to zero components, but ab=baab = ba always holds. Choice B wrongly states transitivity fails, but the cross-multiplication does chain properly. Choice D incorrectly claims symmetry fails, missing that ad=bcad = bc is equivalent to cb=dacb = da by commutativity. Study tip: Relations involving cross-multiplication typically model rational number equivalence. Always check if zero cases break your reasoning, but remember that 0x=0y0 \cdot x = 0 \cdot y for any x,yx,y.

Question 7

Define relation QQ on the set of all non-empty subsets of {1,2,3}\{1, 2, 3\} by AQBAQB if and only if max(A)max(B)\max(A) \leq \max(B). Which statement correctly identifies the properties of QQ?

  1. Reflexive and transitive, but not symmetric because max({1,2})max({2,3})\max(\{1,2\}) \leq \max(\{2,3\}) while max({2,3})≰max({1,2})\max(\{2,3\}) \not\leq \max(\{1,2\}) (correct answer)
  2. Reflexive and symmetric, but not transitive since maximum operations don't preserve ordering through chains of three sets
  3. Symmetric and transitive, but not reflexive since some subsets don't relate to themselves under maximum comparison
  4. Only transitive, lacking both reflexivity and symmetry due to the strict ordering imposed by maximum elements
Explanation: The domain is {{1},{2},{3},{1,2},{1,3},{2,3},{1,2,3}}\{\{1\}, \{2\}, \{3\}, \{1,2\}, \{1,3\}, \{2,3\}, \{1,2,3\}\}. Reflexive: max(A)max(A)\max(A) \leq \max(A) always holds. Transitive: If max(A)max(B)\max(A) \leq \max(B) and max(B)max(C)\max(B) \leq \max(C), then max(A)max(C)\max(A) \leq \max(C) by transitivity of \leq. Not symmetric: max({1,2})=23=max({2,3})\max(\{1,2\}) = 2 \leq 3 = \max(\{2,3\}), but max({2,3})=3≰2=max({1,2})\max(\{2,3\}) = 3 \not\leq 2 = \max(\{1,2\}). Choice B incorrectly claims symmetry. Choice C incorrectly claims lack of reflexivity. Choice D incorrectly claims lack of reflexivity.

Question 8

Let TT be the relation on R{0}\mathbb{R} \setminus \{0\} defined by xTyxTy if and only if xy>0\frac{x}{y} > 0. Determine which properties TT satisfies.

  1. Reflexive and symmetric, but testing transitivity requires checking sign patterns across multiple cases
  2. Reflexive and transitive, but not symmetric since positive and negative numbers behave differently under division
  3. Symmetric and transitive, but not reflexive since the relation doesn't include zero in its domain
  4. Reflexive, symmetric, and transitive, making it an equivalence relation partitioning reals into positive and negative (correct answer)
Explanation: Reflexive: For any xR{0}x \in \mathbb{R} \setminus \{0\}, xx=1>0\frac{x}{x} = 1 > 0, so xTxxTx. Symmetric: If xy>0\frac{x}{y} > 0, then yx=1xy>0\frac{y}{x} = \frac{1}{\frac{x}{y}} > 0 since reciprocal of positive number is positive. Transitive: If xy>0\frac{x}{y} > 0 and yz>0\frac{y}{z} > 0, then xz=xyyz>0\frac{x}{z} = \frac{x}{y} \cdot \frac{y}{z} > 0 since product of positive numbers is positive. Choice A incorrectly suggests transitivity is complicated. Choice B incorrectly claims lack of symmetry. Choice C incorrectly claims lack of reflexivity (zero is not in the domain anyway).

Question 9

Let UU be the relation on N={1,2,3,}\mathbb{N} = \{1, 2, 3, \ldots\} defined by mUnmUn if and only if gcd(m,n)lcm(m,n)=mn\gcd(m, n) \cdot \text{lcm}(m, n) = mn. Which statement about UU is correct?

  1. UU represents the relation where mm and nn are coprime, making it symmetric but neither reflexive nor transitive
  2. UU is the universal relation N×N\mathbb{N} \times \mathbb{N} since the condition gcd(m,n)lcm(m,n)=mn\gcd(m,n) \cdot \text{lcm}(m,n) = mn holds for all positive integers (correct answer)
  3. UU is the empty relation since the fundamental identity gcd(m,n)lcm(m,n)=mn\gcd(m,n) \cdot \text{lcm}(m,n) = mn never actually holds in practice
  4. UU is reflexive and symmetric but not transitive, since the gcd-lcm identity doesn't compose well across three numbers
Explanation: When you encounter a relation defined by a mathematical condition, your first step should be to determine whether that condition is always true, sometimes true, or never true for the given domain. The key insight here is recognizing that gcd(m,n)lcm(m,n)=mn\gcd(m,n) \cdot \text{lcm}(m,n) = mn is actually a fundamental identity in number theory that holds for all positive integers mm and nn. This isn't a special condition—it's a mathematical fact you can prove using prime factorizations. Since this equation is always satisfied, every ordered pair (m,n)(m,n) in N×N\mathbb{N} \times \mathbb{N} belongs to relation UU, making UU the universal relation. Therefore, answer B is correct. Let's examine why the other options fail: A incorrectly claims UU represents coprime numbers, but the gcd-lcm identity holds regardless of whether numbers share common factors. C makes the opposite error, suggesting this fundamental identity "never actually holds in practice," which contradicts basic number theory. D acknowledges the identity but incorrectly analyzes the relation's properties—since UU is universal, it's automatically reflexive, symmetric, and transitive. Study tip: Memorize the fundamental identity gcd(m,n)lcm(m,n)=mn\gcd(m,n) \cdot \text{lcm}(m,n) = mn. When you see this equation in a discrete math problem, immediately recognize it as always true rather than trying to solve for specific cases. This identity appears frequently in number theory problems and relation exercises.

Question 10

Define relation VV on the set {2,1,0,1,2}\{-2, -1, 0, 1, 2\} by xVyxVy if and only if x3y3x^3 - y^3 is divisible by 33. Which combination of properties does VV satisfy?

  1. Reflexive and transitive but not symmetric, because cubing preserves congruence but reversal doesn't always work
  2. Reflexive, symmetric, and transitive, since x3x(mod3)x^3 \equiv x \pmod{3} and this creates an equivalence relation based on residues modulo 33 (correct answer)
  3. Symmetric and transitive but not reflexive, since some elements don't satisfy the cubic difference condition with themselves
  4. Only reflexive, lacking both symmetry and transitivity due to the nonlinear behavior of cubic functions
Explanation: When analyzing relations for reflexive, symmetric, and transitive properties, you need to systematically check each property using the given definition. Here, xVyxVy means 3(x3y3)3 \mid (x^3 - y^3), so you're working with divisibility by 3. The key insight is recognizing that x3x(mod3)x^3 \equiv x \pmod{3} for all integers xx. This happens because: if x0(mod3)x \equiv 0 \pmod{3}, then x30(mod3)x^3 \equiv 0 \pmod{3}; if x1(mod3)x \equiv 1 \pmod{3}, then x3131(mod3)x^3 \equiv 1^3 \equiv 1 \pmod{3}; if x2(mod3)x \equiv 2 \pmod{3}, then x382(mod3)x^3 \equiv 8 \equiv 2 \pmod{3}. Therefore, xVyxVy if and only if xy(mod3)x \equiv y \pmod{3}. This transforms the relation into congruence modulo 3, which is always an equivalence relation. For reflexivity: x3x3=0x^3 - x^3 = 0, which is divisible by 3. For symmetry: if 3(x3y3)3 \mid (x^3 - y^3), then 3(y3x3)=(x3y3)3 \mid (y^3 - x^3) = -(x^3 - y^3). For transitivity: if 3(x3y3)3 \mid (x^3 - y^3) and 3(y3z3)3 \mid (y^3 - z^3), then 3(x3z3)=(x3y3)+(y3z3)3 \mid (x^3 - z^3) = (x^3 - y^3) + (y^3 - z^3). Choice A incorrectly claims the relation isn't symmetric. Choice C wrongly states it's not reflexive—every element relates to itself since x3x3=0x^3 - x^3 = 0. Choice D incorrectly suggests only reflexivity holds, missing that congruence relations are always equivalence relations. Remember: when you see xnx^n in modular arithmetic problems, check if the exponent preserves congruence classes. Cubing preserves residues modulo 3, making this an equivalence relation.

Question 11

Consider the relation HH on R\mathbb{R} defined by xHyxHy if and only if sin(πx)=sin(πy)\sin(\pi x) = \sin(\pi y). What properties does HH satisfy?

  1. Symmetric and transitive but not reflexive, since sin(πx)=sin(πx)\sin(\pi x) = \sin(\pi x) doesn't hold for all real xx
  2. Reflexive and symmetric but not transitive, because sine's periodicity can break transitivity chains
  3. Reflexive, symmetric, and transitive, since sine creates an equivalence relation based on periodic and symmetric properties (correct answer)
  4. Reflexive and transitive but not symmetric, because sin(πx)=sin(πy)\sin(\pi x) = \sin(\pi y) doesn't guarantee sin(πy)=sin(πx)\sin(\pi y) = \sin(\pi x)
Explanation: When analyzing relations in discrete math, you need to systematically check three key properties: reflexivity, symmetry, and transitivity. These determine whether a relation is an equivalence relation. Let's examine relation HH where xHyxHy if and only if sin(πx)=sin(πy)\sin(\pi x) = \sin(\pi y). For reflexivity, we need xHxxHx for all xRx \in \mathbb{R}. Since sin(πx)=sin(πx)\sin(\pi x) = \sin(\pi x) is always true by equality's reflexive property, HH is reflexive. For symmetry, if xHyxHy, then yHxyHx must hold. If sin(πx)=sin(πy)\sin(\pi x) = \sin(\pi y), then certainly sin(πy)=sin(πx)\sin(\pi y) = \sin(\pi x) by equality's symmetric property, so HH is symmetric. For transitivity, if xHyxHy and yHzyHz, then xHzxHz must hold. If sin(πx)=sin(πy)\sin(\pi x) = \sin(\pi y) and sin(πy)=sin(πz)\sin(\pi y) = \sin(\pi z), then sin(πx)=sin(πz)\sin(\pi x) = \sin(\pi z) by equality's transitive property, so HH is transitive. Since HH satisfies all three properties, it's an equivalence relation, making C correct. A is wrong because sin(πx)=sin(πx)\sin(\pi x) = \sin(\pi x) always holds—this confuses the relation with properties of sine itself. B incorrectly claims transitivity fails, but equality of sine values preserves transitivity. D wrongly denies symmetry, but equality is inherently symmetric. Study tip: When a relation is defined by "f(x)=f(y)f(x) = f(y)" for any function ff, it's automatically an equivalence relation because you're really just using equality, which is always reflexive, symmetric, and transitive.

Question 12

Let WW be the relation on R+\mathbb{R}^+ (positive reals) where xWyxWy if and only if log2x=log2y\lfloor \log_2 x \rfloor = \lfloor \log_2 y \rfloor. Which properties does this relation possess?

  1. Symmetric and transitive but not reflexive, because logarithms are undefined for some values in the domain
  2. Reflexive and symmetric but not transitive, since floor functions can break transitivity across boundary values
  3. Reflexive, symmetric, and transitive, partitioning positive reals into equivalence classes based on powers of 22 (correct answer)
  4. Reflexive and transitive but not symmetric, since logarithmic relationships don't always reverse under floor operations
Explanation: When you encounter a relation defined by a mathematical condition, you need to systematically check whether it's reflexive, symmetric, and transitive to determine if it's an equivalence relation. Let's analyze what xWyxWy means: log2x=log2y\lfloor \log_2 x \rfloor = \lfloor \log_2 y \rfloor. This condition groups numbers by which power of 2 their logarithm falls into. For example, if 23x<242^3 \leq x < 2^4, then log2x=3\lfloor \log_2 x \rfloor = 3. Reflexive: For any xR+x \in \mathbb{R}^+, we have log2x=log2x\lfloor \log_2 x \rfloor = \lfloor \log_2 x \rfloor, so xWxxWx holds. ✓ Symmetric: If xWyxWy, then log2x=log2y\lfloor \log_2 x \rfloor = \lfloor \log_2 y \rfloor, which immediately gives us log2y=log2x\lfloor \log_2 y \rfloor = \lfloor \log_2 x \rfloor, so yWxyWx. ✓ Transitive: If xWyxWy and yWzyWz, then log2x=log2y=log2z\lfloor \log_2 x \rfloor = \lfloor \log_2 y \rfloor = \lfloor \log_2 z \rfloor, so xWzxWz. ✓ Since all three properties hold, this is an equivalence relation that partitions R+\mathbb{R}^+ into classes like [1,2)[1,2), [2,4)[2,4), [4,8)[4,8), etc. Option A incorrectly claims logarithms are undefined—they're defined for all positive reals. Option B wrongly suggests the floor function breaks transitivity, but equality of integers is clearly transitive. Option D incorrectly claims the relation isn't symmetric, misunderstanding how equality works. Key strategy: When checking if a relation is an equivalence relation, systematically verify all three properties using the relation's definition. Equality-based relations like this one are typically equivalence relations.

Question 13

Consider the relation SS on {0,1,2,3,4,5}\{0, 1, 2, 3, 4, 5\} defined by xSyxSy if and only if x2+y20(mod5)x^2 + y^2 \equiv 0 \pmod{5}. What can be concluded about the properties of SS?

  1. SS is reflexive and symmetric but not transitive, due to the nonlinear nature of the sum-of-squares condition
  2. SS is reflexive, symmetric, and transitive, since congruence modulo 55 preserves all three properties
  3. SS is symmetric and transitive but not reflexive, as some elements don't satisfy the sum-of-squares condition with themselves
  4. SS is not reflexive because 22+22=83(mod5)≢02^2 + 2^2 = 8 \equiv 3 \pmod{5} \not\equiv 0, violating the reflexive property (correct answer)
Explanation: When analyzing relations, you need to check three key properties systematically: reflexive (every element relates to itself), symmetric (if xx relates to yy, then yy relates to xx), and transitive (if xx relates to yy and yy relates to zz, then xx relates to zz). For relation SS to be reflexive, every element must satisfy x2+x20(mod5)x^2 + x^2 \equiv 0 \pmod{5}, or 2x20(mod5)2x^2 \equiv 0 \pmod{5}. Testing each element: 02+02=000^2 + 0^2 = 0 \equiv 0, 12+12=2≢01^2 + 1^2 = 2 \not\equiv 0, 22+22=83≢02^2 + 2^2 = 8 \equiv 3 \not\equiv 0, 32+32=183≢03^2 + 3^2 = 18 \equiv 3 \not\equiv 0, 42+42=322≢04^2 + 4^2 = 32 \equiv 2 \not\equiv 0, and 52+52=5005^2 + 5^2 = 50 \equiv 0. Since elements 1, 2, and 3 don't relate to themselves, SS is not reflexive. Choice A incorrectly assumes reflexivity holds. Choice B makes the critical error of thinking that because the underlying operation (congruence mod 5) has certain properties, the relation automatically inherits them—this isn't true. The specific condition x2+y20(mod5)x^2 + y^2 \equiv 0 \pmod{5} creates its own constraints. Choice C incorrectly claims reflexivity fails but gets the reason wrong, and assumes transitivity without verification. Choice D correctly identifies that SS is not reflexive and provides the specific counterexample: 22+22=83(mod5)02^2 + 2^2 = 8 \equiv 3 \pmod{5} \neq 0. Study tip: When checking relation properties, always test reflexivity first by plugging in specific values—don't assume properties transfer from the underlying mathematical operations to your defined relation.

Question 14

Consider the relation RR on Z\mathbb{Z} defined by xRyxRy if and only if xyx - y is divisible by xy+1xy + 1. Which statement about the properties of RR is correct?

  1. RR is reflexive because xx=0x - x = 0 is always divisible by x2+1x^2 + 1 (correct answer)
  2. RR is not reflexive because when x=0x = 0, we have 00=00 - 0 = 0 but 00+1=10 \cdot 0 + 1 = 1, and 00 is not divisible by 11
  3. RR is not reflexive because when x=0x = 0, we have xy+1=1xy + 1 = 1 and 00 is divisible by 11, but this creates a contradiction
  4. RR is reflexive because for any integer xx, the expression xy+1xy + 1 with y=xy = x gives x2+11x^2 + 1 \geq 1, so divisibility is well-defined
Explanation: For reflexivity, we need xRxxRx for all xZx \in \mathbb{Z}, meaning xx=0x - x = 0 must be divisible by xx+1=x2+1x \cdot x + 1 = x^2 + 1. Since 00 is divisible by any nonzero integer, and x2+11x^2 + 1 \geq 1 for all real xx, we have x2+10x^2 + 1 \mid 0 always. Thus RR is reflexive. Choice B incorrectly claims 00 is not divisible by 11, but 0=010 = 0 \cdot 1. Choice C contains confused reasoning about contradictions. Choice D gives correct reasoning about x2+11x^2 + 1 \geq 1 but doesn't complete the divisibility argument properly.

Question 15

Let RR be a relation on Z\mathbb{Z} where aRbaRb if and only if a+ba + b is even and ab2|a - b| \leq 2. Which properties does RR possess?

  1. Reflexive and symmetric, but not transitive since 3R13R1, 1R(1)1R(-1), but 3(1)3 \not R (-1) (correct answer)
  2. Symmetric and transitive, but not reflexive since odd integers don't satisfy the parity condition with themselves
  3. Reflexive, symmetric, and transitive, forming an equivalence relation on the integers
  4. Only symmetric, lacking reflexivity due to parity constraints and transitivity due to distance limitations
Explanation: Reflexive: a+a=2aa + a = 2a is even, and aa=02|a - a| = 0 \leq 2, so aRaaRa for all aa. Symmetric: If a+ba + b is even and ab2|a - b| \leq 2, then b+a=a+bb + a = a + b is even and ba=ab2|b - a| = |a - b| \leq 2. Not transitive: 3R13R1 since 3+1=43 + 1 = 4 (even) and 31=22|3 - 1| = 2 \leq 2. 1R(1)1R(-1) since 1+(1)=01 + (-1) = 0 (even) and 1(1)=22|1 - (-1)| = 2 \leq 2. But 3(1)3 \not R (-1) since 3(1)=4>2|3 - (-1)| = 4 > 2. Choice B incorrectly claims lack of reflexivity. Choice C incorrectly claims transitivity. Choice D incorrectly claims lack of reflexivity.

Question 16

Define relation YY on the set of all 2×22 \times 2 real matrices by AYBAYB if and only if det(A)=det(B)\det(A) = \det(B). What properties does YY possess?

  1. YY is reflexive and symmetric but not transitive
  2. YY is reflexive, symmetric, and transitive (correct answer)
  3. YY is symmetric and transitive but not reflexive
  4. YY is reflexive and transitive but not symmetric
Explanation: When analyzing relations in discrete mathematics, you need to check three key properties: reflexivity (does every element relate to itself?), symmetry (if A relates to B, does B relate to A?), and transitivity (if A relates to B and B relates to C, does A relate to C?). For relation YY defined by AYBAYB if and only if det(A)=det(B)\det(A) = \det(B), let's examine each property systematically. Reflexivity: For any matrix AA, is AYAAYA true? Yes, because det(A)=det(A)\det(A) = \det(A) is always true. Every matrix has the same determinant as itself. Symmetry: If AYBAYB, then det(A)=det(B)\det(A) = \det(B). This means det(B)=det(A)\det(B) = \det(A), so BYABYA is also true. Equality is symmetric. Transitivity: If AYBAYB and BYCBYC, then det(A)=det(B)\det(A) = \det(B) and det(B)=det(C)\det(B) = \det(C). By transitivity of equality, det(A)=det(C)\det(A) = \det(C), so AYCAYC holds. Since YY possesses all three properties, it's an equivalence relation, making answer B correct. Why the others fail: Answer A incorrectly claims the relation isn't transitive, but equality of determinants is transitive. Answer C wrongly suggests the relation isn't reflexive, but every matrix equals itself in determinant. Answer D incorrectly claims the relation isn't symmetric, but equality is always symmetric. Study tip: When a relation is defined using equality (like equal determinants), it's almost always an equivalence relation. Look for the underlying equality to quickly identify all three properties.

Question 17

Consider relation PP on R2\mathbb{R}^2 defined by (x1,y1)P(x2,y2)(x_1, y_1)P(x_2, y_2) if and only if x12+y12x22+y22x_1^2 + y_1^2 \leq x_2^2 + y_2^2. Analyze the properties of PP.

  1. PP is reflexive and symmetric but not transitive
  2. PP is reflexive and transitive but not symmetric (correct answer)
  3. PP is symmetric and transitive but not reflexive
  4. PP is reflexive, symmetric, and transitive
Explanation: P is reflexive because x₁² + y₁² ≤ x₁² + y₁² for any point (x₁, y₁), so (x₁, y₁)P(x₁, y₁) holds. P is not symmetric: consider (0,0) and (1,0). We have 0² + 0² = 0 ≤ 1 = 1² + 0², so (0,0)P(1,0). However, 1² + 0² = 1 ≰ 0 = 0² + 0², so (1,0)P(0,0) does not hold. P is transitive: if x₁² + y₁² ≤ x₂² + y₂² and x₂² + y₂² ≤ x₃² + y₃², then x₁² + y₁² ≤ x₃² + y₃², so if (x₁,y₁)P(x₂,y₂) and (x₂,y₂)P(x₃,y₃), then (x₁,y₁)P(x₃,y₃). Therefore P is reflexive and transitive but not symmetric. This relation orders points by their distance from the origin.

Question 18

Consider the relation SS on Z\mathbb{Z} defined by aSbaSb if and only if aba - b is divisible by 33. Determine which properties SS possesses.

  1. SS is reflexive and symmetric but not transitive
  2. SS is reflexive and transitive but not symmetric
  3. SS is an equivalence relation on Z\mathbb{Z} (correct answer)
  4. SS is symmetric and transitive but not reflexive
Explanation: S is reflexive because for any integer a, a - a = 0, and 0 is divisible by 3, so aSa holds. S is symmetric: if aSb, then 3|(a-b), which means 3|(-(a-b)) = 3|(b-a), so bSa. S is transitive: if aSb and bSc, then 3|(a-b) and 3|(b-c), so 3|((a-b)+(b-c)) = 3|(a-c), therefore aSc holds. Since S is reflexive, symmetric, and transitive, it is an equivalence relation.

Question 19

Define relation UU on R\mathbb{R} by xUyxUy if and only if sin(x)=sin(y)\sin(x) = \sin(y). Analyze the properties of UU.

  1. UU is reflexive and symmetric but not transitive
  2. UU is reflexive and transitive but not symmetric
  3. UU is symmetric and transitive but not reflexive
  4. UU is reflexive, symmetric, and transitive (correct answer)
Explanation: U is reflexive because sin(x) = sin(x) for any real number x, so xUx holds. U is symmetric because if sin(x) = sin(y), then sin(y) = sin(x), so if xUy then yUx. U is transitive because if sin(x) = sin(y) and sin(y) = sin(z), then sin(x) = sin(z), so if xUy and yUz then xUz. Therefore U satisfies all three properties and is an equivalence relation on ℝ.