Six results from one list of numbers
Type a comma-separated list of numbers and press Calculate. The tool returns sum, product, arithmetic mean, minimum, maximum and count in a single pass. No setup, no sign-in, results in under a second. Accepts integers, decimals and negative numbers.
Output values - formulas and definitions
| Output |
Formula |
Meaning |
| Sum | x1 + x2 + ... + xn | Add all numbers together |
| Product | x1 x x2 x ... x xn | Multiply all numbers together |
| Mean | Sum / n | Sum divided by count |
| Minimum | smallest xi | Lowest value in the list |
| Maximum | largest xi | Highest value in the list |
| Count | n | How many numbers were entered |
Sum vs product - when to use which
| Property |
Sum |
Product |
| Operation |
Addition |
Multiplication |
| Effect of zero in the list |
No change |
Entire result becomes 0 |
| Growth rate |
Linear |
Exponential |
| Typical use |
Totals, costs, distances |
Area, volume, probabilities |
| Example: {2, 3, 4} |
9 |
24 |
Sigma and Pi notation
Mathematicians use two shorthand symbols for sum and product over a sequence of numbers:
Σ
Sigma = "add up". Capital Greek S. For {3, 5, 7}: 3 + 5 + 7 = 15.
Π
Pi = "multiply together". Capital Greek P. For {3, 5, 7}: 3 x 5 x 7 = 105.
Practical examples
Monthly expenses: $120, $85, $200, $45, $150. Sum = $600. Mean = $120. Max = $200 (rent). Min = $45 (internet). Product is not meaningful here - sum and mean are the useful outputs for budgeting.
Sum answers "how much total", mean answers "how much on average"
Dice probability: Odds of rolling three sixes in a row? Multiply the individual probabilities: 1/6 x 1/6 x 1/6. Enter 0.1667, 0.1667, 0.1667. Product = 0.00463 (about 1 in 216). Sum = 0.5 (meaningless here).
Independent event probabilities are always multiplied, never added
Test scores: 78, 85, 90, 62, 95, 88. Sum = 498. Count = 6. Mean = 83. Min = 62 (target for improvement). Max = 95 (best result). Quick snapshot of academic performance in one calculation.
Mean gives the GPA-style average, min shows the weak spot
Negative numbers: -3, -1, 0, 2, 4. Sum = 2. Product = 0 (zero kills the product). Mean = 0.4. Min = -3, Max = 4. A single zero in the list always makes the product zero, regardless of other values.
Watch for zeros - they collapse the product to zero instantly
Box dimensions: A shipping box is 40 x 30 x 25 cm. Product = 30,000 cm3 (the volume). Sum = 95 cm (total of all edges if you only count length + width + height once). For volume calculations, product is what you need.
Product of lengths gives volume - a core geometry operation
Where sum and product appear in practice
Finance: Sum monthly expenses to find total spend. Mean reveals your average cost per category.
Academics: Sum assignment points, divide by count for the average grade. Min identifies the weakest result.
Probability: Multiply independent event probabilities to get joint probability. Product is the core operation here.
Engineering: Product of dimensions gives volume. Sum of forces in one axis gives net force. Mean of repeated measurements reduces error.
FAQ
What is the difference between sum and product?
Sum adds all numbers (2 + 3 + 4 = 9). Product multiplies them (2 x 3 x 4 = 24). Both are commutative - the order of numbers does not matter. The results diverge rapidly for larger values or longer lists.
Why does a zero make the product zero?
Multiplying any number by zero gives zero. Since the product chains all multiplications together, a single zero collapses the entire result. The sum is not affected - adding zero does not change the running total.
What is the mean, and how is it different from median?
The mean is the sum divided by count - the "balancing point" of the data. The median is the middle value after sorting. For symmetric data both are close. For skewed data (like incomes), the median is more representative because it ignores extremes.
Can I enter fractions like 1/2 or 3/4?
Enter decimal equivalents: 0.5 instead of 1/2, 0.75 instead of 3/4. For fraction arithmetic, use the fraction calculator linked below.
How many numbers can I enter at once?
There is no hard limit. You can paste hundreds of comma-separated values. For very large lists the product may exceed 64-bit floating-point range and display in scientific notation (e.g. 1.23e+300). Sum, mean, min and max are not affected.
What happens with a single number?
For one element, sum = product = mean = min = max = that number, and count = 1. This is mathematically correct: the sum of one term is itself, and so is the product.
Related tools
Average Calculator
Four types of mean: arithmetic, weighted, geometric, harmonic - Open calculator
Median Calculator
Find the middle value that splits your data in half - Open calculator
Standard Deviation Calculator
Measure how spread out your data is around the mean - Open calculator
Percentage Calculator
Three modes: X% of Y, what % is X of Y, percentage change - Open calculator
Fraction Calculator
Add, subtract, multiply and divide fractions with step-by-step solutions - Open calculator