Say i have the following sequence:
Note: A(n) = A subscript n. So A1 -> A subscript 1
A1 = 1(1!)
A2 = 1(1!) + 2(2!)
A3 = 1(1!) + 2(2!) + 3(3!)
hence:
A4 = A3 + 4(4!)
hence:
A(n) = A(n-1) + n(n!)
I know how to solve recurrance relationships in first or secondorder, but i've never come across a relationship that involves factorials. Need help in finding a general solution to this recurrance relationship to find the answer to an arbitary N-th term.
i.e. i need an equaltion to find: A(n) without having to recurrsively calculate A(n-1), A(n-2), A(n-3) ... etc.
2007-03-02
01:28:38
·
2 answers
·
asked by
Anonymous
in
Science & Mathematics
➔ Mathematics
The prove my induction shows that it's the correct answer, but how did you come up with that answer in the first place?
Thx
2007-03-02
03:35:06 ·
update #1