I'm stuck on trying to prove that
$ T(n)= T(n-2)+k$ is bounded by $O(n)$ for all $n >1$
I expanded it out to reach the following guess: $T(n) = ((n-2)/2)k $
though when I try to prove inductively, I get:
Base case : $T(2) = 0$
which is obviously incorrect. Any help would be greatly appreciated.