Theorem: Let an=an−1+1,a1=1. For any n, in order to compute an, it is necessary to compute ai for each i=1,…,n−1, which takes Θ(n) time.
Proof: This is vacuously true for n=1. Assume true for n=k−1. Prove true for n=k. In order to compute ak−1+1, it is necessary to compute ak−1. Then since ak=ak−1+1, in order to compute ak, it is necessary to compute ak−1. By the induction hypothesis, in order to compute ak−1, it is necessary to compute ai for each i=1,…,k−2. Hence, in order to compute ak, it is necessary to compute ai for each i=1…,k−1. QED
What is wrong with this proof? It seems valid to me, even though the theorem is false.
Answer
In your induction step, you made the additional assumption (beyond the inductive hypothesis) that it was necessary to compute ak−1 in order to compute ak. That's hardly the case, as simple inspection of the recursive definition gives us the closed-form definition an:=n for all n.
No comments:
Post a Comment