No history yet

Introduction to Proofs

The Building Blocks of Argument

A mathematical proof is a logical argument that shows a statement is true. It’s like a detective laying out evidence to reach a conclusion, except the evidence consists of established facts and the conclusion is a mathematical truth. Every proof stands on the shoulders of two fundamental concepts: definitions and axioms.

Axiom

noun

A statement that is accepted as true without proof. It serves as a starting point for further reasoning.

Theorem

noun

A statement that has been proven to be true on the basis of previously established statements, such as other theorems, axioms, and definitions.

Axioms are the bedrock assumptions we agree on. Definitions give us a shared, precise vocabulary. For example, the definition of an even number is an integer that can be expressed as 2k2k, where kk is also an integer. With these tools, we use logical reasoning to build a case for a new statement, called a theorem.

Direct Proof

The most straightforward way to prove a theorem is with a direct proof. Most theorems take the form of an "if-then" statement: "If P is true, then Q is true." In a direct proof, we assume that P (the hypothesis) is true and use a series of logical steps to show that Q (the conclusion) must follow.

Let's prove the statement: If x and y are two even integers, then their sum x + y is also even.

First, we start by assuming the "if" part is true. We have two even integers, x and y.

Next, we use our definition of an even number. Since x and y are even, we can write them in their defined form:

x=2ay=2b \begin{aligned} \\ x &= 2a \\ y &= 2b \\ \end{aligned} \\

Here, a and b can be any integers. Now, we add them together:

x+y=2a+2bx + y = 2a + 2b

Using a basic rule of algebra, we can factor out the 2:

x+y=2(a+b)x + y = 2(a + b)

We know that the sum of two integers (a + b) is just another integer. Let's call it c. So, we can write:

x+y=2cx + y = 2c

This result, $2c$, perfectly matches our definition of an even number. We've shown that the sum x + y must be even. The proof is complete. We started with the hypothesis and arrived directly at the conclusion.

Indirect Proofs

Sometimes, the direct path is messy or hard to see. In these cases, mathematicians turn to indirect proofs. Instead of tackling the problem head-on, they approach it from a different angle. The two most common types are proof by contrapositive and proof by contradiction.

Proof by Contrapositive

Every "if P, then Q" statement has a logically equivalent partner called the contrapositive: "If not Q, then not P." If we can prove the contrapositive is true, then the original statement must also be true. It’s like looking at a reflection to understand the original object.

Let's prove: If n2n^2 is an even integer, then nn is an even integer.

A direct proof is tricky. How do we go from knowing about n2n^2 to knowing about nn? Instead, let's form the contrapositive.

Our original statement is:

  • P: n2n^2 is even.
  • Q: nn is even.

The contrapositive is "If not Q, then not P":

  • Not Q: nn is not even (meaning nn is odd).
  • Not P: n2n^2 is not even (meaning n2n^2 is odd).

So, we need to prove: If n is an odd integer, then n2n^2 is an odd integer. This is much easier to handle directly.

We start by assuming n is odd. By definition, an odd number can be written as $2k + 1$ for some integer k. So:

n=2k+1n = 2k + 1

Now, let's square it:

n2=(2k+1)2n2=4k2+4k+1 \begin{aligned} \\ n^2 &= (2k + 1)^2 \\ n^2 &= 4k^2 + 4k + 1 \\ \end{aligned} \\

We can factor a 2 out of the first two terms:

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

Since $2k^2 + 2k$ is just another integer, let's call it m. Our equation becomes:

n2=2m+1n^2 = 2m + 1

This expression, 2m+12m+1, is the definition of an odd number. We have successfully proven that if n is odd, then n2n^2 is odd. Because we proved the contrapositive, we have also proven the original, more difficult statement.

Proof by Contradiction

This method is a powerful tool. To prove a statement is true, you start by assuming it's false. Then, you follow the logical consequences of that assumption until you run into a contradiction—a result that's impossible or violates one of your initial assumptions. This absurdity reveals that your initial assumption (that the statement was false) must be wrong, meaning the statement is actually true.

Let's use this method to prove that the square root of 2 is an irrational number.

First, we assume the opposite: that 2\sqrt{2} is a rational number. By definition, a rational number can be written as a fraction ab\frac{a}{b} where a and b are integers, b is not zero, and the fraction is in its simplest form (meaning a and b have no common factors other than 1).

2=ab\sqrt{2} = \frac{a}{b}

Let's square both sides and rearrange the equation:

2=a2b22b2=a2 \begin{aligned} \\ 2 &= \frac{a^2}{b^2} \\ 2b^2 &= a^2 \\ \end{aligned} \\

This equation tells us that a2a^2 is an even number, since it's equal to 2 times another integer (b2b^2). And as we just proved with the contrapositive, if a2a^2 is even, then a must also be even. So we can write a as 2k2k for some integer k.

Now, let's substitute 2k2k for a back into our equation:

2b2=(2k)22b2=4k2 \begin{aligned} \\ 2b^2 &= (2k)^2 \\ 2b^2 &= 4k^2 \\ \end{aligned} \\

We can divide both sides by 2:

b2=2k2b^2 = 2k^2

This means that b2b^2 is also an even number, which in turn means that b must be an even number. And here is the contradiction. We started by assuming the fraction ab\frac{a}{b} was in its simplest form. But we just showed that both a and b are even, meaning they share a common factor of 2. This is impossible if the fraction is in simplest form.

Our initial assumption has led us to an absurd result. Therefore, the assumption must be false. The square root of 2 cannot be rational.

Ready to check your understanding?

Quiz Questions 1/6

What are the two foundational concepts upon which every mathematical proof is built?

Quiz Questions 2/6

In a direct proof that the sum of two even integers, xx and yy, is even, what is the crucial step taken immediately after assuming xx and yy are even?

These methods—direct, contrapositive, and contradiction—are the essential tools for building mathematical arguments. They provide a framework for taking what we know and logically discovering what must be true.