Math calculators

Summation Calculator

Updated Jul 13, 2026 By Jehan Wadia
Rate Formulas
Configure Your Summation
Sigma Setup
=
Use the selected index variable. Supports + - * / ^ ( ), functions (sin, ln, sqrt, fact…) and constants pi, e.
Output Mode
Functions
Numbers & Operators
Live Sigma Preview
Summation Result
Total Sum
Step-by-Step Solution
Cumulative Sum Chart

Introduction

This summation calculator adds up a series of numbers using sigma notation. You pick a starting value, an ending value, and a math expression. The calculator then plugs in each number, solves the expression, and adds all the results together. It shows you the final sum, a step-by-step breakdown, and a chart of how the total grows.

Sigma notation is a short way to write long sums in math. Instead of writing out every single term, you use the Greek letter Σ (sigma) to say "add up all of these." For example, the sum of all whole numbers from 1 to 100 is written as Σ n, where n goes from 1 to 100. This tool does that work for you in seconds.

You can use basic operations like addition, subtraction, multiplication, division, and exponents. You can also use built-in functions like sin, cos, ln, sqrt, and factorial. Choose your index variable, set your limits, type your expression, and press Calculate. The calculator handles up to one million terms and gives results with up to 13 decimal places of precision.

How to Use Our Summation Calculator

Enter the parts of your sigma notation below and this calculator will add up all the terms for you. It gives you the total sum, a step-by-step solution, and a chart of the results.

Upper Limit: Type the number where the sum stops. This is the last value the index will reach.

Index Variable: Pick the letter you want to use in your expression. You can choose n, i, k, or j.

Lower Limit: Type the number where the sum starts. This is the first value the index will take.

Expression f(n): Type the formula that gets calculated at each step. You can use numbers, your index variable, operators like + − * / ^, and functions like sin, cos, sqrt, ln, and fact. You can also use the on-screen keypad to build your expression.

Decimal Precision: Choose how many decimal places you want in your answer, from 0 to 13.

Output Mode: Pick "Final Result Only" to see just the answer, or pick "Step-by-Step" to also see a table with every term and running total.

Click Calculate to get your result. Click Reset to clear everything and start over.

What Is Summation?

Summation is a math operation that adds up a list of numbers that follow a pattern. Instead of writing out every single number and adding them one by one, mathematicians use a shorthand symbol called sigma (Σ). This symbol tells you to add up a series of values from a starting point to an ending point.

How Sigma Notation Works

A summation has three main parts. The lower limit is the number where you start counting. The upper limit is the number where you stop. The expression is the rule that tells you what to do with each number before you add it. For example, if you sum n from 1 to 5, you get 1 + 2 + 3 + 4 + 5 = 15. If you sum from 1 to 5, you square each number first and then add: 1 + 4 + 9 + 16 + 25 = 55.

The Summation Formula

The general form of a summation is written as:

Σ f(n), where n goes from the lower limit to the upper limit.

The index variable n takes on every whole number value between the two limits. At each step, you plug n into the expression, calculate the result, and add it to a running total. The final total is the value of the summation.

Common Uses of Summation

Summation shows up in many areas of math and science. It is used to find the sum of arithmetic sequences, calculate areas under curves using integration in calculus, and work with series and sequences in algebra. Scientists use it in statistics to compute averages and standard deviations. Programmers use it in loops and algorithms. Any time you need to add up a long list of values that follow a rule, summation is the right tool.

Important Terms

  • Index variable – The letter (like n, i, or k) that counts through each step.
  • Lower limit – The first value the index takes.
  • Upper limit – The last value the index takes.
  • Term – The value you get after plugging the index into the expression at each step.
  • Running sum – The total so far as you add each term one at a time.

Tips for Working With Summations

If the lower limit is greater than the upper limit, the sum is 0 because there are no terms to add. This is called an empty sum. When you work with large ranges, the sum can grow very fast, especially with expressions like or . Understanding exponential growth helps illustrate how quickly these values can increase. Expressions like 1/n grow slowly and are tied to the famous harmonic series in calculus. You can explore the behavior of such series as they approach infinity using a limit calculator. Knowing how your expression behaves helps you predict whether the sum will be small, large, or infinite. For related calculations involving combinations or permutations, summation often plays a key role in those formulas as well.


Formulas used

Summation (Definition)
S = \sum_{n=a}^{b} f(n) = f(a) + f(a+1) + f(a+2) + \cdots + f(b)
Number of Terms
N = b - a + 1
Running (Cumulative) Sum
S_k = S_{k-1} + f(k), \quad S_{a-1} = 0
Empty Sum Convention
\sum_{n=a}^{b} f(n) = 0 \quad \text{if } b < a
Factorial (integer)
n! = \prod_{k=1}^{n} k
Factorial via Gamma (non-integer)
n! = \Gamma(n+1), \quad \Gamma(z) = \sqrt{2\pi}\; t^{\,z-\frac{1}{2}}\; e^{-t} \sum_{i=0}^{g+1} \frac{C_i}{z+i}, \quad t = z + g + \tfrac{1}{2}

Frequently asked questions

What is a summation calculator?

A summation calculator adds up a series of numbers using sigma (Σ) notation. You give it a starting value, an ending value, and a math expression. It plugs in each number, solves the expression, and adds all the results together to give you the total sum.

What functions can I use in the expression?

You can use sin, cos, tan, asin, acos, atan, sinh, cosh, tanh, ln (natural log), log (base 10 log), exp, sqrt, abs (absolute value), and fact (factorial). You can also use the constants pi and e.

How do I type exponents in the expression?

Use the ^ symbol. For example, type n^2 to square n, or n^3 to cube n. You can also press the x^y button on the keypad.

What happens if the lower limit is bigger than the upper limit?

The calculator returns 0. This is called an empty sum. There are no terms to add when the starting number is higher than the ending number.

How many terms can the calculator handle?

The calculator can handle up to 1,000,000 terms. If your range has more than one million terms, you will need to use a smaller range.

Why did I get an error that says division by zero?

Your expression tried to divide by zero at some index value. For example, if you use 1/(n-1) and your lower limit is 1, then at n = 1 the expression becomes 1/0, which is undefined. Change your lower limit or fix your expression to avoid this.

Can I use decimals for the upper or lower limit?

No. Both limits must be whole numbers (integers). The index variable counts through each integer from the lower limit to the upper limit, so decimals are not allowed.

What is the difference between Final Result and Step-by-Step mode?

Final Result Only shows you the total sum with a short explanation. Step-by-Step also shows a table listing every term, its value, and the running total at each step. Use Step-by-Step when you want to see how each term adds to the sum.

Does it matter which index variable I pick?

No. The letters n, i, k, and j all work the same way. Just make sure the variable in your expression matches the one you selected in the dropdown.

How do I type multiplication?

Use the * symbol or press the × button on the keypad. You can also skip it in some cases. For example, 2n and 2*n both mean 2 times n.

What does the chart show?

The chart shows two lines. The blue line is the cumulative sum, which tracks the running total as each term is added. The green line shows the value of each individual term. This helps you see how the sum grows over the range.

Why is my sum showing as infinity?

The sum grew too large for the calculator to handle. This happens with expressions that produce very big numbers over a wide range, like n^n or fact(n) with a high upper limit. Try using a smaller range.

Can I use negative numbers for the limits?

Yes. Both the lower and upper limits can be negative integers. For example, you can sum from -5 to 5. The index will count through -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5.

How do I enter a factorial in my expression?

Type fact(n) or press the fact button on the keypad. This gives you the factorial of n. For example, fact(5) = 120 because 5 × 4 × 3 × 2 × 1 = 120.

Why is the step-by-step table not showing all the terms?

The table shows up to 2,000 rows. If your range has more than 2,000 terms, the table is cut short, but the final sum still includes every term. A note will tell you how many terms are shown.

What does the Live Sigma Preview do?

The Live Sigma Preview shows your summation written in proper math notation as you type. It updates automatically when you change the limits, variable, or expression. This lets you check that your input looks correct before you calculate.

Can I sum a constant number instead of using the index variable?

Yes. If you type a number like 5 as the expression, the calculator adds that same number at every step. For example, summing 5 from n = 1 to n = 10 gives 5 × 10 = 50.

How do I calculate the sum of 1/n (harmonic series)?

Set the expression to 1/n, the lower limit to 1, and the upper limit to your chosen number. For example, with an upper limit of 10, the result is 1 + 1/2 + 1/3 + ... + 1/10 ≈ 2.9290.