in Algorithms edited by
697 views
0 votes
0 votes

Consider the following function $f(x)$ = $x^8$+6$x^7$-9$x^5$-$x^4$+2$x^2$-18. Which of the following is true if x is greater than 56?

  1. $f(x)$ = O($x^8$)
  2. $f(x)$ = Ω($x^8$)
  3. $f(x)$ = θ($x^8$)
  4. $f(x)$ = None of the above.
in Algorithms edited by
697 views

4 Comments

ok i agree with you $C$ is more appropriate
1
1
A) will be answer

because it can be 57 as lower bound and upperbound $n^{8}$
0
0

@goxul Please explain me your approach. How C is more appropriate.

0
0

1 Answer

1 vote
1 vote
C is correct because we can find two constants $c_1$ and $c_2$ such that: $c_1 x^8 \leq f(x) \leq c_2 x^8$.

For the LHS to be true, put $c_1 = 1$, RHS will be true for a large value of $c_2$.

Thus we can say that $f(x) \in \Omega(x^8)$
by