Guest User

Untitled

a guest
Dec 15th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. (n^2 + 1)/(n + 1) <= 1*n definition of Big-Oh with c = 1
  2. n^2 + 1 <= n^2 + n multiplying both sides by n + 1
  3. 1 <= n subtracting n^2 from both sides
  4. n >= 1 rearranging
Add Comment
Please, Sign In to add comment