Thanks bro. I was trying to relate it to merge sort. I was trying to visualize the recursion tree from root to the leaf node, but it was easy to apply the GP if visualized from leaf node to the root node, thereby making the maths like:
n + n/2 + n/4 ..... + 1
instead of:
1 + 2 + 4 + ...... + n (where the common difference is greater than 1 and is not converging.)
Read more… (78 words)