Yes, that's what a mathematical induction is. Now, I have approached this problem from a harder perspective - I am given a function. I have to find its complexity. In such case mathematical induction is completely useless. But I have obviously misread the problem, because it already gives us the answer, and simply wants to prove that it's true. In this case, we
can use mathematical induction. First note that we're dealing with Big-Theta, in which case the problem usually requires us to:
1. Pull a constant c1 out of our ass.
2. Pull a constant c2 out of our ass.
3. Pull a constant x out of our ass.
4. Prove that:

That's all. Now, because I have already found the closed formula for this function, there's no need to pull anything, simply use it to get the constants. They are:
c1 = 1/2
c2 = 2
x = 2
Now all you need to do is prove the two inequalities with the base case being n = 2.
This post has been edited by Neumann: 15 Sep, 2009 - 08:42 PM