Skip to main content

Proof

What Is a Proof?

A mathematical proof is a logical argument that establishes the truth of a statement beyond all doubt. Unlike evidence in the empirical sciences, a mathematical proof is deductive: it proceeds from axioms, definitions, and previously established results using rules of inference to reach an irrefutable conclusion.

A statement that has been proved is called a theorem. A lemma is a subsidiary result proved in service of a larger theorem. A corollary is a direct consequence of a theorem.


Direct Proof

Method

To prove P    QP \implies Q directly:

  1. Assume PP is true.
  2. Use definitions, axioms, and known results to derive QQ.

This is the most straightforward proof technique and should be the first strategy attempted.

Examples

Theorem. The sum of two even integers is even.

Proof. Let aa and bb be even integers. By definition, a=2ma = 2m and b=2nb = 2n for some m,n{Z}m, n \in \mathbb{'\{'}Z{'\}'}. Then:

a+b=2m+2n=2(m+n)a + b = 2m + 2n = 2(m + n)

Since m+n{Z}m + n \in \mathbb{'\{'}Z{'\}'}, a+ba + b is even by definition.

Theorem. If nn is an odd integer, then n2n^2 is odd.

Proof. Let n=2k+1n = 2k + 1 for some k{Z}k \in \mathbb{'\{'}Z{'\}'}. Then:

n2=(2k+1)2=4k2+4k+1=2(2k2+2k)+1n^2 = (2k + 1)^2 = 4k^2 + 4k + 1 = 2(2k^2 + 2k) + 1

Since 2k2+2k{Z}2k^2 + 2k \in \mathbb{'\{'}Z{'\}'}, n2n^2 is odd.

Theorem. The product of two rational numbers is rational.

Proof. Let a=pqa = \dfrac{p}{q} and b=rsb = \dfrac{r}{s} where p,q,r,s{Z}p, q, r, s \in \mathbb{'\{'}Z{'\}'} and q,s0q, s \ne 0. Then:

ab=pqrs=prqsab = \frac{p}{q} \cdot \frac{r}{s} = \frac{pr}{qs}

Since pr,qs{Z}pr, qs \in \mathbb{'\{'}Z{'\}'} and qs0qs \ne 0, abab is rational.


Proof by Contradiction

Method

To prove a statement SS:

  1. Assume ¬S\neg S (the negation of SS).
  2. Derive a logical contradiction (something that violates an axiom, definition, or known fact).
  3. Conclude that ¬S\neg S is false, hence SS is true.

This rests on the law of excluded middle: for any proposition SS, exactly one of SS and ¬S\neg S is true.

Examples

Theorem. 2\sqrt{2} is irrational.

Proof. Suppose, for contradiction, that 2\sqrt{2} is rational. Then 2=ab\sqrt{2} = \dfrac{a}{b} where a,b{Z}+a, b \in \mathbb{'\{'}Z{'\}'}^+, gcd(a,b)=1\gcd(a, b) = 1 (the fraction is in lowest terms).

Squaring: 2=a2b22 = \dfrac{a^2}{b^2}, so a2=2b2a^2 = 2b^2. This means a2a^2 is even, so aa is even (since the square of an odd number is odd). Write a=2ka = 2k.

Substituting: (2k)2=2b2    4k2=2b2    b2=2k2(2k)^2 = 2b^2 \implies 4k^2 = 2b^2 \implies b^2 = 2k^2. So b2b^2 is even, and hence bb is even.

Both aa and bb are even, contradicting gcd(a,b)=1\gcd(a, b) = 1.

Theorem. There are infinitely many primes.

Proof. Suppose, for contradiction, that there are only finitely many primes p1,p2,,pnp_1, p_2, \ldots, p_n. Consider:

N=p1p2pn+1N = p_1 p_2 \cdots p_n + 1

N>1N \gt 1, so NN has a prime factor. But NN is not divisible by any pip_i (since NN leaves remainder 11 upon division by each pip_i). This contradicts the assumption that the list p1,,pnp_1, \ldots, p_n contains all primes.

Theorem. log23\log_2{3} is irrational.

Proof. Suppose log23=ab\log_2{3} = \dfrac{a}{b} with a,b{Z}+a, b \in \mathbb{'\{'}Z{'\}'}^+. Then 2a/b=32^{a/b} = 3, so 2a=3b2^a = 3^b. The left side is even; the right side is odd. Contradiction.


Proof by Contrapositive

Method

To prove P    QP \implies Q, prove the logically equivalent contrapositive ¬Q    ¬P\neg Q \implies \neg P:

  1. Assume ¬Q\neg Q.
  2. Derive ¬P\neg P.

The statements P    QP \implies Q and ¬Q    ¬P\neg Q \implies \neg P have identical truth tables.

Example

Theorem. If n2n^2 is even, then nn is even.

Proof. We prove the contrapositive: if nn is odd, then n2n^2 is odd.

Let n=2k+1n = 2k + 1 for k{Z}k \in \mathbb{'\{'}Z{'\}'}. Then n2=4k2+4k+1=2(2k2+2k)+1n^2 = 4k^2 + 4k + 1 = 2(2k^2 + 2k) + 1, which is odd. Therefore, if n2n^2 is even, nn must be even.


Proof by Induction

Method

To prove that a statement P(n)P(n) holds for all integers nn0n \ge n_0:

  1. Base case. Verify P(n0)P(n_0) is true.
  2. Inductive hypothesis. Assume P(k)P(k) is true for some arbitrary kn0k \ge n_0.
  3. Inductive step. Using the hypothesis, prove that P(k+1)P(k + 1) is true.
  4. Conclusion. By the principle of mathematical induction, P(n)P(n) is true for all nn0n \ge n_0.

Examples

Theorem. For all n{Z}+n \in \mathbb{'\{'}Z{'\}'}^+, i=1ni=n(n+1)2\displaystyle\sum_{i=1}^{n} i = \dfrac{n(n+1)}{2}.

Proof. By induction on nn.

Base case (n=1n = 1): i=11i=1=122\displaystyle\sum_{i=1}^{1} i = 1 = \dfrac{1 \cdot 2}{2}. True.

Inductive hypothesis: Assume i=1ki=k(k+1)2\displaystyle\sum_{i=1}^{k} i = \dfrac{k(k+1)}{2} for some k1k \ge 1.

Inductive step:

i=1k+1i=i=1ki+(k+1)=k(k+1)2+(k+1)=(k+1)(k+2)2\sum_{i=1}^{k+1} i = \sum_{i=1}^{k} i + (k+1) = \frac{k(k+1)}{2} + (k+1) = \frac{(k+1)(k+2)}{2}

This is precisely the formula with n=k+1n = k + 1.

Conclusion: By induction, the formula holds for all n{Z}+n \in \mathbb{'\{'}Z{'\}'}^+.

Theorem. For all n{Z}+n \in \mathbb{'\{'}Z{'\}'}^+, n3nn^3 - n is divisible by 66.

Proof. By induction on nn.

Base case (n=1n = 1): 11=01 - 1 = 0, divisible by 66.

Inductive hypothesis: k3k=6mk^3 - k = 6m for some m{Z}m \in \mathbb{'\{'}Z{'\}'}.

Inductive step:

(k+1)3(k+1)=k3+3k2+3k+1k1=(k3k)+3k(k+1)(k+1)^3 - (k+1) = k^3 + 3k^2 + 3k + 1 - k - 1 = (k^3 - k) + 3k(k + 1)

By the hypothesis, k3k=6mk^3 - k = 6m. Also, k(k+1)k(k + 1) is always even (product of consecutive integers), so 3k(k+1)=6k(k+1)23k(k + 1) = 6 \cdot \dfrac{k(k+1)}{2} is divisible by 66. Hence the sum is divisible by 66.

Theorem. 2n>n2^n \gt n for all n{Z}+n \in \mathbb{'\{'}Z{'\}'}^+.

Proof. By induction.

Base case (n=1n = 1): 2>12 \gt 1. True.

Inductive hypothesis: 2k>k2^k \gt k for some k1k \ge 1.

Inductive step: 2k+1=22k>2kk+12^{k+1} = 2 \cdot 2^k \gt 2k \ge k + 1 (since k1k \ge 1).

Conclusion: 2n>n2^n \gt n for all n1n \ge 1.


Counterexamples

Method

To disprove a universal statement of the form "for all xSx \in S, P(x)P(x)", find a single element xSx \in S for which P(x)P(x) is false. This single counterexample is sufficient to refute the claim.

Examples

Claim. "All prime numbers are odd."

Counterexample. 22 is prime and even.

Claim. "If ff is continuous, then ff is differentiable."

Counterexample. f(x)=xf(x) = |x| is continuous on {R}\mathbb{'\{'}R{'\}'} but not differentiable at x=0x = 0.

Claim. "For all real numbers xx, x2>xx^2 \gt x."

Counterexample. x=0.5x = 0.5: 0.250.50.25 \not\gt 0.5. Also x=0x = 0: 000 \not\gt 0, and x=1x = 1: 111 \not\gt 1.


Proof by Exhaustion

Method

When a statement involves a finite number of cases, verify each case individually. This is a valid but often tedious technique, applicable only when the case set is small.

Example

Theorem. Every prime pp with 2<p<72 \lt p \lt 7 can be expressed in the form 6k±16k \pm 1.

Proof. The primes in this range are 33 and 55.

  • p=3p = 3: 3=6(1)3=6(0)+33 = 6(1) - 3 = 6(0) + 3. Since 3=6(1)33 = 6(1) - 3 does not match, we check: 3=6(0)+33 = 6(0) + 3. Actually, 3=6(1)33 = 6(1) - 3. Better: 33 is the sole exception as 363 \mid 6 and 333 \mid 3.

Let us reconsider. For primes p>3p \gt 3: every integer nn is of the form 6k6k, 6k±16k \pm 1, 6k±26k \pm 2, or 6k+36k + 3. Numbers of the form 6k6k, 6k±26k \pm 2, 6k+36k + 3 are divisible by 22, 22, or 33 respectively. So any prime p>3p \gt 3 must be of the form 6k±16k \pm 1.

For the given range, p=5=6(1)1p = 5 = 6(1) - 1. Verified.


Common Pitfalls

  1. Circular reasoning. Assuming the statement to be proved within the proof itself. Every step must follow from definitions, axioms, or previously established results.

  2. Affirming the consequent. From P    QP \implies Q and QQ, one cannot conclude PP. This is a common logical error.

  3. Incomplete induction base case. If a statement is claimed for all n1n \ge 1, the base case n=1n = 1 must be verified. For multi-variable induction, every base case must be checked.

  4. Improper counterexample. A counterexample must satisfy all the hypotheses of the statement. Disproving "if x>0x \gt 0, then x2>xx^2 \gt x" requires x>0x \gt 0 and x2xx^2 \le x simultaneously.

  5. Confusing contradiction and contrapositive. Proof by contradiction assumes the negation of the conclusion (or the entire statement) and derives any contradiction. Proof by contrapositive specifically proves ¬Q    ¬P\neg Q \implies \neg P. They are related but distinct techniques.

  6. Overlooking cases in exhaustion proofs. If the case set is not genuinely exhaustive, the proof is invalid. List all cases explicitly.

  7. Using examples as proof. Showing that a statement holds for several values does not constitute a proof for all values. "True for n=1,2,3n = 1, 2, 3" is not a proof.


Practice Problems

Problem 1

Prove by direct proof that the sum of three consecutive integers is divisible by 33.

Problem 2

Prove by contradiction that 3\sqrt{3} is irrational.

Problem 3

Prove by contrapositive: if 3n+23n + 2 is odd, then nn is odd.

Problem 4

Prove by induction that i=1ni2=n(n+1)(2n+1)6\displaystyle\sum_{i=1}^{n} i^2 = \dfrac{n(n+1)(2n+1)}{6} for all n{Z}+n \in \mathbb{'\{'}Z{'\}'}^+.

Problem 5

Prove by induction that 7n17^n - 1 is divisible by 66 for all n{Z}+n \in \mathbb{'\{'}Z{'\}'}^+.

Problem 6

Give a counterexample to disprove: "If a2=b2a^2 = b^2, then a=ba = b."

Problem 7

Prove that there is no largest rational number.

Problem 8

Prove by induction that n!>2nn! \gt 2^n for all integers n4n \ge 4.

Problem 9

Prove: the product of any three consecutive integers is divisible by 66.

Problem 10

Prove that if aa and bb are rational and a+b2=0a + b\sqrt{2} = 0, then a=b=0a = b = 0.

Answers to Selected Problems

Problem 1: Let the three consecutive integers be n,n+1,n+2n, n+1, n+2. Their sum is n+(n+1)+(n+2)=3n+3=3(n+1)n + (n+1) + (n+2) = 3n + 3 = 3(n+1), which is divisible by 33 since n+1{Z}n+1 \in \mathbb{'\{'}Z{'\}'}.

Problem 2: Suppose 3=a/b\sqrt{3} = a/b in lowest terms, a,b{Z}+a, b \in \mathbb{'\{'}Z{'\}'}^+. Then a2=3b2a^2 = 3b^2, so a2a^2 is divisible by 33, hence aa is divisible by 33. Write a=3ka = 3k: 9k2=3b2    b2=3k29k^2 = 3b^2 \implies b^2 = 3k^2, so bb is divisible by 33. Both aa and bb divisible by 33 contradicts lowest terms.

Problem 3: Contrapositive: if nn is even, then 3n+23n + 2 is even. If n=2kn = 2k, then 3n+2=6k+2=2(3k+1)3n + 2 = 6k + 2 = 2(3k + 1), which is even.

Problem 4: Base case (n=1n = 1): 1=1(2)(3)/6=11 = 1(2)(3)/6 = 1. True. Inductive hypothesis: i=1ki2=k(k+1)(2k+1)/6\sum_{i=1}^{k} i^2 = k(k+1)(2k+1)/6. Inductive step: i=1k+1i2=k(k+1)(2k+1)/6+(k+1)2=(k+1)[k(2k+1)/6+(k+1)]\sum_{i=1}^{k+1} i^2 = k(k+1)(2k+1)/6 + (k+1)^2 = (k+1)[k(2k+1)/6 + (k+1)] =(k+1)[(2k2+k+6k+6)/6]=(k+1)(2k2+7k+6)/6=(k+1)(k+2)(2k+3)/6= (k+1)[(2k^2 + k + 6k + 6)/6] = (k+1)(2k^2 + 7k + 6)/6 = (k+1)(k+2)(2k+3)/6. This is the formula with n=k+1n = k + 1.

Problem 5: Base case (n=1n = 1): 71=67 - 1 = 6, divisible by 66. Inductive hypothesis: 7k1=6m7^k - 1 = 6m. Inductive step: 7k+11=77k1=7(6m+1)1=42m+71=42m+6=6(7m+1)7^{k+1} - 1 = 7 \cdot 7^k - 1 = 7(6m + 1) - 1 = 42m + 7 - 1 = 42m + 6 = 6(7m + 1).

Problem 6: Let a=3,b=3a = 3, b = -3. Then a2=9=b2a^2 = 9 = b^2 but aba \ne b.

Problem 7: Suppose qq is the largest rational number. Then q+1q + 1 is rational and q+1>qq + 1 \gt q, contradicting maximality.

Problem 8: Base case (n=4n = 4): 4!=24>16=244! = 24 \gt 16 = 2^4. True. Inductive hypothesis: k!>2kk! \gt 2^k for some k4k \ge 4. Inductive step: (k+1)!=(k+1)k!>(k+1)2k52k>22k=2k+1(k+1)! = (k+1) \cdot k! \gt (k+1) \cdot 2^k \ge 5 \cdot 2^k \gt 2 \cdot 2^k = 2^{k+1}. The inequality holds since k+15>2k + 1 \ge 5 \gt 2.

Problem 10: If b0b \ne 0, then 2=a/b\sqrt{2} = -a/b, which is rational (since a,ba, b are rational and b0b \ne 0). But 2\sqrt{2} is irrational (established earlier). Contradiction. Therefore b=0b = 0, and from a+0=0a + 0 = 0 we get a=0a = 0.


Worked Examples

Worked Example: Direct Proof Involving Divisibility

Prove that the square of any odd integer leaves remainder 11 when divided by 88.

Solution

Let nn be an odd integer. Then n=2k+1n = 2k + 1 for some k{Z}k \in \mathbb{'\{'}Z{'\}'}.

n2=(2k+1)2=4k2+4k+1=4k(k+1)+1n^2 = (2k + 1)^2 = 4k^2 + 4k + 1 = 4k(k + 1) + 1

Since kk and k+1k + 1 are consecutive integers, one of them is even. Therefore k(k+1)k(k + 1) is even, so k(k+1)=2mk(k + 1) = 2m for some m{Z}m \in \mathbb{'\{'}Z{'\}'}.

n2=4(2m)+1=8m+1n^2 = 4(2m) + 1 = 8m + 1

Hence n2n^2 leaves remainder 11 upon division by 88.

Worked Example: Proof by Contradiction Involving Rationals

Prove that 6\sqrt{6} is irrational.

Solution

Suppose, for contradiction, that 6=ab\sqrt{6} = \dfrac{a}{b} where a,b{Z}+a, b \in \mathbb{'\{'}Z{'\}'}^+ and gcd(a,b)=1\gcd(a, b) = 1.

Squaring: a2=6b2a^2 = 6b^2, so a2a^2 is even (divisible by 22), and hence aa is even. Write a=2ma = 2m.

Substituting: 4m2=6b2    2m2=3b24m^2 = 6b^2 \implies 2m^2 = 3b^2.

This means 3b23b^2 is even, so b2b^2 is even (since 33 is odd), and hence bb is even.

Both aa and bb are even, contradicting gcd(a,b)=1\gcd(a, b) = 1.

Therefore 6\sqrt{6} is irrational.

Worked Example: Strong Induction

Prove that every integer n2n \ge 2 can be expressed as a product of prime numbers.

Solution

We use strong induction on nn.

Base case (n=2n = 2): 22 is itself prime, hence a product of primes (with one factor).

Inductive hypothesis: Assume that every integer kk with 2km2 \le k \le m can be written as a product of primes.

Inductive step: Consider n=m+1n = m + 1.

  • If m+1m + 1 is prime, it is trivially a product of primes.
  • If m+1m + 1 is composite, then m+1=abm + 1 = ab where 2abm2 \le a \le b \le m. By the inductive hypothesis, both aa and bb are products of primes. Therefore m+1=abm + 1 = ab is also a product of primes.

Conclusion: By strong induction, every integer n2n \ge 2 is a product of primes.

Worked Example: Proof by Contrapositive

Prove that if n2n^2 is not divisible by 44, then nn is odd.

Solution

We prove the contrapositive: if nn is even, then n2n^2 is divisible by 44.

If nn is even, then n=2kn = 2k for some k{Z}k \in \mathbb{'\{'}Z{'\}'}.

n2=(2k)2=4k2n^2 = (2k)^2 = 4k^2

Since k2{Z}k^2 \in \mathbb{'\{'}Z{'\}'}, n2=4k2n^2 = 4k^2 is divisible by 44.

Therefore, if n2n^2 is not divisible by 44, then nn must be odd.

Worked Example: Proof by Exhaustion

Prove that for all integers nn with 0n40 \le n \le 4, the value n3nn^3 - n is even.

Solution

We verify each case:

  • n=0n = 0: 030=00^3 - 0 = 0 (even)
  • n=1n = 1: 131=01^3 - 1 = 0 (even)
  • n=2n = 2: 82=68 - 2 = 6 (even)
  • n=3n = 3: 273=2427 - 3 = 24 (even)
  • n=4n = 4: 644=6064 - 4 = 60 (even)

All cases confirmed. The statement holds for 0n40 \le n \le 4.

Note: this can also be proved generally. n3n=n(n1)(n+1)n^3 - n = n(n-1)(n+1) is the product of three consecutive integers, which always includes at least one even factor.


Additional Common Pitfalls

  • Assuming the converse. P    QP \implies Q does not imply Q    PQ \implies P. For example, "if nn is even then n2n^2 is even" is true, but "if n2n^2 is even then nn is even" requires a separate proof (by contrapositive).

  • Induction with incorrect base case. If the claim starts at n=0n = 0, verifying n=1n = 1 as the base case is insufficient. The base case must match the starting value in the claim.

  • Weak vs. strong induction confusion. Standard induction assumes P(k)P(k) to prove P(k+1)P(k+1). Strong induction assumes P(2),P(3),,P(k)P(2), P(3), \ldots, P(k) to prove P(k+1)P(k+1). Use strong induction when P(k+1)P(k+1) depends on more than just P(k)P(k).

  • Contradiction: negating the statement incorrectly. The negation of "for all xx, P(x)P(x)" is "there exists xx such that ¬P(x)\neg P(x)". The negation of "there exists xx such that P(x)P(x)" is "for all xx, ¬P(x)\neg P(x)". Quantifier negation must swap "for all" with "there exists."

  • Incomplete exhaustion. Proof by exhaustion requires checking every single case. Missing even one case invalidates the proof. This technique should only be used when the number of cases is genuinely small and enumerable.

  • Using specific numbers in a general proof. A proof that relies on a specific value (e.g., "let n=5n = 5") only proves the statement for that value, not for all nn. General proofs must use arbitrary or general variables.


Exam-Style Problems

Problem 11

Prove by contradiction that 2+3\sqrt{2} + \sqrt{3} is irrational.

Problem 12

Prove by induction that i=1n1i(i+1)=nn+1\displaystyle\sum_{i=1}^{n} \frac{1}{i(i+1)} = \frac{n}{n+1} for all n{Z}+n \in \mathbb{'\{'}Z{'\}'}^+.

Problem 13

Prove by direct proof: if aa and bb are integers and aba \mid b and bab \mid a, then a=ba = b or a=ba = -b.

Problem 14

Prove that there are infinitely many positive integers nn such that n2+n+41n^2 + n + 41 is composite. (Hint: consider specific values of nn that make the expression factorable.)

Problem 15

Prove by induction that i=1n2i1=2n1\displaystyle\sum_{i=1}^{n} 2^{i-1} = 2^n - 1 for all n{Z}+n \in \mathbb{'\{'}Z{'\}'}^+.

Problem 16

Prove by contrapositive: for integers a,b,ca, b, c, if aa does not divide bcbc, then aa does not divide bb.

Problem 17

Give a counterexample to disprove: "For all real numbers xx and yy, x+y=x+y\lfloor x + y \rfloor = \lfloor x \rfloor + \lfloor y \rfloor."

Problem 18

Prove that log25\log_2{5} is irrational.

Answers to Additional Problems

Problem 11: Suppose 2+3=ab\sqrt{2} + \sqrt{3} = \dfrac{a}{b} with a,b{Z}+a, b \in \mathbb{'\{'}Z{'\}'}^+ in lowest terms. Squaring: 5+26=a2/b25 + 2\sqrt{6} = a^2/b^2, so 6=(a25b2)/(2b2)\sqrt{6} = (a^2 - 5b^2)/(2b^2), which is rational. But 6\sqrt{6} is irrational (proved earlier). Contradiction.

Problem 12: Base case (n=1n = 1): 112=12=11+1\dfrac{1}{1 \cdot 2} = \dfrac{1}{2} = \dfrac{1}{1+1}. True. Inductive hypothesis: i=1k1i(i+1)=kk+1\displaystyle\sum_{i=1}^{k} \dfrac{1}{i(i+1)} = \dfrac{k}{k+1}. Inductive step: i=1k+11i(i+1)=kk+1+1(k+1)(k+2)=k(k+2)+1(k+1)(k+2)=k2+2k+1(k+1)(k+2)=(k+1)2(k+1)(k+2)=k+1k+2\displaystyle\sum_{i=1}^{k+1} \dfrac{1}{i(i+1)} = \dfrac{k}{k+1} + \dfrac{1}{(k+1)(k+2)} = \dfrac{k(k+2) + 1}{(k+1)(k+2)} = \dfrac{k^2 + 2k + 1}{(k+1)(k+2)} = \dfrac{(k+1)^2}{(k+1)(k+2)} = \dfrac{k+1}{k+2}. This is the formula with n=k+1n = k + 1.

Problem 13: ab    b=maa \mid b \implies b = ma and ba    a=nbb \mid a \implies a = nb for some m,n{Z}m, n \in \mathbb{'\{'}Z{'\}'}. Substituting: a=n(ma)=(nm)aa = n(ma) = (nm)a, so nm=1nm = 1. Since m,nm, n are integers, either m=n=1m = n = 1 (giving a=ba = b) or m=n=1m = n = -1 (giving a=ba = -b).

Problem 14: Take n=41n = 41: 412+41+41=41(41+1+1)=41×4341^2 + 41 + 41 = 41(41 + 1 + 1) = 41 \times 43, which is composite. Take n=42n = 42: 422+42+41=1764+42+41=184742^2 + 42 + 41 = 1764 + 42 + 41 = 1847. Check: 1847=43×42.951847 = 43 \times 42.95 \ldots. Actually 1847/43=42.951847/43 = 42.95, so check: 1847=43×43=184918471847 = 43 \times 43 = 1849 \ne 1847. Try n=40n = 40: 1600+40+41=1681=4121600 + 40 + 41 = 1681 = 41^2, composite. Take n=41k1n = 41k - 1 for any kk: (41k1)2+(41k1)+41=1681k282k+1+41k1+41=1681k241k+41=41(41k2k+1)(41k - 1)^2 + (41k - 1) + 41 = 1681k^2 - 82k + 1 + 41k - 1 + 41 = 1681k^2 - 41k + 41 = 41(41k^2 - k + 1), which is composite for all k1k \ge 1. Since there are infinitely many such kk, there are infinitely many composite values.

Problem 15: Base case (n=1n = 1): 20=1=2112^0 = 1 = 2^1 - 1. True. Inductive hypothesis: i=1k2i1=2k1\displaystyle\sum_{i=1}^{k} 2^{i-1} = 2^k - 1. Inductive step: i=1k+12i1=(2k1)+2k=2k+11\displaystyle\sum_{i=1}^{k+1} 2^{i-1} = (2^k - 1) + 2^k = 2^{k+1} - 1. This is the formula with n=k+1n = k + 1.

Problem 16: Contrapositive: if aba \mid b, then abca \mid bc. If aba \mid b, then b=mab = ma for some m{Z}m \in \mathbb{'\{'}Z{'\}'}, so bc=macbc = mac, hence abca \mid bc. This proves the contrapositive, hence the original statement.

Problem 17: Take x=0.5x = 0.5 and y=0.5y = 0.5. 0.5+0.5=1=1\lfloor 0.5 + 0.5 \rfloor = \lfloor 1 \rfloor = 1, but 0.5+0.5=0+0=01\lfloor 0.5 \rfloor + \lfloor 0.5 \rfloor = 0 + 0 = 0 \ne 1.

Problem 18: Suppose log25=a/b\log_2{5} = a/b with a,b{Z}+a, b \in \mathbb{'\{'}Z{'\}'}^+. Then 2a/b=52^{a/b} = 5, so 2a=5b2^a = 5^b. The left side is a power of 22 (even for a1a \ge 1), the right side is a power of 55 (odd). For a=0a = 0: 1=5b1 = 5^b is impossible. For a1a \ge 1: even = odd. Contradiction.


If You Get These Wrong, Revise:

  • Logic and set theory → Review the logic and proof fundamentals
  • Divisibility and prime factorisation → Review number theory and algebra topics
  • Summation notation and series → Review ./calculus (section on integration and series)
  • Quadratics and factorisation → Review algebra fundamentals
  • Function notation and domain → Review functions topics

For the A-Level treatment of this topic, see Proof.