Converegence Problem for forward and backward propogation

  • Thread starter Thread starter aashish.v
  • Start date Start date
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
5 replies · 2K views
aashish.v
Messages
13
Reaction score
0
The function is J(n-1)+J(n+1)=2nJ(n)

I need to prove that it diverges in forward direction but converges in backward direction.
I am unable to find any method, kindly suggest.
 
Physics news on Phys.org
Are you sure that you typed the function correctly?
 
Yes.

for forward direction we can re-write it this way..
J(n)=2*(n-1)*J(n-1)-J(n-2)

and for backward propagation...
J(n)=2*(n+1)*J(n+1)-J(n+2)
 
aashish.v said:
The function is J(n-1)+J(n+1)=2nJ(n)

I need to prove that it diverges in forward direction but converges in backward direction.
I am unable to find any method, kindly suggest.

You need to show your work.

RGV
 
Ray Vickson said:
You need to show your work.

RGV

The typical approach shown in text is to show that if the solution of such function truns out to be in form of
[itex]C.λ^n[/itex] then we can say that such recursive function diverges, I have tried the same approach for the problem but the λ I am getting turns out to be function of n.

I can scan and upload my work if you wish.