recursion and proofs by induction
play

Recursion and Proofs by Induction CS1200, CSE IIT Madras Meghana - PowerPoint PPT Presentation

Recursion and Proofs by Induction CS1200, CSE IIT Madras Meghana Nasre March 20, 2020 CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction Recursion Familiar recursive functions Some important recursive functions


  1. Recursion and Proofs by Induction CS1200, CSE IIT Madras Meghana Nasre March 20, 2020 CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  2. Recursion • Familiar recursive functions • Some important recursive functions • Proving closed form solutions using induction Drawing Hands by M. C. Escher CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  3. Some familiar examples Factorial Function fact( n ) = 1 if n = 1 = n · fact( n − 1) otherwise CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  4. Some familiar examples Factorial Function fact( n ) = 1 if n = 1 = n · fact( n − 1) otherwise Fibonacci Sequence 0 , 1 , 1 , 2 , 3 , 5 , 8 , . . . f ( n ) = n if n = 0 or n = 1 = f ( n − 1) + f ( n − 2) otherwise CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  5. Some more examples of recursive functions gcd(a, b) : assume a ≥ b gcd( a , b ) = a if b = 0 = gcd( b , a mod b ) otherwise CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  6. Some more examples of recursive functions gcd(a, b) : assume a ≥ b gcd( a , b ) = a if b = 0 = gcd( b , a mod b ) otherwise � n i =0 i n � i = 0 if n = 0 i =0 n − 1 � = n + otherwise i i =0 CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  7. Proving bounds on recursive formulas using induction CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  8. An upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) < 2 n . CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  9. An upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) < 2 n . Base Case: n = 0 , n = 1 CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  10. An upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) < 2 n . Base Case: n = 0 , n = 1 verify Ind Hyp: Assume that the claim holds for i = 0 , . . . , k . CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  11. An upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) < 2 n . Base Case: n = 0 , n = 1 verify Ind Hyp: Assume that the claim holds for i = 0 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  12. An upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) < 2 n . Base Case: n = 0 , n = 1 verify Ind Hyp: Assume that the claim holds for i = 0 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) 2 n − 1 + 2 n − 2 < by strong induction CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  13. An upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) < 2 n . Base Case: n = 0 , n = 1 verify Ind Hyp: Assume that the claim holds for i = 0 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) 2 n − 1 + 2 n − 2 < by strong induction 2 n − 1 + 2 n − 1 = 2 · 2 n − 1 = 2 n . < CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  14. An upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) < 2 n . Base Case: n = 0 , n = 1 verify Ind Hyp: Assume that the claim holds for i = 0 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) 2 n − 1 + 2 n − 2 < by strong induction 2 n − 1 + 2 n − 1 = 2 · 2 n − 1 = 2 n . < Tighter Bounds • f ( n ) ≤ 2 n − 1 for all n ≥ 1 CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  15. An upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) < 2 n . Base Case: n = 0 , n = 1 verify Ind Hyp: Assume that the claim holds for i = 0 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) 2 n − 1 + 2 n − 2 < by strong induction 2 n − 1 + 2 n − 1 = 2 · 2 n − 1 = 2 n . < Tighter Bounds • f ( n ) ≤ 2 n − 1 for all n ≥ 1 √ • f ( n ) ≤ φ n − 1 for all n ≥ 1; φ = 1+ 5 ≈ 1 . 618 2 Does the same technique as above suffice to prove the second bound? CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  16. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  17. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Base Case: n = 2 , n = 3 f (2) = 1 ≤ φ 1 ≈ 1 . 618 f (3) = 2 ≤ φ 2 ≈ 2 . 618 Ind Hyp: Assume that the claim holds for i = 2 , . . . , k . CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  18. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Base Case: n = 2 , n = 3 f (2) = 1 ≤ φ 1 ≈ 1 . 618 f (3) = 2 ≤ φ 2 ≈ 2 . 618 Ind Hyp: Assume that the claim holds for i = 2 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  19. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Base Case: n = 2 , n = 3 f (2) = 1 ≤ φ 1 ≈ 1 . 618 f (3) = 2 ≤ φ 2 ≈ 2 . 618 Ind Hyp: Assume that the claim holds for i = 2 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) φ n − 1 + φ n − 2 by strong induction ≤ CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  20. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Base Case: n = 2 , n = 3 f (2) = 1 ≤ φ 1 ≈ 1 . 618 f (3) = 2 ≤ φ 2 ≈ 2 . 618 Ind Hyp: Assume that the claim holds for i = 2 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) φ n − 1 + φ n − 2 by strong induction ≤ 2 · φ n − 1 similar to above proof ≤ CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  21. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Base Case: n = 2 , n = 3 f (2) = 1 ≤ φ 1 ≈ 1 . 618 f (3) = 2 ≤ φ 2 ≈ 2 . 618 Ind Hyp: Assume that the claim holds for i = 2 , . . . , k . f ( n ) = f ( n − 1) + f ( n − 2) φ n − 1 + φ n − 2 by strong induction ≤ 2 · φ n − 1 similar to above proof ≤ !! However the above does not help to prove the claim. Hence we use some properties of φ . CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  22. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Ind Hyp: Assume that the claim holds for all values i = 2 , . . . k . f ( n ) = f ( n − 1) + f ( n − 2) φ n − 2 + φ n − 3 by strong induction ≤ CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  23. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Ind Hyp: Assume that the claim holds for all values i = 2 , . . . k . f ( n ) = f ( n − 1) + f ( n − 2) φ n − 2 + φ n − 3 by strong induction ≤ Note that φ (golden ratio) is a root of the equality x 2 − x − 1 = 0 Thus we have φ + 1 = φ 2 . CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  24. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Ind Hyp: Assume that the claim holds for all values i = 2 , . . . k . f ( n ) = f ( n − 1) + f ( n − 2) φ n − 2 + φ n − 3 by strong induction ≤ φ n − 3 ( φ + 1) = φ n − 3 · φ 2 = φ n − 1 ≤ Note that φ (golden ratio) is a root of the equality x 2 − x − 1 = 0 Thus we have φ + 1 = φ 2 . CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  25. Another upper bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≤ φ n − 1 for n ≥ 2. Ind Hyp: Assume that the claim holds for all values i = 2 , . . . k . f ( n ) = f ( n − 1) + f ( n − 2) φ n − 2 + φ n − 3 by strong induction ≤ φ n − 3 ( φ + 1) = φ n − 3 · φ 2 = φ n − 1 ≤ Hence proved! Note that φ (golden ratio) is a root of the equality x 2 − x − 1 = 0 Thus we have φ + 1 = φ 2 . CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  26. A lower bound on f ( n ) Claim: The n -th fibonacci number f ( n ) ≥ φ n − 2 for n ≥ 2. Ex: complete the proof. Ex: Read here about the Golden Ratio φ . CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  27. Recursively defined functions A recursively defined function for non-negative integers as its domain: • Basis step: Define the function for first k positive integers. • Recursive step: Define the function for i > k using function value at smaller integers. CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

  28. Recursively defined functions A recursively defined function for non-negative integers as its domain: • Basis step: Define the function for first k positive integers. • Recursive step: Define the function for i > k using function value at smaller integers. Recursive functions are well-defined . That is, value of the function at any integer is determined unambiguously. CS1200, CSE IIT Madras Meghana Nasre Recursion and Proofs by Induction

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend