Report

Help us improve this tool

Sum of Series Calculator

Calculate partial sums of arithmetic and geometric series, infinite geometric series convergence, and step-by-step formulas.

O M T

What Is a Series Sum?

A series is the sum of the terms of a sequence. This calculator handles arithmetic series (constant difference between terms) and geometric series (constant ratio between terms), including infinite geometric sums when they converge.

Arithmetic Series Partial Sum

For an arithmetic sequence with first term $a$, common difference $d$, and $n$ terms:

$$S_n = \frac{n}{2}\left[2a + d(n-1)\right] = \frac{n}{2}(a + a_n)$$

Geometric Series Partial Sum

For a geometric sequence with first term $a$, ratio $r$, and $n$ terms (when $r \neq 1$):

$$S_n = \frac{a(1 - r^n)}{1 - r}$$

Infinite Geometric Series

When $|r| < 1$, the infinite sum converges to:

$$S = \frac{a}{1 - r}$$

If $|r| \geq 1$, the series diverges and has no finite sum.

Related: Sum of Linear Number Sequence Calculator and Geometric Sequence Generator.

Frequently Asked Questions

What is the difference between a sequence and a series?

A sequence lists terms in order. A series adds those terms together. For example, 1, 2, 3 is a sequence; 1 + 2 + 3 = 6 is a series sum.

When does an infinite geometric series converge?

It converges when the absolute value of the common ratio is less than 1. Then the sum equals a divided by (1 minus r).

What is the sum of 1 + 1/2 + 1/4 + ...?

This is a geometric series with a = 1 and r = 1/2. Since |r| < 1, the infinite sum is 1 / (1 - 1/2) = 2.

How do I find the sum of the first N natural numbers?

Use the arithmetic formula with a = 1, d = 1, and n = N. The result is N(N + 1) / 2.