0

What software do you use and would recommend for solving recurrence relations?

For example mathematica has RSolve:

$ a(n+1)-2 a(n) = 1$ for $a(n)$:

RSolve[a[n + 1] - 2 a[n] == 1, a[n], n]
-> a(n) = c 2^(n-1)+2^n-1

Are there any good (preferably open) alternatives?

Eelvex
  • 1,414
  • As you say Mathematica has a built in function, but even though it's not open source, you can still program it, right? – Andy Feb 28 '11 at 12:46

1 Answers1

1

WolframAlpha does an okay job.