Binomial Theorem, Recursion ,Tower of Honai, relations

39
STARTS WITH THE NAME OF ALLAH the most beneficent & Merciful

description

These slides contain proof of Binomial theorem , Tower of Honai , recursion a d properties of relation...

Transcript of Binomial Theorem, Recursion ,Tower of Honai, relations

Page 1: Binomial Theorem, Recursion ,Tower of Honai, relations

STARTS WITH THE NAME OF ALLAH

the most beneficent & Merciful

Page 2: Binomial Theorem, Recursion ,Tower of Honai, relations

PRESENTAION

AQEEL RAFIQUE 01

HAMZA MAQSOOD 12

REYAN IQBAL 28

UMAIR HAIDRI 17

SHOAIB ASHRAF 44

RAJA AMIR 43

PRESENTED BY :

GROUP MEMBERS :

Page 3: Binomial Theorem, Recursion ,Tower of Honai, relations

Binomial Theorem

Page 4: Binomial Theorem, Recursion ,Tower of Honai, relations

Binomial :In algebra (a+b) is called binomial. Binomial theorem provides an expression for the power of binomial of n.

Page 5: Binomial Theorem, Recursion ,Tower of Honai, relations

Binomial TheoremThe expansion of binomial theorem is.

an++bn

Page 6: Binomial Theorem, Recursion ,Tower of Honai, relations

Need of Binomial TheoremAs we know (a+b)0 =1 (a+b)1=(a+b)(a+b)2 =a2+2ab+b2

.

.(a+b)n=?

Binomial Theorem

Page 7: Binomial Theorem, Recursion ,Tower of Honai, relations

Binomial Theorem

= 1Let (1) is true for n=m

If true for n=m then also true for n=m+1

(1)Proof by Algebraic method

Page 8: Binomial Theorem, Recursion ,Tower of Honai, relations

Binomial TheoremR.H.S

=(a + b) =a .+b . =+

Replacing variables:Let j=k+1; k=j-1 when k=0, j=1

when k=m, j=m+1

Page 9: Binomial Theorem, Recursion ,Tower of Honai, relations

Binomial TheoremTaking second summation on the right hand side.

====

=am+1++bm+1

Page 10: Binomial Theorem, Recursion ,Tower of Honai, relations

Binomial Theorem by Pascal’s formula

Hence proved.This shows that if any number in the power of binomial is given we can easily find its expansion.

Page 11: Binomial Theorem, Recursion ,Tower of Honai, relations

Counting elements in one

dimensional array.

Page 12: Binomial Theorem, Recursion ,Tower of Honai, relations

Counting elements in one dimensional array.

Let A[1],A[2],A[3]……………….A[n] is a one dimensional array. Where n a positive integer.

To find the number of element in one dimensional array by using the theorem.

Page 13: Binomial Theorem, Recursion ,Tower of Honai, relations

Counting elements in one dimensional array.

We use theorem of find the no of elements in a list.i-e:- n-m+1

where n is the last term of the list and m is the first term of the list.

Page 14: Binomial Theorem, Recursion ,Tower of Honai, relations

Counting elements in one dimensional array.

Example:suppose the elements in 1 dimensional

array are;A[2]=2;A[3]=3;A[4]=5;...A[10]=7

Page 15: Binomial Theorem, Recursion ,Tower of Honai, relations

Counting elements in one dimensional array.

By Applying theorem we getApply theorem on index;

Where n=10, m=2;The number of elements in the given array are:

n-m+1=10-2+1=9

Elements = 9

Page 16: Binomial Theorem, Recursion ,Tower of Honai, relations

Recursion

Page 17: Binomial Theorem, Recursion ,Tower of Honai, relations

RecursionRecursively Defined Sequence

Method of defining a sequence: Informal ways Explicit formula Recursion

Page 18: Binomial Theorem, Recursion ,Tower of Honai, relations

Informal way: In informal ways a sequence is given

we extract or generate the pattern of the sequence and generate the next term. Disadvantages:

• Misunderstand of the sequence cause the error.

For example:if the sequence 3,5,7……. Is given

if some one guess it prime number place 9 if someone understand it prime number he put 11. so this cause the misunderstanding.

RecursionRecursively Defined Sequence

Page 19: Binomial Theorem, Recursion ,Tower of Honai, relations

Explicit formula: In explicit formula we make a formula

for the nth term of the sequence.For example: 2,4,6……….Explicit formula for above sequence is 2k, where k>0 Advantages:

• Each term is uniquely determine. Disadvantage:

• Difficult to make the explicit formula if such sequence is given which is difficult to analyze.

RecursionRecursively Defined Sequence

Page 20: Binomial Theorem, Recursion ,Tower of Honai, relations

Recursion:In recursion two equations are given.

• Recurrence relation:It is the formula to find the sequence.

• Initials conditions:it is the first few values of the sequence. It

is also called base or bottom of the recursion.

RecursionRecursively Defined Sequence

Page 21: Binomial Theorem, Recursion ,Tower of Honai, relations

For example:1) bk = bk-1+ bk-2 recurrence

relation

2)b0=1, b1=3 initial conditions

RecursionRecursively Defined Sequence

Every founded value is used to find the next term of the sequence

Page 22: Binomial Theorem, Recursion ,Tower of Honai, relations

For example:A sequence c0, c1, c2, . . . recursively as follows:

For all integers k ≥ 2,(1) ck = ck−1 + k.ck−2 + 1 recurrence

relation(2) c0 = 1 and c1 = 2 initial conditions.

Find c2,c3.

RecursionComputing Terms of a Recursively Defined Sequence

Page 23: Binomial Theorem, Recursion ,Tower of Honai, relations

Solution:Putting k=2 since c1 = 2 and c0 = 1

c2 = c1 + 2c0 + 1 = 2 + 2·1 + 1 =5similarly for c3 we put k=3 and solve.

RecursionComputing Terms of a Recursively Defined Sequence

Page 24: Binomial Theorem, Recursion ,Tower of Honai, relations

Let a1, a2, a3, . . . and b1, b2, b3, . . . satisfy the recurrence relation that the kth term equals 3 times the (k − 1) term for all integers k ≥ 2

(1)ak = 3ak−1 and bk = 3bk−1

And the initial conditions are:a1=3, b1=1

Find a2, a3 and b2 ,b3

RecursionSequences That Satisfy the Same Recurrence Relation

Page 25: Binomial Theorem, Recursion ,Tower of Honai, relations

RecursionSequences That Satisfy the Same Recurrence RelationSolution:

a2 = 3a1 = 3·3 = 9a3 = 3a2 = 3·9 = 27

So the ‘a’ sequence is 3,9,27…….

b2 = 3b1 = 3·1 = 3b3 = 3b2 = 3·3 = 9

So the ‘b’ sequence is 1,3,9,………

Page 26: Binomial Theorem, Recursion ,Tower of Honai, relations

Tower of Hanoi

The Tower of Hanoi (also called the Tower of Brahma or Lucas' Tower, and sometimes pluralized) is a mathematical game or puzzle. It consists of three rods, and a number of disks of different sizes which can slide onto any rod. The puzzle starts with the disks in a neat stack in ascending order of size on one rod, the smallest at the top, thus making a conical shape.

Page 27: Binomial Theorem, Recursion ,Tower of Honai, relations

nn-1

1

A B C

Tower of Hanoi

Page 28: Binomial Theorem, Recursion ,Tower of Honai, relations

The objective of the puzzle is to move the entire stack to another rod, obeying the following simple rules:

• Only one disk can be moved at a time.• Each move consists of taking the upper disk from

one of the stacks and placing it on top of another stack i.e. a disk can only be moved if it is the uppermost disk on a stack.

• No disk may be placed on top of a smaller disk.

ObjectiveTower of Hanoi

Page 29: Binomial Theorem, Recursion ,Tower of Honai, relations

Recursive pattern:From the moves necessary to transfer one, two, and three disks, we can find a recursive pattern - a pattern that uses information from one step to find the next step - for moving n disks from post A to post C:

First, transfer n-1 disks from post A to post B. The number of moves will be the same as those needed to transfer n-1 disks from post A to post C. Call this number M moves.

Next, transfer disk 1 to post C [1 move].

Finally, transfer the remaining n-1 disks from post B to post C. [Again, the number of moves will be the same as those needed to transfer n-1 disks from post A to post C, or M moves.]

No of moves : (n-1)+1+(n-1)

2(n-1)+1

Page 30: Binomial Theorem, Recursion ,Tower of Honai, relations

What?if we want to know how many moves it will take to transfer 100 disks from post A to post B.Ans: Through recursion we will first have to find the moves it takes to transfer 99 disks, 98 disks, and so on.So now we find the explicitly:Number of Disks Number of Moves 1 1 2 3 3 7 4 15 5 31 The pattern generated from this sequence is: 2n-1

Tower of Hanoi

Page 31: Binomial Theorem, Recursion ,Tower of Honai, relations

Tower of Hanoi

1,3,7,15…………….1+0=1 21-1=11+2=3 22-1=33+4=7 23-1=77+8=15 24-1=15. .. .. .So the minimum number of moves required to solve a Tower of Hanoi puzzle is 2n - 1, where n is the number of disks.

Page 32: Binomial Theorem, Recursion ,Tower of Honai, relations

Relations

Page 33: Binomial Theorem, Recursion ,Tower of Honai, relations

RelationsA relation R is a subset of the Cartesian product of the given set(s).

Given in order pair form (x , y).

x related to y, if and only if (x , y) is in R.

Denoted by x R y.

Page 34: Binomial Theorem, Recursion ,Tower of Honai, relations

RelationsProperties of Relations:

Reflexive Symmetric Transitive

Page 35: Binomial Theorem, Recursion ,Tower of Honai, relations

RelationsProperties of Relations:

Let R be a relation on set A Reflexive:

R is reflexive if and only if x R x for all x is in A.

Symmetric:R is symmetric if x R y then y R x ; x , y is in A

Transitive:R is transitive if x R y and y R x then x R z; x , y , z is in

A

Page 36: Binomial Theorem, Recursion ,Tower of Honai, relations

RelationsProperties of Relations:

Let A = {0, 1, 2, 3} and define relations R on A as follows:R = {(0, 0), (0, 1), (0, 3), (1, 0), (1, 1), (2, 2), (3, 0), (3, 3)},Is R reflexive, symmetric, transitive ?Solution:Graph of relation will be

Page 37: Binomial Theorem, Recursion ,Tower of Honai, relations

RelationsProperties of Relations:

Reflexive:R is reflexive because each element contain loop, mean each element is related to itselfSymmetric:R is symmetric because here an arrow move from one point to second and also from second to first, mean first related to second and also second related to first.Transitive:R is not transitive because there is no arrow moves from 3 to 1. so 1 R 0 and 0 R 3 but 1 R 3.

Page 38: Binomial Theorem, Recursion ,Tower of Honai, relations

Any Question?

Page 39: Binomial Theorem, Recursion ,Tower of Honai, relations

Thanks!