How can I solve the following recursive relation:
t(n)=(n-1)*t(n-1)
where the base case is
t(1)=1
Is it okay just saying that:
t(2)=1!
t(3)=(3-1)t(2)=2!
t(4)=(4-1)t(3)=3!
t(5)=4!
and so on...t(n)=(n-1)!
and after prove this by induction? Any ideas?
Well, you have observed something correct, that $t(n)=(n-1)!$. It's not a proof yet though and making a table doesn't really make progress towards a proof, beyond being able to have a reasonable hypothesis to prove.
All you need to note is that $$t(1)=0!$$ and then it's clear that if $t(n)=(n-1)!$ then $t(n+1)=n!$, since $t(n+1)=n\cdot t(n)$ which would be $n\cdot (n-1)!=n!$.