I was reading CLRS book to understand solving recurrences using Substitution method and found following example:
Recurrence, T(n) = 2T(n/2) + n
Guess Solution, T(n) = O(nlgn)
Proof that T(n) ≤ cnlgn
My questions are:
Q1: why the solving equation changes their signs between inequality & equality sign ≤ , =
?
Q2: We know that in mathematical induction, inductive step is the next value,So if current value is n then next value should be (n+1).But Why they used n/2 as the next inductive step ?
Please help me to explain these question.It will rally help me to understand Substitution Method.Thanks