I'm studying an example (in Introduction to Algorithms) of using the substitution method to guess and then prove an upper bound on a recurrence.
I've almost fully understood the example given on pages 63-64 of the second edition (available to view at the link above). However, there is one thing I don't yet understand.
On page 64, near the end of the example, the authors argue as follows: 'Observe that for $n > 3$, the recurrence does not depend directly on $T(1)$. Thus we can replace $T(1)$ by $T(2)$ and $T(3)$ as the base cases in the inductive proof'.
Why does the fact that the recurrence doesn't depend directly on $T(1)$ for $n>3$ mean that this replacement can be made? (I think that the answer to this might involve a subtle concept/feature about/of the base case(s) of an inductive proof, but I'm not sure.)
I found this Mathematics post, the first answer of which made me feel as though I had a slightly clearer picture of why such a replacement is valid, but I'm not fully there just yet!