Compute the total sum, product, count, arithmetic mean, minimum and maximum of any numeric sequence. The interactive bar chart visualizes the magnitude and sign of each value.
The sum (Σ) of a set of numbers is the result of adding them together, while the product (Π) is the result of multiplying them. These fundamental arithmetic operations form the backbone of algebra, statistics, finance, and computer science. This calculator not only gives instant results but also helps visualize the relative magnitude of each number via an absolute bar chart.
Given a list of numbers x₁, x₂, …, xₙ:
Sum = Σ xi = x₁ + x₂ + … + xₙ Product = Π xi = x₁ × x₂ × … × xₙ
Arithmetic mean = (Σ xi) / n | Geometric mean = (Π xi)1/n (for positive numbers)
Our calculator follows a rigorous parsing and numeric evaluation pipeline:
The bar chart provides an immediate intuitive sense of data distribution. Positive numbers appear in blue, negatives in red — the height corresponds to the absolute value. This helps detect outliers, symmetry, and sign patterns. The chart automatically resizes with the window (debounced for performance); all bars are drawn dynamically based on the current dataset.
| Dataset | Sum | Product | Count | Mean |
|---|---|---|---|---|
| 5, 12, 8, 3, 7 | 35 | 10080 | 5 | 7.00 |
| -4, 2, -1, 6, 3 | 6 | 144 | 5 | 1.20 |
| 2.5, 3.7, 1.2, 4.8 | 12.20 | 53.28 | 4 | 3.05 |
| 1, 1, 2, 3, 5, 8, 13 | 33 | 3120 | 7 | 4.7143 |
| 10, 20, 30, 40, 50 | 150 | 12,000,000 | 5 | 30.00 |
An investor tracks yearly multipliers: 1.05 (5% growth), 0.98 (-2% loss), 1.12 (12% gain), 1.03 (3% gain). The product of these multipliers (1.05 × 0.98 × 1.12 × 1.03) ≈ 1.187 gives the total cumulative growth factor — a 18.7% total increase over 4 years. The sum is less relevant here, but the product reveals overall portfolio change. This tool instantly provides the product (≈1.187), enabling quick “what-if” scenario analysis.