I want to know if this is a correct assertion.
e$^n$/n$^5$=O(1/n)
What I did was,
n <= 4 ln(n) whenever n>=3
e^n <= n^4
e^n <= n^5/n
e^n/n^5 <= 1/n
e^n/n^5 <= (1)(1/n)
Thus there exists c=1, and N=3 such that |e$^n$/n$^5$|<=c|1/n| whenever n>=N.Thus e$^n$/n$^5$=O(1/n)
Is this a correct approach?
In the definition given at our class it says that
Let {X$_n$} and {Y$_n$} be two different sequences.
If there are constants C and N such that |X$_n$|<=C{Y$_n$} whenever n>=N,then we say that X$_n$=O(Y$_n$)
I want to know of the constant C should be a positive constant or can it be any real number.And the N we select should it be an integer.And in the sequence {X$_n$} say {X$_n$}=n$^3$+n$^2$ are these n terms in sequence are natural numbers
n <= 4 ln(n) whenever n >= 3That statement isn't true at all. – Dennis Meng Nov 16 '13 at 08:26