This is a problem from my homework. I am not quite sure about how to solve a problem like this.
If T(n) = nT(n - 1) and T(1) = 3, then
a) T(n) = O(n^n)
b) T(n) = Ω(n!)
c) T(n) = O(2^(nlogn))
d) none of the above
I dont need exact answer to this problem (since its homework), but I would like to know the way to tell the bound of a recursive function.