Mathwords logoReference LibraryMathwords

Arithmetic Series

Arithmetic Series

A series such as 3 + 7 + 11 + 15 + ··· + 99 or 10 + 20 + 30 + ··· + 1000 which has a constant difference between terms. The first term is a1, the common difference is d, and the number of terms is n. The sum of an arithmetic series is found by multiplying the number of terms times the average of the first and last terms.

 

Formula: Formula: Sum = n times the quantity (a₁ + aₙ) divided by 2   or    Formula: (n/2)[2a₁ + (n-1)d]
 

 

Example:

3 + 7 + 11 + 15 + ··· + 99 has a1 = 3 and d = 4. To find n, use the explicit formula for an arithmetic sequence.

We solve 3 + (n – 1)·4 = 99 to get n = 25.

Formula: Sum = 25 times (3 + 99) divided by 2, equals 1275

or  Formula: Sum = (25/2)[2·3 + (25−1)·4] = 1275, showing arithmetic series sum calculation with n=25, a1=3, d=4.

 

See also

Geometric series

Key Formula

Sn=n2(a1+an)or equivalentlySn=n2[2a1+(n1)d]S_n = \frac{n}{2}(a_1 + a_n) \qquad \text{or equivalently} \qquad S_n = \frac{n}{2}\bigl[2a_1 + (n-1)d\bigr]
Where:
  • SnS_n = The sum of the first n terms of the arithmetic series
  • nn = The number of terms being added
  • a1a_1 = The first term of the series
  • ana_n = The last (nth) term of the series
  • dd = The common difference between consecutive terms

Worked Example

Problem: Find the sum of the arithmetic series 3 + 7 + 11 + 15 + ··· + 99.
Step 1: Identify the first term and common difference.
a1=3,d=73=4a_1 = 3, \quad d = 7 - 3 = 4
Step 2: Find the number of terms n by using the explicit formula for the nth term: an=a1+(n1)da_n = a_1 + (n-1)d. Set an=99a_n = 99 and solve.
3+(n1)(4)=99    4(n1)=96    n1=24    n=253 + (n-1)(4) = 99 \implies 4(n-1) = 96 \implies n-1 = 24 \implies n = 25
Step 3: Apply the sum formula using the first and last terms.
S25=252(3+99)=252(102)=25×51S_{25} = \frac{25}{2}(3 + 99) = \frac{25}{2}(102) = 25 \times 51
Step 4: Compute the final result.
S25=1275S_{25} = 1275
Answer: The sum of the series 3 + 7 + 11 + 15 + ··· + 99 is 1,275.

Another Example

This example differs because the last term is not explicitly given. It demonstrates the second form of the formula, which uses d instead of the last term.

Problem: Find the sum of the first 50 terms of an arithmetic series whose first term is 6 and whose common difference is 3.
Step 1: Record what you know. Here n is given directly, so there is no need to solve for it.
a1=6,d=3,n=50a_1 = 6, \quad d = 3, \quad n = 50
Step 2: Since the last term is not given, use the alternative form of the sum formula.
Sn=n2[2a1+(n1)d]S_n = \frac{n}{2}\bigl[2a_1 + (n-1)d\bigr]
Step 3: Substitute the known values.
S50=502[2(6)+(501)(3)]=25[12+147]=25×159S_{50} = \frac{50}{2}\bigl[2(6) + (50-1)(3)\bigr] = 25\bigl[12 + 147\bigr] = 25 \times 159
Step 4: Compute the final result.
S50=3975S_{50} = 3975
Answer: The sum of the first 50 terms is 3,975.

Frequently Asked Questions

What is the difference between an arithmetic sequence and an arithmetic series?
An arithmetic sequence is a list of numbers with a constant difference between consecutive terms, such as 2, 5, 8, 11, …. An arithmetic series is the sum of those terms: 2 + 5 + 8 + 11 + …. In short, a sequence lists the terms while a series adds them up.
How do you find the number of terms in an arithmetic series?
Use the explicit formula for the nth term: an=a1+(n1)da_n = a_1 + (n-1)d. Plug in the last term for ana_n, the first term for a1a_1, and the common difference for dd, then solve for nn. For example, if the series runs from 5 to 95 with d=5d = 5, solving 5+(n1)(5)=955 + (n-1)(5) = 95 gives n=19n = 19.
Why does the arithmetic series formula work?
The formula works because of a pairing trick famously attributed to Gauss. If you write the series forwards and backwards and add them together, every pair sums to a1+ana_1 + a_n. Since there are nn such pairs spread across two copies of the series, the total of one copy is n2(a1+an)\frac{n}{2}(a_1 + a_n).

Arithmetic Series vs. Geometric Series

Arithmetic SeriesGeometric Series
Pattern between termsConstant difference d between consecutive termsConstant ratio r between consecutive terms
Sum formula (finite)Sn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n)Sn=a11rn1rS_n = a_1 \cdot \frac{1 - r^n}{1 - r}
Infinite sumDoes not converge (diverges to ±∞ unless all terms are 0)Converges to a11r\frac{a_1}{1-r} when r<1|r| < 1
Typical example2 + 5 + 8 + 11 + 143 + 6 + 12 + 24 + 48

Why It Matters

Arithmetic series appear throughout algebra and precalculus courses, and they form a foundation for understanding sigma notation and more advanced series in calculus. Practical applications include calculating total payments on a linearly increasing schedule, summing rows of a triangular arrangement, or finding the total distance traveled when speed changes by a fixed amount each interval. The classic story of young Gauss summing the integers from 1 to 100 is one of the most celebrated problems in all of mathematics — and it is simply an arithmetic series.

Common Mistakes

Mistake: Using the wrong value of n because of an off-by-one error when computing the number of terms.
Correction: Always solve a1+(n1)d=ana_1 + (n-1)d = a_n carefully. A common slip is writing (n)d(n)d instead of (n1)d(n-1)d. You can double-check by listing the first few terms and counting.
Mistake: Confusing the two forms of the formula and mixing up ana_n with dd.
Correction: Remember: Sn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n) requires the last term, while Sn=n2[2a1+(n1)d]S_n = \frac{n}{2}[2a_1 + (n-1)d] uses the common difference instead. Choose the form that matches the information you have.

Related Terms