Is f(n) an Upper or Lower Bound of g(n)?

  • Thread starter Thread starter asd1249jf
  • Start date Start date
  • Tags Tags
    Bound Upper bound
asd1249jf

Homework Statement



1.
f(n) = n - 100
g(n) = n - 200

2.
f(n) = log(2n)
g(n) = log(3n)

n >= 0 in all cases
Find out if f(n) is an upperbound, lowerbound or both of g(n)

Homework Equations





The Attempt at a Solution



in case of 1, f(n) has to be an upperbound of g(n) because when graphed together, f(n) has to be an upperbound of g(n).

For 2, solution does not exist at n = 0. Otherwise, f(n) is a lower bound of g(n). Does this mean that f(n) is a lower bound or both?
 
Physics news on Phys.org
l46kok said:

Homework Statement



1.
f(n) = n - 100
g(n) = n - 200

2.
f(n) = log(2n)
g(n) = log(3n)

n >= 0 in all cases
Find out if f(n) is an upperbound, lowerbound or both of g(n)

Homework Equations





The Attempt at a Solution



in case of 1, f(n) has to be an upperbound of g(n) because when graphed together, f(n) has to be an upperbound of g(n).
Too vague. What you should say is "200> 100 so -100> -200 and n- 100> n- 200 for all n. Since f(n)> g(n) for all n, f is an upper bound of g."

For 2, solution does not exist at n = 0. Otherwise, f(n) is a lower bound of g(n). Does this mean that f(n) is a lower bound or both?
Is suspect that should not be "n\ge 0 for both cases" but only n> 0 for the second. As you point out, ln(0) is not defined so the problem makes no sense for n= 0.

ln(2)< ln(3) so ln(n)+ ln(2)< ln(n)+ ln(3) for all n> 0. ln(2n)< ln(3n) for all n> 0.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top