Arithmetic Series Calculator
Calculate the sum, nth term, common difference, and number of terms of any arithmetic series. Shows full sequence, mean, and step-by-step breakdown.
About
An arithmetic series is the summation of terms in an arithmetic progression where each consecutive term differs by a fixed value d, the common difference. Miscalculating even one parameter propagates errors through every dependent result - partial sums, term indices, convergence checks in numerical methods. This calculator solves all four core unknowns: the n-th term an, the partial sum Sn, the number of terms n, and the common difference d. It applies the closed-form Gauss formula Sn = n2 โ (a1 + an) rather than iterative addition, so results are exact regardless of series length.
The tool assumes a finite, non-degenerate progression (n โฅ 1). For d = 0 the series reduces to n โ a1. Negative values for d produce decreasing sequences. When solving for n, only positive integer solutions are accepted; non-integer results indicate the given parameters do not form a valid arithmetic series. Pro tip: in financial amortization schedules and depreciation tables, arithmetic progressions appear constantly. Verify your inputs against the source ledger before relying on computed sums.
Formulas
The primary formula for the n-th term of an arithmetic progression with first term a1 and common difference d:
The partial sum of the first n terms uses the Gauss closed-form:
Equivalently, when the last term an is known:
Solving for the common difference when a1, an, and n are known:
Solving for n when a1, d, and an are known:
Where: a1 = first term, d = common difference, n = number of terms, an = last (n-th) term, Sn = sum of the first n terms.
Reference Data
| Property | Formula / Value | Notes |
|---|---|---|
| General term | an = a1 + (n โ 1)d | Explicit (closed-form) definition |
| Partial sum (form 1) | Sn = n2(2a1 + (n โ 1)d) | When an is unknown |
| Partial sum (form 2) | Sn = n2(a1 + an) | Gauss's formula; when last term known |
| Arithmetic mean | Snn = a1 + an2 | Always equals midpoint of first and last term |
| Common difference | d = an โ anโ1 | Constant for all consecutive pairs |
| Number of terms | n = an โ a1d + 1 | Must yield a positive integer |
| Sum of first n naturals | n(n + 1)2 | a1 = 1, d = 1 |
| Sum of first n odd numbers | n2 | a1 = 1, d = 2 |
| Sum of first n even numbers | n(n + 1) | a1 = 2, d = 2 |
| Monotonicity | Increasing if d > 0; Decreasing if d < 0 | Constant if d = 0 |
| Recursive form | an = anโ1 + d | Inductive definition |
| Finite vs infinite | Finite AP has a well-defined sum; infinite AP diverges unless d = 0 | No convergence for d โ 0 |
| Relation to quadratic | Sn is a quadratic function of n | Parabolic growth in n |
| Middle term (odd n) | a(n+1)/2 = a1 + an2 | Equals the arithmetic mean |
| AP test | 2b = a + c | Three terms a, b, c are in AP iff this holds |
| Gauss anecdote | 1 + 2 + โฆ + 100 = 5050 | Classic example; n = 100, d = 1 |