Goldenwind
- 145
- 0
[SOLVED] Recurrence Relations
I need to express this recursive statement as a nonrecursive formula, using the technique of itteration.
a_n = (n+1)a_{n-1}
a_0 = 2
a_n = (n+1)a_{n-1}
a_n = (n+1)(n+1)a_{n-2} = (n+1)^{2}a_{n-2}
a_n = (n+1)(n+1)(n+1)a_{n-3} = (n+1)^{3}a_{n-3}
a_n = (n+1)^{n}a_{n-n}
a_n = 2(n+1)^{n}
I plugged both the recursive formula, and my answer, into MS-Excel, and they don't match up. They work for n = 0,1, but then my answer start getting larger than the recursive one.
Homework Statement
I need to express this recursive statement as a nonrecursive formula, using the technique of itteration.
a_n = (n+1)a_{n-1}
a_0 = 2
The Attempt at a Solution
a_n = (n+1)a_{n-1}
a_n = (n+1)(n+1)a_{n-2} = (n+1)^{2}a_{n-2}
a_n = (n+1)(n+1)(n+1)a_{n-3} = (n+1)^{3}a_{n-3}
a_n = (n+1)^{n}a_{n-n}
a_n = 2(n+1)^{n}
I plugged both the recursive formula, and my answer, into MS-Excel, and they don't match up. They work for n = 0,1, but then my answer start getting larger than the recursive one.