AdityaDev said:
Given series:1,2,5,12,25...
View attachment 80673
How did they get :##T_n=a(n-1)(n-2)(n-3)+b(n-1)(n-2)+c(n-1)+d##
And for series like 3,7,13,21,...
Based on the image, this should be 1, 3, 7, 13, 21, ...
AdityaDev said:
they have given ##T_n=an^2+bn+c##
How do you get these equations?
If the first consecutive differences happened to all be the same constant, the solution would have been a linear (first-degree) polynomial. If the second differences turned out to be a constant (as in the sequence 1, 3, 7, 13, 21, ...), the solution would be a quadratic (second-degree) polynomial, which you could write as T
n = a(n - 1)(n - 2) + b(n - 1) + c.
In your problem, which involves the sequence 1, 2, 5, 12, 25, 46, ... the third differences are all 2, so the solution will be a cubic (third-degree) polynomial, which they write as ##T_n = a(n - 1)(n - 2)(n - 3) + b(n - 1)(n - 2) + c(n - 1) + d##
What they do after this is to solve for the coefficients a, b, c, and d, noting that T
1 = 1, T
2 = 2, T
3 = 5, and T
4 = 12. IOW, T
n is just the n
th term in the sequence.
As an aside, 1, 3, 7, 13, 21, ... is a
sequence of numbers, not a series. In a series, all the numbers are added together to produce a sum.
I'm pretty rusty on this stuff, as it has been many years since I did anything with difference equations. Nevertheless, I was able to get the coefficients a, b, c, and d, and was able to get the correct value for T
5, so I think I'm on the right track.