Summation Calculator — Free Sigma Notation, Series Sum & Partial Sums 2026 | AllInOneTools
HomeMathSummation Calculator
Σ Free Calculator

Summation Calculator

Evaluate any finite sum with sigma notation. 8 series types, beautiful bar chart visualization, closed-form formulas, and step-by-step term-by-term breakdown.

Sigma Summation
Series Type
upper (n)
Σ
i
lower (start)
= 1 + 2 + 3 + … + 10
Formula f(i) — use i as variable
Supported: + − * / ^ ( ) sqrt() abs() sin() cos() log() pi e
Σ Sum
--
📊 Terms & Partial Sums
🔢 First Terms
📋 Properties
Total
--
Terms
--
Average
--
First
--
Last
--
Max
--
📝 Term-by-Term
Partial Sums Table
if(i)Sᵢ% of total
💡 Insight

Related Math Tools

Summation: The Complete Guide

What Is Summation?

Summation is the process of adding a sequence of numbers together, expressed with the Greek capital letter sigma (Σ). The notation Σᵢ₌ₘⁿ f(i) means "evaluate f(i) for each integer i from m to n, then add all the results." Summation is one of the most fundamental operations in mathematics — it connects arithmetic to calculus, underpins statistics (mean, variance), and powers algorithms in computer science.

Σᵢ₌₁ⁿ i = n(n+1)/2 — Gauss's formula
Σᵢ₌₁ⁿ i² = n(n+1)(2n+1)/6
Σᵢ₌₁ⁿ i³ = [n(n+1)/2]² = (Σ i)²
Σᵢ₌₀ⁿ rⁱ = (1−rⁿ⁺¹)/(1−r), r ≠ 1

Gauss's Formula: Sum of First n Numbers

Young Carl Friedrich Gauss astonished his teacher by instantly computing 1+2+3+…+100 = 5050. His insight: pair the first and last terms (1+100=101), second and second-to-last (2+99=101), forming 50 pairs of 101, totalling 5050. The general formula is Σᵢ₌₁ⁿ i = n(n+1)/2. This arithmetic series is the foundation for understanding all other power sums.

Example: Sum of 1 to 100
Σᵢ₌₁¹⁰⁰ i = 100 × 101 / 2 = 5,050. Average term = 50.5.

Sum of Squares and Cubes

The sum of squares Σᵢ₌₁ⁿ i² = n(n+1)(2n+1)/6 appears in statistics (variance), physics (moments of inertia), and algorithm analysis. The sum of cubes has the elegant identity Σᵢ₌₁ⁿ i³ = [n(n+1)/2]² — the sum of cubes equals the square of the sum of natural numbers. This is Nicomachus's theorem. For n=5: 1³+2³+3³+4³+5³ = 225 = 15² = (1+2+3+4+5)².

Geometric Series

A geometric series has a constant ratio r between consecutive terms: Σᵢ₌₀ⁿ arⁱ = a(1−rⁿ⁺¹)/(1−r). When |r| < 1 and n → ∞, the infinite sum converges to a/(1−r). Geometric series model compound interest, radioactive decay, fractal geometry, and digital signal processing. For example, 1 + 1/2 + 1/4 + 1/8 + … = 2.

Harmonic and Alternating Series

The harmonic series Σ 1/i = 1 + 1/2 + 1/3 + … diverges but extremely slowly: Hₙ ≈ ln(n) + γ, where γ ≈ 0.5772 is the Euler-Mascheroni constant. The alternating harmonic Σ(−1)ⁱ⁺¹/i = 1 − 1/2 + 1/3 − 1/4 + … converges to ln(2) ≈ 0.6931. Other famous alternating sums: Σ(−1)ⁱ/(2i+1) = π/4 (Leibniz formula).

Partial Sums and Convergence

A partial sum Sₙ is the sum of the first n terms. Plotting partial sums reveals convergence behavior: if Sₙ approaches a finite limit, the series converges; if Sₙ grows without bound, it diverges. The partial sum sequence is the bridge between finite sums and infinite series — it's how mathematicians make sense of adding infinitely many numbers.

Pro Tip
For custom mode, enter any expression using i. Examples: "i^2 + 3*i" (polynomial), "1/i^2" (Basel-like), "(-1)^i / (2*i+1)" (Leibniz), "2^i" (exponential), "sqrt(i)". Use parentheses for clarity.

Properties of Summation

Summation is linear: Σ(af+bg) = aΣf + bΣg. It's telescoping when consecutive terms cancel: Σ(f(i)−f(i−1)) = f(n)−f(0). Summation connects to integration via the Euler-Maclaurin formula, which bridges discrete sums with continuous integrals, giving highly accurate approximations for large sums.

Applications

Summation appears everywhere: Statistics (mean = Σxᵢ/n, variance = Σ(xᵢ−μ)²/n), Finance (present value of annuities, compound interest), Physics (work as Σ Fᵢ·Δxᵢ, electric potential), Computer science (algorithm analysis, Big-O via summation), and Signal processing (discrete Fourier transform). Understanding summation is a prerequisite for calculus, where integration replaces discrete sums with continuous ones.

How to Use This Calculator

Select a series type from the 8 options. Set the lower and upper bounds. For Geometric series, enter the first term (a) and ratio (r). For Power mode, enter the exponent p. For Custom, type any formula using i. Click "Calculate Sum" to see the total, sigma notation, bar chart (blue bars = terms, green line = partial sums), closed-form formula, and step-by-step breakdown.

Watch Out
The harmonic series diverges — it grows beyond any bound. Very large upper bounds (n > 10,000) may slow the calculator. For huge sums, use the closed-form formulas.

Frequently Asked Questions

What is summation (sigma notation)?
Σᵢ₌ₘⁿ f(i) means add f(m)+f(m+1)+…+f(n). Sigma (Σ) is the Greek capital S for "sum."
What is the sum of 1 to n?
Σᵢ₌₁ⁿ i = n(n+1)/2. For n=100: 5,050 (Gauss's formula).
What is the sum of squares formula?
Σ i² = n(n+1)(2n+1)/6. For n=10: 385.
What is the sum of cubes?
Σ i³ = [n(n+1)/2]². Equals the square of Σ i. Nicomachus's theorem.
What is a geometric series sum?
Σ arⁱ = a(1−rⁿ⁺¹)/(1−r). If |r|<1 and n→∞: a/(1−r).
What is a partial sum?
Sₖ = sum of first k terms. Plotting partial sums shows convergence behavior.
Does the harmonic series converge?
No — it diverges but extremely slowly. Hₙ ≈ ln(n) + 0.5772.
How do I enter a custom formula?
Use i as variable. Examples: i^2, 1/i, (-1)^i*i, 2^i, sqrt(i). Supports +,−,*,/,^,(),sqrt,abs,sin,cos,log,pi,e.