Open In App

Mathematics | Introduction to Proofs

Mathematical proof is an argument we give logically to validate a mathematical statement. In order to validate a statement, we consider two things: A statement and Logical operators

A statement is either true or false but not both. Logical operators are AND, OR, NOT, If then, and If and only if. Coupled with quantifiers like for all and there exists. We apply operators on the statement to check the correctness of it. 



Types of mathematical proofs: 

2k(2k + 1)

which is divisible by 2, hence it is even. 



If x is odd, hence x = 2k + 1 for some number k, now the statement becomes: 

(2k+1)(2k+1+1) = (2k + 1) 2(k  + 1)

which is again divisible by 2 and hence in both cases we proved that x(x+1) is even. 

sqrt(2) = a/b 

for some integers a and b with b != 0. 
Let us choose integers a and b with sqrt(2) = a/b, such that b is positive and as small as possible. (Well-Ordering Principle) 

 a^2 = 2b^2 

Since a^2 is even, it follows that a is even. 
a = 2k for some integer k, so a^2 = 4k^2 
b^2 = 2k^2. Since b^2 is even, it follows that b is even. 
Since a and b are both even, a/2 and b/2 are integers with b/2 > 0, and sqrt(2) = (a/2)/(b/2), because (a/2)/(b/2) = a/b. 
But it contradicts our assumption b is as small as possible. Therefore sqrt(2) cannot be rational. 

1. P(1), 
2. (for all n there exists Z+) P(n) implies P(n + 1), 
   then (for all n there exists Z+) P(n).

Example: For every positive integer n, 

1 + 2 +···+ n = n(n + 1)/ 2 

Proof: 
Base case: If n = 1, 

1 +  ··· + n = 1 

And 

n(n + 1)/2 = 11 
1 + 2 +···+ n = n(n + 1)/ 2  ---- (i) (inductive hypothesis) 

Our goal is to show that: 

1 + 2 +···+ n + (n + 1) = [n + 1]([n + 1] + 1)/ 2
i.e. 1 + 2 +···+ n + (n + 1) = (n + 1)(n + 2) /2 

Add n + 1 both sides to equation (i), we get, 

1 + 2 +···+ n + (n + 1) 
= n(n + 1)/ 2 +  (n + 1)
= n(n + 1) /2 + 2(n + 1) /2
= (n + 2)(n + 1) /2 
m+n = (2j)+(2k+1) = 2(j+k)+1 

Since j+k is an integer, we see that m+n is odd. 

Article Tags :