Minimum and Maximum Calculator
Free min max calculator. Find minimum, maximum, range, argmin, argmax, k-th smallest/largest. Runnin
Why This Statistical Analysis Matters
Why: Statistical calculator for analysis.
How: Enter inputs and compute results.
Min, Max, Range โ k-th Smallest/Largest, Running Min/Max
Find minimum, maximum, range, positions (argmin/argmax), k-th order statistics, relative positions, and running min/max for time series.
Real-World Scenarios โ Click to Load
Data โ comma or space separated
Data Bar Chart โ Min/Max Highlighted
Running Min/Max Line Chart
Relative Positions (valueโmin)/(maxโmin)
Calculation Breakdown
For educational and informational purposes only. Verify with a qualified professional.
Key Takeaways
- Min = smallest value; Max = largest value
- Range = max โ min โ measures total spread
- argmin/argmax โ positions (indices) where min/max occur
- k-th smallest/largest โ order statistics (k=1 gives min/max)
- Relative position = (value โ min) / (max โ min) โ 0 to 1 scale
- Running min/max โ track best/worst value seen so far at each position
Did You Know?
Expert Tips
Duplicate Handling
When min or max appears multiple times, argmin/argmax list all positions. Count gives frequency.
Order Statistics
k=1: min, max. k=2: 2nd smallest, 2nd largest. k=(n+1)/2: median (odd n).
Running Stats
Useful for time series: track best/worst so far, detect new records (52-week high/low).
Normalization
Relative position (min-max normalization) scales data to [0,1] for ML or comparison.
Formulas Reference
Range = max โ min
k-th smallest = X_(k) = sorted[kโ1]
Relative position = (x โ min) / (max โ min)
Frequently Asked Questions
What is argmin?
argmin is the position (index) where the minimum value occurs. If min appears multiple times, argmin lists all positions.
What is the k-th smallest?
After sorting, the k-th smallest is the value at position k (1-based). k=1 gives the minimum.
What is running min?
At each position i, running min is the smallest value among the first i+1 data points.
When is range zero?
When all values are equal. Min = max, so range = 0. Relative position is undefined.
How do I find the second smallest?
Set k=2. The 2nd smallest = sorted[1] (0-based) or the 2nd order statistic.
Applications
Time Series
Running min/max track records. Stock prices: 52-week high/low.
Sports
Best/worst times, scores. Position of record (argmin/argmax).
Machine Learning
Min-max normalization for feature scaling. Relative position in [0,1].
Quality Control
Specification limits. Min/max of measurements. Range for variability.
Order Statistics Quick Reference
| k | k-th Smallest | k-th Largest |
|---|---|---|
| 1 | Min | Max |
| 2 | 2nd smallest | 2nd largest |
| (n+1)/2 | Median (odd n) | Median (odd n) |
| n | Max | Min |
Official Data Sources
Note: Min and max are sensitive to outliers. For robust analysis, consider IQR or median-based measures.
Related Calculators
Midrange Calculator
Compute midrange = (min + max) / 2. Simple measure of central tendency. Compare with mean, median, trimmed mean. See sensitivity to outliers.
StatisticsDot Plot Calculator
Create Cleveland dot plots from raw data. Frequency table, mean, median, mode, range, SD. Identify clusters, gaps, and outliers.
StatisticsDispersion Calculator
Compute ALL measures of dispersion: Range, IQR, Variance (population & sample), Standard Deviation, MAD, CV, Relative Range, Quartile Deviation. Side-by-side...
StatisticsFrequency Polygon Calculator
Create frequency polygons from grouped data. Plots midpoints vs frequencies. Supports overlaying multiple datasets for comparison. Raw data or frequency...
StatisticsMean Absolute Deviation Calculator
Compute MAD = ฮฃ|xแตข - xฬ|/n from data. Compare MAD about the mean vs MAD about the median. See relationship to standard deviation.
StatisticsMedian Absolute Deviation Calculator
Compute MAD = median(|xแตข โ median|). Robust spread measure. Normalized MAD, modified Z-scores, outlier detection (Iglewicz-Hoaglin).
Statistics