Tuesday 26 March 2013

TASK 4



PRINCIPLE OF MATHEMATICAL INDUCTION:
To prove that P(n) is true for all positive integers n, where P(n) is a propositional function by 2 steps:

Basis      : We show that P(1) is true to show that an initial value/lowest value of n is true for all Z+ of the propositional function.
Inductive : We show that the statement P(n+1) is true for all Z+ of n if P (n) is true.

Similarly, we can say that mathematical induction is a method for proving a property defined that the property for integer n is true for all values of n that are greater than or equal to some initial integer.
                   P (1) ^∀k (P (k) → P (k+1))) → ∀ n P (n)

METHOD OF PROOF:
The proofs of the basis and inductive steps shown in the example illustrate 2 different ways to show an equation is true
-         -- Transforming LHS and RHS independently until they seem to be equal.
-         - Transforming one side of equation until it is seen to be the same as the other side of the equation.

What is the inductive hypothesis  in a proof (ordinary) mathematical induction ?

The simplest and most common form of mathematical induction proves that a statement involving a natural number n holds for all values of n. The proof consists of two steps:
1.    The basis (base case): showing that the statement holds when n is equal to the lowest value that n is given in the question. Usually, n = 0 or n = 1.
2.    The inductive step: showing that, with respect to each n for which the statement holds, then the statement must also hold when n + 1 is substituted for n.
The assumption in the inductive step that the statement holds for some n is called the induction hypothesis (or inductive hypothesis). To perform the inductive step, one assumes the induction hypothesis and then uses this assumption to prove the statement for n + 1.
The choice between n = 0 and n = 1 in the base case is specific to the context of the proof: If 0 is considered a natural number, as is common in the fields of combinatory and mathematical logic, then n = 0. If, on the other hand, 1 is taken as the first natural number, then the base case is given by n = 1.
This method works by first proving the statement is true for a starting value, and then proving that the process used to go from one value to the next is valid. If these are both proven, then any value can be obtained by performing the process repeatedly. It may be helpful to think of the domino effect; if one is presented with a long row of dominoes standing on end, one can be sure that:
1.    The first domino will fall
2.    Whenever a domino falls, its next neighbor will also fall,
So it is concluded that all of the dominoes will fall, and that this fact is inevitable.

EXAMPLE


QUESTION 1.PROVING A FORMULA:
This time we will use arithmetic progression as our example.
an = a + (n – 1)d

where
d = common difference, in this case we put d = 3

           a= first term of progression, in this case we put a = 5
           n = number of terms
           and n>0.

To form basis step, we prove that P (1) is true.
for an = a + (n – 1)d
a1 = a + (1 – 1)d
a1 = 5 + ( 0 )
    = 5 m
Now, for inductive step we need to prove that an+1 = a + (n+1 – 1)d.
And thus,
a2 = a + (1 + 1 – 1) 3
    = 8
and
a3 = a + (2 + 1 – 1) 3
     = 11
Since we proved that the basis step, P(1) and the inductive step P (n+1) is true we can conclude that the formula is true for n>0.



QUESTION 2.
PROVING A DIVISIBILITY PROPERTY:
Using mathematical induction, prove that for any value of n1, 9n _ 4n  is divisible by 5.

Solution:
Let P (n) = 9n _ 4n is divisible by 5, for value of n1.
Basis      : Proof that P (1) is valid for the statement

P (1) = 9n _ 4n 
    = 9 - 4
    = 5 (which is divisible by 5)
Hence, the statement is true.

Inductive: We proof that if P (n) is true, then P (n+1) is true for integer k1,

Inductive Hypothesis
P (n) = 9n _ 4n   / 5 = m
         = 9n _ 4n = 5 m
(In this case m is an integer)

P (n+1) = 9 n+1 -   4 n+1 
                = 9. 9n - 4. 4n 
                = 5. 9n + 4. 9n  - 4.4n
                        = 5. 9n + 4 ( 9n _ 4n  )
                = 5. 9n + 4 (5 m)
                = 5. 9n + 5 (4 m)
                = 5 ( 9n + 4m)
So, since ( 9n + 4m) is an integer valid for n and m is an integer we can conclude that the statement is true by proving P (n) = 1 is true and P (n+1) is also true.

QUESTION 3.
PROVING INEQUALITIES Mathematical induction can be used to prove a variety of inequalities that hold for all positive integers greater than a particular positive integer.


Example: Prove 5n+5 <= n2 for all positive integers n>=6.
                Proof = Let P(n) be the statement  5n+5 <=n2
                Basis step : n=6, Since 5n+5= 5(6)+5 <= 62 = n2 , 35 <= 36
            Inductive step : Assume P(n) : 5n+5<= n2, for some integer n>=6. 

Use the induction hypothesis to prove 5(n+1) +5 <=(n+1)2.
                First rewrite 5(n+1)+5 so that it uses 5n+5 =
                5(n+1)+5=(5n+5)+5

   By induction hypothesis we know:
                (5n+5)+5 <=n2+5
   Now we need to show
                n2+5 <=(n+1)2= n2 +2n + 1
    to see this we note that when n>=2,
                2n+1 >= 2(2)+1 = 5
    (and so this is also valid for n >=6)
Thus, when n>=6,
                5(n+1)+5 = (5n+5)+5
                (5n+5)+5 <= n2+5
                n2+5 <= n2+2n+1
                n2 +2n +1 =(n+1)2
which shows 5(n+1) +5 <= (n+1)2 . By the principal of mathematical induction it follows that 5n+5<=n2 for all integers n >=6 .



No comments:

Post a Comment