I am having trouble solving a proof. Where t(n) <= cn^1.6, c being a constant. In general, Big Omega is the opposite of Big O in that it is the best case scenerio and looks for the lower bound. So there exists a c and and n0 such that n >= n0. But I am uncertain how to apply this to the proof and how to manipulate the constants in the equation to find c and n0 and to prove that t(n) is Omega(n^1.6).
t(n) = (n-3logn)^1.6 + 5n^1.5 + 7 is Omega(n^1.6)
Could anyone offer some insight on how to do this type of problem? Thanks in advance!
Also so I dont get any criticism as was received from the comment below me, this is not a homework problem but an example taken from a set of exercises so that it is easier for someone to explain the general concept behind this type of problem.