Find: $ \sum\limits_{k=1}^n \left(k^3 - (k-1)^3\right)$
I tried this problem using the definition of the sum but I always end up getting the wrong answer. Im trying not to use induction in this problem but straight logic to find out. Any help would be appreciated.
${\bf Hint.}$ This is telescoping. See your sum equals
$$ (1^3 - 0^3) + (2^3-1^3) + (3^3 - 2^3) + ... + ((n-1)^3 - (n-2)^3)+ (n^3 - (n-1)^3) = $$
In particular $\sum_{k=1}^n (a_k - a_{k-1}) = a_n - a_0 $. So, in your case, ans = $\boxed{ n^3}$