I am having trouble understanding how to solve a recurrence relation. If you can please help walk me through this one:
$T(n) = T(\dfrac{n}{2}) + 5$
Initial conditions $T(0) = 0$ and $T(1) = 1$
My teacher did not explain this very clearly and I'm very confused on where to begin..if someone can please point me in the right direction, don't necessarily need to solve.
From looking at the internet, I believe this relation is non-homogenous because of the $5$, so would the first step be to solve the homogenous equation and then add the $5$?