I was given a recurrence relation of this series: $$a_{n+1} = k -a_n$$ $S_n$ is the sum of $n$ first terms of the series. So I was given that $$S_{101} = 353$$ $$S_{199} = 696$$ With this information I need to find $a_1$ and $k$.
I found that if $$a_{n+1} = k -a_n$$ Then \begin{align} \ a_{n+2} & = k - a_{n+1} \\ & = k - (k-a_n) \\ \end{align} So $$a_{n+2} = a_n$$
I thought that I could find sums by thinking that the series above is an arithmetic progression, $d = 0$ but it didn't help. Later, I thought that it would be a geometric series, the ratio being $r=1$.
The sum of geometric series would be: $$S_n = \frac{a_1(r^n-1)}{r-1}$$ Thus, $r$ can't be $1$.
Any help?
You have reached the conclusion that $a_n=a_{n+2}$.
Now all you have left is to solve the following system of two equations in two variables:
The solution is $a_1=3$ and $a_2=4$.
And then of course, $k=a_1+a_2=7$.