Tagged Questions
2
votes
3answers
641 views
Solving recurrence relation using Mathematica
Good evening, experts
I want to solve recurrence equation using mathematica,
x(n) = x(n − 1) + n
for n > 0,
x(0) = 0
And i need to find x(1), x(2), x,(3)
This is my input and it gives ...
3
votes
2answers
434 views
Why doesn't Mathematica numerically evaluate this RecurrenceTable?
I'm trying to make a RecurrenceTable with conditionals in Mathematica, and the recursive stuff is working right, but it won't evaluate it completely.
In:= RecurrenceTable[{x[n] == If[Mod[n, 2] == 0, ...
7
votes
1answer
1k views
How to compute recursion relations in mathematica efficiently?
I have a recursion to solve for.
f(m,n)=Sum[f[m - 1, n - 1 - i] + f[m - 3, n - 5 - i], {i, 2, n - 2*m + 2}] + f[m - 1, n - 3] + f[m - 3, n - 7]
f(0,n)=1, f(1,n)=n
However, the following mma code ...