#Solution of recurrent fucntion
22 messages · Page 1 of 1 (latest)
Have you tried writing out the first dozen terms or so? If it's too complicated, try doing it for a specific value of r.
yeah, visually i can see that it is probably:
f(n) = a *(n-1+r)! / (n!r!)
but even then im not sure how to continue from there.
do i just say n-> oo, so f(n) ->a/r! ?
(n-1+r)/n does got to 0 as n->infinity, but the same is not true of their factorials
consider (n+1)!/n! = n+1
so as n-> infinity, that fraction goes to infinity
that doesnt appear anywhere tho, hmm
it's what you wrote
it is n-1+r tho, not n+1 :/
okay, so what if r=2?
oh wait i read it wrong.
ok so what happens to their factorials as n->oo?
the whole thing diverges?
no, it is part of an algorithm and the algorithm doesnt even really do anything useful if 0<r<1
what can you say about (n+x)!/n!, where x isnt an integer? does it have a closed form?