Add up to 20 numbers instantly and get the total sum, count, average, minimum, and maximum in one click. Paste a comma-separated list or enter numbers individually. Supports decimals and negatives.
✓Standard arithmetic — verified correct — April 2026
Total Sum
—
Was this calculator helpful?
✓ Thanks for your feedback!
Sources & Methodology
✓Standard arithmetic summation — verified against Khan Academy and NCTM mathematics curriculum standards.
Mathematics curriculum standards for arithmetic operations and data summary statistics
Methodology: Sum = n1 + n2 + … + nk for all valid numeric inputs. Average = Sum ÷ Count. Min and Max are the smallest and largest values in the set. All computations use JavaScript floating-point arithmetic (IEEE 754 double precision). Results are rounded to 10 decimal places to avoid display artifacts.
⏱ Last reviewed: April 2026
How to Calculate the Sum of Numbers
The sum is the result of adding two or more numbers together. It is one of the most fundamental operations in mathematics, forming the basis for more complex operations including multiplication, statistics, calculus, and computer science. Whether you're totalling a budget, adding test scores, or computing statistics, the sum is always the starting point.
Sum Formulas
Sum = n₁ + n₂ + n₃ + … + nₖ
Add all numbers in the set together. Example: 4 + 7 + 2 + 9 + 3 = 25
Sum of 1 to n = n × (n + 1) ÷ 2
Gauss's formula for consecutive integers. Example: Sum of 1 to 100 = 100 × 101 ÷ 2 = 5,050
Sum of arithmetic sequence = (n ÷ 2) × (first + last)
Once you have the sum, several other statistics follow naturally. The arithmetic mean (average) is the sum divided by the count of values. The range is the maximum minus the minimum. Together these five values — sum, count, average, minimum, maximum — provide a quick statistical snapshot of any dataset, which is why this calculator displays all of them at once.
Statistic
Formula
Example (3, 7, 5, 9, 1)
Sum
All values added together
25
Count
Number of values
5
Average
Sum ÷ Count
5.00
Minimum
Smallest value
1
Maximum
Largest value
9
Range
Max − Min
8
Summing Negative Numbers
Negative numbers reduce the sum. When adding a mix of positive and negative values, the sum equals the total of the positives minus the total of the absolutes of the negatives. For example: 10 + (-3) + 5 + (-2) = 10 + 5 - 3 - 2 = 10. This calculator handles negative numbers automatically — just enter them with a minus sign.
Summing Decimals
Decimal sums are handled by aligning the decimal points and adding place by place. For example: 3.25 + 1.7 + 0.05 = 5.00. The key rule is that each decimal position (tenths, hundredths, thousandths) is summed independently with carrying to the next position. This calculator shows results up to the precision of your inputs.
Applications of Summation
Finance: Totalling expenses, revenue, or loan payments across periods
Statistics: Sum is the first step for mean, variance, and standard deviation
Education: Adding test scores, grade points, or marks across subjects
Science: Accumulating measurements, data points, or experimental readings
Programming: Implementing loops, array reductions, and cumulative operations
💡 Excel & Sheets Tip: In spreadsheets, use =SUM(A1:A20) to add a range of cells. The SUM function ignores text and blank cells automatically. You can also use =SUM(A1,B3,C5) to add specific non-contiguous cells.
Frequently Asked Questions
The sum formula is: Sum = n1 + n2 + n3 + ... + nk, where n1 through nk are all the numbers you want to add. In sigma notation this is written as the Greek capital sigma with limits. The result is the total of all values combined. For consecutive integers from 1 to n, the shortcut is n × (n+1) ÷ 2.
Add all values in the list together sequentially. For example, to find the sum of 3, 7, 12, and 5: start with 3+7=10, then 10+12=22, then 22+5=27. The sum is 27. This calculator lets you enter up to 20 numbers individually or paste a comma-separated list for instant totalling.
The sum is the total of all numbers added together. The average (arithmetic mean) is the sum divided by the count of numbers. For example, 4, 8, and 12 have a sum of 24 and an average of 24 ÷ 3 = 8. Sum gives the combined total while average gives the typical value per item.
Yes. A sum is negative when the negative values in the list outweigh the positive ones. For example, -10 + 3 + 4 = -3. This calculator fully supports negative numbers. Just enter them with a minus sign in front, such as -7.5 or -100.
Sigma notation uses the Greek capital letter Σ (sigma) to compactly represent a series of additions. It shows the starting index below the sigma, the ending index above, and the expression to sum to the right. For example, the sum of i from i=1 to 5 means 1+2+3+4+5 = 15. It's a shorthand for long addition sequences used in calculus and statistics.
The sum of consecutive integers from 1 to n equals n × (n+1) ÷ 2. This was famously discovered by Carl Friedrich Gauss as a child. For the sum from 1 to 100: 100 × 101 ÷ 2 = 5,050. For integers from a to b: (b−a+1) × (a+b) ÷ 2.
The sum of an arithmetic sequence is S = (n ÷ 2) × (first term + last term), where n is the number of terms. Example: sum of 2, 5, 8, 11, 14 — five terms, first=2, last=14 — equals (5÷2) × (2+14) = 2.5 × 16 = 40. You can verify: 2+5+8+11+14 = 40.
In mathematics, sum and total are synonymous — both mean the result of adding all numbers together. In everyday language, "total" is sometimes used more broadly (total count, total quantity), while "sum" specifically refers to the result of addition. In this calculator, sum and total refer to the same value.
To add decimals manually, align the decimal points and add from right to left, carrying as needed. For example: 3.75 + 1.4 + 2.125 — align the decimals, then add thousandths (5), hundredths (7+2=9, 4+1=5), tenths, and so on. This calculator handles decimal addition automatically and displays the result precisely.
The sum of the first n odd numbers equals n squared. The first 4 odd numbers (1, 3, 5, 7) sum to 16 = 4². The first 10 odd numbers sum to 100 = 10². This pattern connects addition directly to multiplication and is useful in algebra and number theory.
Sum is the foundation of most statistics. The mean equals sum ÷ count. Variance uses the sum of squared deviations from the mean. Standard deviation is the square root of variance. Covariance uses sums of cross-products. Virtually every statistical measure begins with some form of summation, making it the most essential arithmetic operation in data analysis.
A running total (cumulative sum) is a sequence of partial sums. Each value equals the sum of all previous values plus the current one. For the list 5, 3, 8, 2, the running totals are 5, 8, 16, 18. Running totals are used in accounting ledgers, inventory tracking, race timing, and any scenario where you want to track accumulated progress.
Yes. This calculator works with any practical number size including very large integers, small decimals, and negatives. JavaScript numbers support values up to approximately 9 quadrillion with full integer precision. For everyday financial and academic calculations, precision is effectively unlimited within the display.
The sum of all integers from 1 to 100 is 5,050. Using Gauss's formula: 100 × 101 ÷ 2 = 5,050. Gauss discovered this at age 9 by pairing numbers: 1+100=101, 2+99=101, ..., 50+51=101, giving 50 pairs each summing to 101, so 50 × 101 = 5,050.