Tuesday, May 29, 2018

sequences and series - finding a1 in an arithmetic progression



Given an arithmetic progression such that: an+1=9n221n+10an



How can I find the value of a1?



I tried using an+1=a1+nd but I think it's a loop..



Thanks.


Answer




We have
a2=921+10a1a1a2=2


and
a3=3642+10a2a2a3=4



Since we have a1+a3=2a2, with (1)(2), we have
a1+4a2=2a2a1a2+4=2a22a2=±1.


Can you take it from here?


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...