Find the big−O, big−Ω estimate for x7y3+x5y5+x3y7. [Hint: Big-O, big- Ω, and big-Θ notation can be extended to functions in more than one variable. For example, the statement f(x, y) is O(g(x, y)) means that there exist constants C, k1, and k2 such that |f(x, y)| ≤ C|g(x, y)| whenever x > k1 and y > k2.]
The Answer to the Question
is below this banner.
Can't find a solution anywhere?
NEED A FAST ANSWER TO ANY QUESTION OR ASSIGNMENT?
Get the Answers Now!You will get a detailed answer to your question or assignment in the shortest time possible.
Here's the Solution to this Question
big−O:
f(x, y) ≤ Cg(x, y)
f(x, y)=x7y3+x5y5+x3y7 ≤ 3g(x, y)=3x7y7
g(x, y)=3x7y7 , C=2 for
big−Ω:
Cg(x, y)≤f(x, y)
3g(x, y)=3x3y3 ≤ f(x, y)=x7y3+x5y5+x3y7
g(x, y)=x3y3 , C=3 for