Does $$2^{\log{n}} T(n / 2^{\log n}) = 2^{\log{n}} T(1)?$$ If so, how?
Also, I don't understand how the following equality works:
$$\sum_{i=0}^{\log(n) -1}{2^i} = 2^{\log n} - 1$$
I'm afraid I'm either missing some context or just algebraic properties. It seems like the latter equality is a property that I'm supposed to know or be given? Prof. Leighton performs this calculation in the first lecture (approx. 32:17) of the Mathematics for Computer Science course for OCW, when analyzing the Merge-Sort algorithm.
$$ \sum_{i=0}^n 2^{i} = 2^{n+1} - 1 $$
which can be proved using induction. It can also be viewed as the first $n+1$ terms of a geometric series:
$$ \sum_{i=0}^n x^i = \frac{x^{n+1} - 1}{x -1} \qquad (\text{ for } x \neq 1) $$
– JavaMan Feb 27 '13 at 04:08