I somehow found a computing complexity of a program is of the following order:
$$O\left (\sum_{i=1}^n\sum_{j=1}^{i^2}\sum_{k=1}^{j^2}k\right)$$
So I want to resolve the complicated formula into something like a simple polynomial in terms of n.
As I am not from a math background, I wonder if there is any general / common method to resolve such kind of formula?
The general rule is that if $p(x)$ is a polynomial of degree $d$ then $\sum_{m=1}^{n} p(m)$ is a polynomial in $n$ of degree $d+1$.
So $f(j)=\sum_{k=1}^{j^2} k$ is a polynomial of degree $2$ in $j^2$, or a polynomial of degree $4$ in $j$, and $g(i)=\sum_{j=1}^{i^2} f(j)$ is a polynomial of degree $5$ in $i^2$, or a polynomial of degree $10$ in $i$. Finally, $\sum_{i=1}^{n} g(i)$ is a polynomial of degree $11$ in $n$. So you get that:
$$\sum_{i=1}^n\sum_{j=1}^{i^2}\sum_{k=1}^{j^2}k =O(n^{11})$$