Given an arithmetic sequence $\{a_n\}$ with $a_1 = 3$ and $a_5 = 11$, find the sum of the first 7 terms, $S_7$.

ArithmeticArithmetic SequencesSeriesSummation
2025/4/10

1. Problem Description

Given an arithmetic sequence {an}\{a_n\} with a1=3a_1 = 3 and a5=11a_5 = 11, find the sum of the first 7 terms, S7S_7.

2. Solution Steps

First, we need to find the common difference dd of the arithmetic sequence.
We know that an=a1+(n1)da_n = a_1 + (n-1)d.
Since a5=11a_5 = 11 and a1=3a_1 = 3, we have
a5=a1+(51)da_5 = a_1 + (5-1)d
11=3+4d11 = 3 + 4d
4d=1134d = 11 - 3
4d=84d = 8
d=84d = \frac{8}{4}
d=2d = 2
Now that we have a1=3a_1 = 3 and d=2d = 2, we can find a7a_7:
a7=a1+(71)d=a1+6d=3+6(2)=3+12=15a_7 = a_1 + (7-1)d = a_1 + 6d = 3 + 6(2) = 3 + 12 = 15
The sum of the first nn terms of an arithmetic sequence is given by the formula
Sn=n(a1+an)2S_n = \frac{n(a_1 + a_n)}{2}
So, the sum of the first 7 terms is
S7=7(a1+a7)2=7(3+15)2=7(18)2=7(9)=63S_7 = \frac{7(a_1 + a_7)}{2} = \frac{7(3 + 15)}{2} = \frac{7(18)}{2} = 7(9) = 63
Alternatively, we can use the formula Sn=n2[2a1+(n1)d]S_n = \frac{n}{2}[2a_1 + (n-1)d]. Then,
S7=72[2a1+(71)d]=72[2(3)+6(2)]=72[6+12]=72(18)=7(9)=63S_7 = \frac{7}{2}[2a_1 + (7-1)d] = \frac{7}{2}[2(3) + 6(2)] = \frac{7}{2}[6 + 12] = \frac{7}{2}(18) = 7(9) = 63

3. Final Answer

S7=63S_7 = 63