I want to ask about recursive problem.
Given: a0=11,a1=−13,
What is the general formula for an
I've already tried to find the first terms of this series. From there, I got:
a2=35,a3=−61,
From there, I think I need to use the rule from arithmetic and geometric series to find the general formula that I want to find.
But, I cannot find the certain pattern from this series, because the differences is always changing, such that -24, 48, -96, 192.
From there I think the general formula for a_n should be including (-1)ⁿ. But, how can we deal with series 24,48,96,192?
It seems the series is geometric, but how can we find the formula?
Thanks
Answer
Linear Recurrence Equations have typical solutions an=λn. Using this, we can compute the possible values of λ for this equation from
λn=−λn−1+2λn−2
which means, assuming λ≠0, that
λ2+λ−2=0
This is the characteristic polynomial for the recurrence
an=−an−2+2an−2
The characteristic polynomial is x2+x−2 which has roots 1 and −2. Thus, the sequence is an=b(1)n+c(−2)n. Plugging in the values for n=0 and n=1 gives
an=3+8(−2)n
No comments:
Post a Comment