I Expanded (n+1)^5: (n^5+5n^4+10n^3+10n^2+5n+1)/4n^2
simplified and ordered them to be:
n^3/4 + 5n^2/4 + 1/4n^2 + 10n/4 + 5/4n + 10/4
I found if i plug in 6 for testing it satisfies the two first:
- n^5/4n^2=216/4
- 5n^4/4n^2=180/4
but for the rest it isn't meeting the rules based on the big o complexity scale. also from 5n^4/4n^2 i don't know where to move from there, in terms of ordering them.
so this is correct as is: n^3/4 + 5n^2/4 + 1/4n^2 + 10n/4 + 5/4n + 10/4.
I then plug in 6 should i not plug in is and get:
216/4>>180/4>>1/44>>60/4>>5/24>>5/2.
then write this fn=O(n^3) for the answer and that's it?