Show that the function $$ f(n) = \sum_{i=1}^n \sum_{j=1}^i \sum_{k=1}^j k $$ is $\Theta(n^4)$ by first showing that it is $O(n^4)$ and then by showing it is also $Ω(n^4)$.
So I know that:
$\sum_{i=1}^n i = \frac{n(n +1)}{2}$ which is $\Theta(n^2)$
To show that $f(n)$ is $O(n^4)$, I need to use the format $f(n) \le c n^4$, where $c > 0$, when $n \ge n_0$.
To show that $f(n)$ is $\Omega(n^4)$, I need to use the format $f(n) \ge c n^4$, where $c > 0$, when $n \ge n_0$.
Now, I am unsure what to do with the sigmas. I have literally been researching on how to do this problem for 2 days. I am dead and lost. GIVE ME YOUR KNOWLEDGE! Please help!