Can you help me to find Omega, Theta, and Big O notations for the following equation?
$T(n)=\left(\frac{n+3}{n}\right)^n$
I have tried this, but I'm unsure if I'm moving in the right direction to solve it.
For Big-O notation..
$$0\leq T(n)\leq c \cdot g(n)$$
$$0\leq \left(\frac{n+3}{n}\right)^n \leq n^n$$
$$O(n^n) \forall n \geq 3$$
For $\Omega$ Notation..
$$0 \leq c\cdot g(n) \leq T(n) $$
$$ 0 \leq n^n \leq \left(\frac{n+3}{n}\right)^n$$
$$\Omega(n^n) \forall 0 < n < 3$$
Is it right? Help me with this.