How to solve a recursion relation with a constant using hints?

  • Context: Graduate 
  • Thread starter Thread starter spaghetti3451
  • Start date Start date
  • Tags Tags
    Recursion Relation
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
spaghetti3451
Messages
1,311
Reaction score
31
I have the recursion relation ##y_{k}=k(2j-k+1)y_{k-1}##

and I would like to solve it to obtain ##y_{k}=\frac{k!(2j)!}{(2j-k)!}##.

Can you provide some hints on how I might proceed?

P.S.: ##j## is a constant.
 
Mathematics news on Phys.org
## \frac{y_k}{y_1} = \prod_{i = 2}^k \frac{y_i}{y_{i-1}} ##
 
I forgot to mention that ##y_{0}=1##.

All right, then, we have

##\frac{y_k}{y_0} = \prod_{i = 1}^k \frac{y_i}{y_{i-1}}##

##y_k = \prod_{i=1}^{k} i(2j-i+1)##

##y_k = \bigg(\prod_{i=1}^{k} i\bigg) \bigg(\prod_{i=1}^{k} (2j-i+1)\bigg)##

##y_k = (k!) \bigg(\prod_{i=1}^{k} (2j-(i-1))\bigg)##

##y_k = (k!) \frac{(2j)!}{(2j-k)!}##

Thanks!