I am beginner with Mathematica and I am trying to find the limit of a recurrence series.
This is my series: u[n+1] = 1/2*(u[n] + a / u[n]) with u[0] > 0
After a few experimentation I tried this :
u[x_] := 1/2*(u[n - 1] + 9/u[n - 1]); u[0] = 10;
lim = SequenceLimit[N[Table[u[n], {n, 1, 100}], 50]
But nothing's happen! I try to understand better this function I found on the internet, but I can't find in the actual Wolfram Documentation. The result should be: sqrt(a) (3 in the case where a = 9)
Every help and advice for a beginner like me will be helpful.
u[n_] := .... Also, what isSequenceLimit? – bbgodfrey Apr 10 '17 at 21:54