As it says in the question name. I want to proof this big-o notation:
10n = O(n^2)
Is this way here the correct an proper way to do so?
n0 = 0
10n = O(n^2)
n = O(n^2)
for N n > 0
n + 1 ≤ (n+1)^2
n + 1 ≤ n^2 + 2n + 1
n ≤ n^2 + 2n
I feel not 100% comfortable with it. We are struggeling with this question now for a while. It's - of course - for university. ;)
Cheers and thx for your help!
Big hint: If $n>10$ then $n^2>10n$.