Discrete Math Quiz: Writing Proofs
20 questions · exam conditions
0:00
Writing ProofsQuestion 1 of 20

A student claims: "To prove P    (QR)P \implies (Q \land R), it suffices to prove (P    Q)(P    R)(P \implies Q) \land (P \implies R)." Another student argues: "To prove (PQ)    R(P \land Q) \implies R, it suffices to prove (P    R)(Q    R)(P \implies R) \land (Q \implies R)." Which assessment is correct?

Both claims are logically valid and represent equivalent proof strategies that can be used interchangeably in mathematical arguments.
The first claim is valid but the second is invalid; (PQ)    R(P \land Q) \implies R requires both PP and QQ to be true simultaneously.
The first claim is invalid but the second is valid; proving P    (QR)P \implies (Q \land R) requires a different logical structure than suggested.
Both claims are invalid because they misrepresent the logical relationships between conjunctions and implications in formal proof structures.
← Back to quizzes

Discrete Math Quiz

Discrete Math Quiz: Writing Proofs

Practice Writing Proofs 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 Writing Proofs, 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

A student claims: "To prove P    (QR)P \implies (Q \land R), it suffices to prove (P    Q)(P    R)(P \implies Q) \land (P \implies R)." Another student argues: "To prove (PQ)    R(P \land Q) \implies R, it suffices to prove (P    R)(Q    R)(P \implies R) \land (Q \implies R)." Which assessment is correct?

  1. Both claims are logically valid and represent equivalent proof strategies that can be used interchangeably in mathematical arguments.
  2. The first claim is valid but the second is invalid; (PQ)    R(P \land Q) \implies R requires both PP and QQ to be true simultaneously. (correct answer)
  3. The first claim is invalid but the second is valid; proving P    (QR)P \implies (Q \land R) requires a different logical structure than suggested.
  4. Both claims are invalid because they misrepresent the logical relationships between conjunctions and implications in formal proof structures.
Explanation: The first claim is valid: P⟹(Q∧R) is equivalent to (P⟹Q)∧(P⟹R). The second claim is invalid: (P∧Q)⟹R is not equivalent to (P⟹R)∧(Q⟹R). For example, let P='x>2', Q='x<5', R='x>0'. Then (P∧Q)⟹R is true, but Q⟹R is false when x=-1. The second requires both P and Q together to imply R, not each separately.

Question 2

Consider proving "The product of any two consecutive integers is even." A student writes: "Let the integers be nn and n+1n+1. Either nn is even or nn is odd. Case 1: If nn is even, then n(n+1)n(n+1) is even since it's the product of an even and any integer. Case 2: If nn is odd, then n+1n+1 is even, so n(n+1)n(n+1) is even." What principle makes this proof structure valid?

  1. The distributive property of multiplication over addition, which ensures that the product structure is preserved across both cases.
  2. The principle of mathematical induction, since the proof establishes the property for all consecutive integer pairs systematically.
  3. The law of excluded middle, which guarantees that every integer is either even or odd, with no other possibilities existing. (correct answer)
  4. The fundamental theorem of arithmetic, which guarantees that the prime factorization determines the parity of integer products uniquely.
Explanation: When analyzing proof structures in discrete math, you need to identify the logical principles that make the reasoning valid. This student's proof uses a fundamental property of logical reasoning. The proof works because it applies the law of excluded middle, which states that for any proposition, either the proposition is true or its negation is true—there's no third option. In this case, every integer must be either even or odd; no integer can be both, and no integer can be neither. This allows the student to exhaustively cover all possibilities by examining just these two cases. The proof structure is valid because: when nn is even, n(n+1)n(n+1) contains an even factor, making the product even. When nn is odd, then n+1n+1 must be even (since consecutive integers have opposite parity), again making the product even. Since these cases cover every possible integer, the theorem is proven for all cases. Answer A is incorrect because the distributive property relates to how multiplication distributes over addition (a(b+c)=ab+aca(b+c) = ab + ac), which isn't relevant to this proof's logical structure. Answer B is wrong because mathematical induction involves proving a base case and an inductive step—this proof uses case analysis, not induction. Answer D is incorrect because while the fundamental theorem of arithmetic deals with prime factorization, the proof's validity doesn't depend on unique factorization but on exhaustive case coverage. Remember: when you see proofs that split into "either this or that" cases, look for the law of excluded middle as the underlying principle ensuring completeness.

Question 3

A student attempts to prove "If aa and bb are odd integers, then a2+b2a^2 + b^2 is even" using: "Let a=2m+1a = 2m+1 and b=2n+1b = 2n+1 where m,nm,n are integers. Then a2+b2=(2m+1)2+(2n+1)2=4m2+4m+1+4n2+4n+1=4(m2+m+n2+n)+2a^2 + b^2 = (2m+1)^2 + (2n+1)^2 = 4m^2 + 4m + 1 + 4n^2 + 4n + 1 = 4(m^2 + m + n^2 + n) + 2." What should the student conclude to complete the proof?

  1. Since m2+m+n2+nm^2 + m + n^2 + n is an integer, a2+b2=4k+2=2(2k+1)a^2 + b^2 = 4k + 2 = 2(2k + 1) for integer kk, so a2+b2a^2 + b^2 is even.
  2. Since 4(m2+m+n2+n)+2=2[2(m2+m+n2+n)+1]4(m^2 + m + n^2 + n) + 2 = 2[2(m^2 + m + n^2 + n) + 1] and the bracketed expression is an integer, a2+b2a^2 + b^2 is even. (correct answer)
  3. Since m2+m+n2+nm^2 + m + n^2 + n has the same parity as m+nm + n, we can factor out 2 from the entire expression to show evenness.
  4. Since 4(m2+m+n2+n)4(m^2 + m + n^2 + n) is divisible by 4 and we add 2, the result a2+b2a^2 + b^2 is divisible by 2, hence even.
Explanation: Choice B correctly completes the proof by factoring out 2: 4(m²+m+n²+n)+2 = 2[2(m²+m+n²+n)+1]. Since the bracketed expression is an integer, a²+b² is 2 times an integer, hence even. Choice A uses unclear notation with k. Choice C makes an irrelevant parity claim. Choice D is less rigorous about the factorization.

Question 4

A student attempts to prove "6\sqrt{6} is irrational" by contradiction: "Assume 6=ab\sqrt{6} = \frac{a}{b} where gcd(a,b)=1\gcd(a,b) = 1. Then 6b2=a26b^2 = a^2. Since 6=236 = 2 \cdot 3, both 2 and 3 divide a2a^2, so both divide aa. Let a=6ca = 6c, then 6b2=36c26b^2 = 36c^2, giving b2=6c2b^2 = 6c^2." What error occurs in this reasoning?

  1. The conclusion that both 2 and 3 divide aa is correct, but writing a=6ca = 6c incorrectly assumes these are the only prime factors of aa.
  2. The step from 6b2=a26b^2 = a^2 to concluding that 2 and 3 both divide a2a^2 is invalid without first establishing that 6 divides a2a^2.
  3. The reasoning is actually correct up to this point, and the student should continue by showing that 6 divides bb, contradicting gcd(a,b)=1\gcd(a,b) = 1. (correct answer)
  4. The factorization 6=236 = 2 \cdot 3 is insufficient because it doesn't account for the multiplicative structure needed in the irrationality proof framework.
Explanation: The reasoning is actually correct. Since 6b²=a², we have 6|a², so 2|a² and 3|a². By Euclid's lemma (since 2 and 3 are prime), this means 2|a and 3|a, so 6|a. Writing a=6c is valid. From b²=6c², we get 6|b², hence 6|b, contradicting gcd(a,b)=1. The other choices incorrectly identify errors where none exist.

Question 5

Consider this proof attempt for "3\sqrt{3} is irrational": "Suppose 3=pq\sqrt{3} = \frac{p}{q} in lowest terms. Then 3q2=p23q^2 = p^2, so 3 divides p2p^2. Since 3 is prime, 3 divides pp. Let p=3rp = 3r, then 3q2=9r23q^2 = 9r^2, so q2=3r2q^2 = 3r^2. Therefore 3 divides q2q^2, and since 3 is prime, 3 divides qq. But this contradicts gcd(p,q)=1\gcd(p,q) = 1." What key theorem justifies the step "since 3 is prime, 3 divides pp"?

  1. Euclid's lemma: if a prime pp divides a product abab, then pp divides aa or pp divides bb, applied with p2=ppp^2 = p \cdot p. (correct answer)
  2. The fundamental theorem of arithmetic: every integer has a unique prime factorization, ensuring that prime divisors are preserved in powers.
  3. The division algorithm: for integers aa and bb with b>0b > 0, there exist unique integers qq and rr with a=bq+ra = bq + r.
  4. Bézout's identity: for integers aa and bb, there exist integers xx and yy such that ax+by=gcd(a,b)ax + by = \gcd(a,b).
Explanation: This step uses Euclid's lemma. Since 3 divides p² and p² = p·p, Euclid's lemma states that 3 must divide at least one factor p, hence 3 divides p. Choice B (fundamental theorem) is related but not the direct justification. Choice C (division algorithm) is unrelated to this step. Choice D (Bézout's identity) is also unrelated.

Question 6

Consider the statement: "For all integers n2n \geq 2, if nn is prime, then n2+1n^2 + 1 is composite." Which of the following represents the most significant logical flaw in attempting to prove this statement by contradiction?

  1. Assuming nn is prime and n2+1n^2 + 1 is prime leads to no contradiction since both conditions can be satisfied simultaneously for certain values. (correct answer)
  2. The negation of the statement requires proving that there exists a prime nn such that n2+1n^2 + 1 is also prime, not composite.
  3. The statement cannot be proven by contradiction because it requires direct verification for infinitely many prime numbers.
  4. The assumption phase incorrectly negates "nn is prime" rather than negating the entire conditional statement structure.
Explanation: The statement is actually false. For n=2 (which is prime), n²+1=5, which is also prime. This counterexample shows that assuming n is prime and n²+1 is prime leads to no contradiction - both can be true simultaneously. Choice B incorrectly describes proof by contradiction setup. Choice C misunderstands the method. Choice D incorrectly describes how to negate a conditional.

Question 7

Consider proving "For all integers n1n \geq 1, the sum 12+22++n2=n(n+1)(2n+1)61^2 + 2^2 + \cdots + n^2 = \frac{n(n+1)(2n+1)}{6}" by induction. In the inductive step, after assuming the formula holds for kk, a student writes: "For n=k+1n = k+1: i=1k+1i2=i=1ki2+(k+1)2=k(k+1)(2k+1)6+(k+1)2\sum_{i=1}^{k+1} i^2 = \sum_{i=1}^k i^2 + (k+1)^2 = \frac{k(k+1)(2k+1)}{6} + (k+1)^2." What is the most challenging aspect of completing this proof?

  1. Verifying that the base case n=1n = 1 satisfies the formula, since substitution into the general expression requires careful arithmetic verification.
  2. Algebraically manipulating k(k+1)(2k+1)6+(k+1)2\frac{k(k+1)(2k+1)}{6} + (k+1)^2 to show it equals (k+1)(k+2)(2k+3)6\frac{(k+1)(k+2)(2k+3)}{6} without computational errors. (correct answer)
  3. Establishing that the inductive hypothesis can be validly applied, since the summation index shift requires justification of the recursive structure.
  4. Proving that the formula is well-defined for all positive integers, since the denominator 6 might not always divide the numerator expression.
Explanation: The most challenging step is the algebra. You need to manipulate (k(k+1)(2k+1))/6 + (k+1)² to get ((k+1)(k+2)(2k+3))/6, which involves factoring out (k+1), finding a common denominator, and expanding/simplifying. Choice A is straightforward. Choice C misunderstands induction mechanics. Choice D is wrong - the numerator is always divisible by 6.

Question 8

A student claims to prove that "2\sqrt{2} is irrational" using the following approach: "Assume 2=pq\sqrt{2} = \frac{p}{q} where pp and qq are integers with gcd(p,q)=1\gcd(p,q) = 1. Then 2q2=p22q^2 = p^2, so p2p^2 is even, which means pp is even. Let p=2kp = 2k, then 2q2=4k22q^2 = 4k^2, so q2=2k2q^2 = 2k^2." What is the most critical error in the student's reasoning at this point?

  1. The student failed to establish that qq must also be even, which would contradict the assumption that gcd(p,q)=1\gcd(p,q) = 1. (correct answer)
  2. The student incorrectly concluded that pp is even from p2p^2 being even, since odd squares can also be even in modular arithmetic.
  3. The student made an algebraic error when dividing 2q2=4k22q^2 = 4k^2 by 2, which should yield q2=k2q^2 = k^2 rather than q2=2k2q^2 = 2k^2.
  4. The student should have used strong induction on the denominator qq rather than assuming a specific form for the rational representation.
Explanation: The student's work is actually correct up to this point, but incomplete. The critical next step is to show that q² = 2k² implies q² is even, therefore q is even. This would mean both p and q are even, contradicting gcd(p,q) = 1. Choice B is wrong - if p² is even, then p must be even. Choice C is wrong - the algebra is correct. Choice D suggests an unnecessary approach.

Question 9

Consider the following attempted proof that "the sum of any two rational numbers is rational": "Let rr and ss be rational numbers. Then r=abr = \frac{a}{b} and s=cds = \frac{c}{d} where a,b,c,da,b,c,d are integers with b,d0b,d \neq 0. Thus r+s=ab+cd=ad+bcbdr + s = \frac{a}{b} + \frac{c}{d} = \frac{ad + bc}{bd}. Since ad+bcad + bc and bdbd are integers with bd0bd \neq 0, we have r+sr + s is rational." What enhancement would make this proof more rigorous?

  1. Verify that gcd(ad+bc,bd)=1\gcd(ad + bc, bd) = 1 to ensure the fraction is in lowest terms, as required by the definition of rational numbers.
  2. Explicitly demonstrate that bd0bd \neq 0 by showing that the product of two nonzero integers is nonzero, rather than assuming this property.
  3. Include verification that ad+bcad + bc and bdbd are indeed integers by citing closure properties of integer arithmetic operations explicitly.
  4. The proof is already sufficiently rigorous for the given statement and requires no additional justification or enhancement steps. (correct answer)
Explanation: The proof is already rigorous and complete. Rational numbers are defined as quotients of integers (not necessarily in lowest terms), so Choice A is unnecessary. The fact that bd ≠ 0 follows obviously from b,d ≠ 0, making Choice B excessive. Choice C over-explains basic integer arithmetic. The proof correctly demonstrates that the sum has the required form.

Question 10

A student proves "If nn is divisible by 6, then nn is divisible by both 2 and 3" using: "Assume nn is divisible by 6. Then n=6kn = 6k for some integer kk. Since 6=236 = 2 \cdot 3, we have n=23k=2(3k)n = 2 \cdot 3 \cdot k = 2(3k). Since 3k3k is an integer, nn is divisible by 2. Similarly, n=3(2k)n = 3(2k), so nn is divisible by 3." Which statement best evaluates this proof?

  1. The proof is logically sound but could be enhanced by explicitly invoking the transitivity property of divisibility relationships.
  2. The proof contains a subtle error because it assumes 6=236 = 2 \cdot 3 without justifying that this factorization is unique or well-defined.
  3. The proof is incomplete because it fails to demonstrate that 3k3k and 2k2k are necessarily integers when kk is an integer.
  4. The proof is correct and complete, clearly demonstrating both divisibility conditions through valid algebraic manipulation and logical reasoning. (correct answer)
Explanation: The proof is correct and complete. It properly uses the definition of divisibility, correctly factors 6, and shows that n can be written as 2 times an integer and as 3 times an integer. Choice A suggests unnecessary complexity. Choice B incorrectly questions basic arithmetic facts. Choice C questions the obvious fact that products of integers are integers.

Question 11

A student attempts to prove "For all real numbers xx, if x25x+6=0x^2 - 5x + 6 = 0, then x=2x = 2 or x=3x = 3" by writing: "Assume x25x+6=0x^2 - 5x + 6 = 0. Factoring gives (x2)(x3)=0(x-2)(x-3) = 0. By the zero product property, either x2=0x-2 = 0 or x3=0x-3 = 0, so x=2x = 2 or x=3x = 3." What is the primary issue with this argument structure?

  1. The proof correctly establishes the forward direction but fails to prove the converse, making it an incomplete biconditional argument.
  2. The factorization step assumes the conclusion by presupposing that the quadratic has exactly the roots we're trying to prove exist.
  3. The zero product property applies only to polynomials over integers, not arbitrary real numbers, invalidating the logical step.
  4. The proof structure is actually valid and complete for the given conditional statement, with no significant logical flaws present. (correct answer)
Explanation: The proof is actually correct and complete. The statement is a conditional (if-then), not a biconditional, so proving the forward direction is sufficient. The factorization is valid (can be verified by expansion), and the zero product property applies to real numbers. Choice A incorrectly assumes a biconditional was intended. Choice B misunderstands factorization verification. Choice C incorrectly limits the zero product property.

Question 12

Consider the attempted proof: "Every prime number greater than 2 is odd. Proof: Assume pp is a prime number greater than 2. If pp were even, then p=2kp = 2k for some integer k>1k > 1. This means pp has 2 as a factor other than 1 and itself, contradicting the definition of prime. Therefore pp must be odd." Which aspect of this argument requires the most careful justification?

  1. The application of the law of excluded middle to conclude pp is odd, since the dichotomy between even and odd requires explicit justification.
  2. The conclusion that having 2 as a factor contradicts primality, since this relies on the precise definition of prime numbers and divisibility.
  3. The assumption that k>1k > 1 when p=2kp = 2k, since this requires proving that kk cannot equal 1 for primes greater than 2. (correct answer)
  4. The entire argument structure is sufficiently rigorous and requires no additional justification beyond what is explicitly provided in the proof.
Explanation: When analyzing proof techniques, you need to examine each logical step to identify where assumptions might be hidden or where additional justification is required. The proof uses proof by contradiction effectively: it assumes pp is even, writes p=2kp = 2k, then claims this contradicts primality. The critical gap lies in the assumption that k>1k > 1. If pp is a prime greater than 2 and p=2kp = 2k, why must k>1k > 1? This isn't immediately obvious and requires justification. Since p>2p > 2 and p=2kp = 2k, we get k=p/2>2/2=1k = p/2 > 2/2 = 1. Without establishing k>1k > 1, the contradiction fails—if k=1k = 1, then p=2p = 2, which contradicts our assumption that p>2p > 2. Option A incorrectly suggests the even/odd dichotomy needs justification, but this is a fundamental property of integers that's typically accepted without proof. Option B misidentifies the issue—the connection between having factor 2 and contradicting primality is straightforward once we know k>1k > 1. Option D is wrong because the proof does have a logical gap that needs addressing. The answer is C because proving k>1k > 1 is the missing piece that makes the entire argument work. Without it, the contradiction isn't established. When evaluating proofs, always trace through each logical step carefully. Look for unstated assumptions, especially in algebraic manipulations or when conclusions seem to jump ahead without sufficient justification.

Question 13

A student proves "For any integer nn, if n2n^2 is divisible by 4, then nn is even" as follows: "If nn is odd, then n=2k+1n = 2k+1 for some integer kk. Then n2=(2k+1)2=4k2+4k+1=4k(k+1)+1n^2 = (2k+1)^2 = 4k^2 + 4k + 1 = 4k(k+1) + 1. Since k(k+1)k(k+1) is an integer, n2n^2 leaves remainder 1 when divided by 4, so n2n^2 is not divisible by 4. This contradicts our assumption." What logical structure does this proof employ?

  1. Direct proof, since the student directly shows that odd integers have squares not divisible by 4, establishing the required conditional statement.
  2. Proof by contrapositive, since the student proves the equivalent statement "if nn is odd, then n2n^2 is not divisible by 4." (correct answer)
  3. Proof by contradiction, since the student assumes the negation of the conclusion and derives a contradiction from the given hypothesis.
  4. Proof by cases, since the student implicitly considers the cases where nn is odd versus even to establish the complete logical framework.
Explanation: This is proof by contrapositive. The original statement is "if n² is divisible by 4, then n is even." The contrapositive is "if n is odd, then n² is not divisible by 4," which is exactly what the student proved. Choice A misidentifies the method. Choice C is wrong - there's no assumption of negation leading to contradiction. Choice D is wrong - only one case is considered.

Question 14

A student proves "Every tree with nn vertices has exactly n1n-1 edges" using induction. The inductive step assumes the statement holds for all trees with kk vertices, then considers a tree TT with k+1k+1 vertices. The student removes an arbitrary vertex vv and claims this creates a forest of trees, each with fewer than k+1k+1 vertices, so the inductive hypothesis applies. What is the main weakness in this approach?

  1. Removing vertex vv may disconnect the tree into multiple components, and the student must account for how the number of edges changes across all components. (correct answer)
  2. The argument fails to ensure that removing vv actually produces trees rather than general graphs, since connectivity might be lost in unexpected ways.
  3. The proof doesn't specify whether vv is a leaf or internal vertex, and these cases may require different applications of the inductive hypothesis.
  4. The student assumes without justification that each resulting component has exactly kk vertices, when the components could have various sizes all less than k+1k+1.
Explanation: The key issue is that when vertex vv is removed from tree TT, it takes with it all edges incident to vv. If vv has degree dd, then dd edges are removed, creating dd separate tree components. The student must carefully count: if the components have n1,n2,,ndn_1, n_2, \ldots, n_d vertices respectively, then by induction they have (n11)+(n21)++(nd1)(n_1-1) + (n_2-1) + \cdots + (n_d-1) edges total. Adding back the dd edges to vv gives the correct count, but this requires explicit accounting. Choice B is wrong because removing a vertex from a tree always leaves trees. Choice C misses the main issue. Choice D incorrectly focuses on component sizes rather than edge counting.

Question 15

A student attempts to prove "2\sqrt{2} is irrational" using the following outline: (1) Assume 2=pq\sqrt{2} = \frac{p}{q} where p,qp, q are integers with gcd(p,q)=1\gcd(p,q) = 1, (2) Show this leads to both pp and qq being even, (3) Conclude this contradicts gcd(p,q)=1\gcd(p,q) = 1. What is the most critical gap in this reasoning structure?

  1. The argument lacks a clear explanation of why showing pp and qq are both even is sufficient, rather than showing some other common factor.
  2. The proof requires justification for why we can assume gcd(p,q)=1\gcd(p,q) = 1 without loss of generality when representing any rational number.
  3. The student needs to prove that squaring both sides of 2=pq\sqrt{2} = \frac{p}{q} is a valid algebraic manipulation that preserves the equality.
  4. The student must explicitly show that if both pp and qq are even, then gcd(p,q)2\gcd(p,q) \geq 2, which contradicts the assumption that gcd(p,q)=1\gcd(p,q) = 1. (correct answer)
Explanation: When analyzing proof by contradiction, you need to identify where logical gaps might undermine the argument's validity. The structure here follows the classic approach for proving 2\sqrt{2} is irrational, but contains a subtle yet critical missing step. The correct answer is D because the student assumes that showing "both pp and qq are even" automatically creates a contradiction with "gcd(p,q)=1\gcd(p,q) = 1" without explicitly connecting these facts. While it may seem obvious that two even numbers share a common factor, rigorous mathematical proof requires stating this connection clearly. The student must demonstrate that if both pp and qq are even, then each is divisible by 2, making gcd(p,q)2\gcd(p,q) \geq 2, which directly contradicts the assumption that gcd(p,q)=1\gcd(p,q) = 1. Choice A misses the point—showing both numbers are even is indeed sufficient, and the reasoning structure correctly targets this property. Choice B is incorrect because assuming gcd(p,q)=1\gcd(p,q) = 1 is standard and valid; any rational number can be expressed in lowest terms. Choice C represents unnecessary concern; squaring both sides of an equation is a fundamental algebraic operation that doesn't require special justification in this context. The gap isn't about the overall proof strategy or algebraic manipulations—it's about making the logical connection explicit. In mathematical proofs, each step must be clearly justified, even when the reasoning seems obvious. Study tip: In proof analysis questions, look for missing logical bridges between statements, especially when conclusions seem to "jump" from one idea to another without clear justification.

Question 16

Consider the following attempted proof of "If f:ABf: A \to B is surjective and g:BCg: B \to C is surjective, then gf:ACg \circ f: A \to C is surjective": "Since ff is surjective, for any cCc \in C, there exists aAa \in A such that f(a)Bf(a) \in B. Since gg is surjective, g(f(a))=cg(f(a)) = c for some choice of aa. Therefore gfg \circ f is surjective." What makes this argument insufficient?

  1. The proof incorrectly assumes that the same element aAa \in A that works for surjectivity of ff will also work for the composition gfg \circ f.
  2. The argument fails to properly connect the surjectivity of gg to the existence of a specific aa such that (gf)(a)=c(g \circ f)(a) = c for arbitrary cCc \in C. (correct answer)
  3. The proof does not establish that f(a)Bf(a) \in B is the correct intermediate element needed for gg to map to the desired cCc \in C.
  4. The logical structure reverses the order of quantifiers, starting with the conclusion rather than an arbitrary element cCc \in C as required for surjectivity.
Explanation: The proof has the right intuition but fails to construct the proper logical chain. To prove gfg \circ f is surjective, we need: for any cCc \in C, there exists aAa \in A such that (gf)(a)=c(g \circ f)(a) = c. The correct approach: given cCc \in C, use surjectivity of gg to find bBb \in B with g(b)=cg(b) = c, then use surjectivity of ff to find aAa \in A with f(a)=bf(a) = b. The student's proof doesn't properly establish this connection—it vaguely asserts that these elements exist without showing how to construct them. Choice A misidentifies the error. Choice C is too narrow. Choice D incorrectly describes the quantifier issue.

Question 17

In proving set equality A(BC)=(AB)(AC)A \cap (B \cup C) = (A \cap B) \cup (A \cap C), a student writes: "Let xA(BC)x \in A \cap (B \cup C). Then xAx \in A and xBCx \in B \cup C. Since xBCx \in B \cup C, we have xBx \in B and xCx \in C. Therefore xABx \in A \cap B and xACx \in A \cap C, so x(AB)(AC)x \in (A \cap B) \cup (A \cap C)." What is the fundamental error in this reasoning?

  1. The student assumes without justification that xABx \in A \cap B and xACx \in A \cap C simultaneously, rather than using the disjunctive property of unions.
  2. The proof only shows one direction of the set equality and fails to prove that (AB)(AC)A(BC)(A \cap B) \cup (A \cap C) \subseteq A \cap (B \cup C).
  3. The student incorrectly interprets xBCx \in B \cup C as meaning xx is in both BB and CC, when it means xx is in at least one of them. (correct answer)
  4. The logical structure fails to properly distribute the intersection operation over the union, requiring a more careful case-by-case analysis of membership.
Explanation: When proving set equality using element membership, you need to be extremely careful about the logical meaning of set operations. The fundamental issue here lies in how unions are interpreted. The student's error occurs in the third sentence: "Since xBCx \in B \cup C, we have xBx \in B and xCx \in C." This is logically incorrect. When xBCx \in B \cup C, it means xx belongs to at least one of the sets BB or CC (or both). The union symbol \cup represents "or" in logic, not "and." So xBCx \in B \cup C means xBx \in B OR xCx \in C (or both), not xBx \in B AND xCx \in C. This misinterpretation makes the rest of the proof invalid because you cannot conclude that xx is simultaneously in both ABA \cap B and ACA \cap C. Looking at the wrong answers: (A) incorrectly identifies the error as being about simultaneous membership rather than the misinterpretation of union. (B) points to a completeness issue, but the fundamental logical error occurs much earlier in the proof. (D) suggests the error is about distribution mechanics, but the real problem is basic misunderstanding of union notation. The correct answer is (C) because it precisely identifies the logical error: confusing "or" (union) with "and" (intersection). Study tip: Remember that \cup means "or" and \cap means "and." When you see xBCx \in B \cup C, think "xx is in BB or CC (possibly both)" — never assume it's in both sets.

Question 18

To prove "For all positive integers n2n \geq 2, the number 2n+12^n + 1 has at least one prime factor greater than nn," which proof strategy addresses the most significant challenge in this statement?

  1. Use strong induction with careful attention to how the prime factorization of 2n+1+12^{n+1} + 1 relates to the factorization of 2n+12^n + 1.
  2. Apply proof by contradiction: assume 2n+12^n + 1 has only prime factors n\leq n, then show this leads to a bound contradiction on the size of 2n+12^n + 1. (correct answer)
  3. Use direct proof by systematically factoring 2n+12^n + 1 for small values of nn and establishing a pattern for the largest prime factor.
  4. Employ the Chinese Remainder Theorem to analyze the residues of 2n+12^n + 1 modulo small primes and derive constraints on possible factorizations.
Explanation: This statement requires showing that 2n+12^n + 1 cannot be completely factored using only primes n\leq n. Proof by contradiction is most effective: assume all prime factors are n\leq n, then the product of all primes n\leq n gives an upper bound, but 2n+12^n + 1 grows exponentially and eventually exceeds this bound. Choice A fails because 2n+1+12^{n+1} + 1 and 2n+12^n + 1 don't have a simple inductive relationship. Choice C only works for small nn and doesn't establish the general pattern. Choice D is unnecessarily complex and doesn't directly address the size constraint that makes this statement true.

Question 19

A student claims: "For any integers aa and bb, if a2+b2a^2 + b^2 is even, then both aa and bb must be even." To disprove this claim, which approach provides the most efficient counterargument?

  1. Show that when aa and bb are both odd, a2+b2a^2 + b^2 is even, providing a direct counterexample to the claimed implication. (correct answer)
  2. Prove that a2+b2a^2 + b^2 is even if and only if aa and bb have the same parity, then note this contradicts the claim.
  3. Use proof by contradiction assuming the claim is false and derive that a2+b2a^2 + b^2 must be odd when both are even.
  4. Demonstrate through exhaustive case analysis that exactly three of the four parity combinations make a2+b2a^2 + b^2 even.
Explanation: To disprove a universal claim, a single counterexample suffices. The claim states that if a2+b2a^2 + b^2 is even, then both aa and bb are even. A counterexample shows the hypothesis true but conclusion false. When a=1,b=3a = 1, b = 3 (both odd), we get a2+b2=1+9=10a^2 + b^2 = 1 + 9 = 10, which is even, but both numbers are odd, not even. This directly contradicts the claim. Choice B is correct but unnecessarily complex for disproof. Choice C misapplies proof by contradiction. Choice D is overly elaborate when one counterexample suffices.

Question 20

In proving that "the sum of any three consecutive integers is divisible by 3," a student writes: "Let the integers be n1n-1, nn, and n+1n+1. Their sum is 3n3n, which is clearly divisible by 3." What is the primary issue with this proof?

  1. The proof assumes nn is the middle integer without justifying why this representation covers all possible consecutive integer triples. (correct answer)
  2. The proof fails to consider negative integers, which might behave differently under the divisibility rule for 3.
  3. The student should have used mathematical induction rather than direct proof for this type of number theory statement.
  4. The calculation is incorrect because (n1)+n+(n+1)=3n+2(n-1) + n + (n+1) = 3n + 2, not 3n3n, invalidating the entire argument.
Explanation: The student's arithmetic is correct: (n1)+n+(n+1)=3n(n-1) + n + (n+1) = 3n, which is indeed divisible by 3. However, the proof structure has a subtle flaw. While representing three consecutive integers as n1,n,n+1n-1, n, n+1 is valid and does cover all cases (since nn can be any integer), a rigorous proof should briefly justify this representation. The student jumps directly to the calculation without explaining why this parameterization is complete. Choice B is wrong because divisibility by 3 works the same for negative integers. Choice C is incorrect because direct proof is perfectly appropriate here. Choice D contains an arithmetic error.