An arithmetic sequence is a sequence that starts with some term [tex]a_1[/tex], and the next term is generated by adding a constant [tex]d[/tex] to get the second term [tex]a_2[/tex]. Then the next term [tex]a_3[/tex] is generated by adding [tex]d[/tex] to [tex]a_2[/tex], and so on.
Here [tex]a_1=10[/tex] and [tex]d=-9[/tex]. So recursively, the sequence is defined by
[tex]\begin{cases}a_1=10\\a_n=a_{n-1}-9&\text{for }n>1\end{cases}[/tex]
[tex]S_n[/tex] is the sum of the first [tex]n[/tex] terms of the sequence. Before you can find this sum, an explicit formula for the [tex]n[/tex] would be useful. You have
[tex]a_n=a_{n-1}+d[/tex]
[tex]a_n=(a_{n-2}+d)+d=a_{n-2}+2d[/tex]
[tex]a_n=(a_{n-3}+d)+2d=a_{n-3}+3d[/tex]
and so on, up to
[tex]a_n=a_1+(n-1)d[/tex]
(Notice there's a pattern on the right hand side between the subscripted term and the coefficient of [tex]d[/tex]. They always add up to [tex]n[/tex].)
So the explicit formula for this sequence is
[tex]a_n=a_1+(n-1)d=10-9(n-1)=19-9n[/tex]
You're asked to find the sum of the first 15 terms, which means
[tex]S_{15}=\displaystyle\sum_{n=1}^9a_n=a_1+a_2+\cdots+a_{14}+a_{15}[/tex]
Now you could just find the first 9 terms and add them together, but that's more work than necessary. Instead, you have
[tex]S_9=\displaystyle\sum_{n=1}^{15}(19-9n)=19\sum_{n=1}^{15}1-9\sum_{n=1}^{15}n[/tex]
There are some well known formulas for the sums of powers:
[tex]\displaystyle\sum_{n=1}^N1=N[/tex]
[tex]\displaystyle\sum_{n=1}^Nn=\dfrac{N(N+1)}2[/tex]
So you get
[tex]S_{15}=19\displaystyle\sum_{n=1}^{15}1-9\sum_{n=1}^{15}n[/tex]
[tex]S_{15}=19\times15-9\dfrac{15(15+1)}2[/tex]
[tex]S_{15}=-795[/tex]
The answer is C.