Prime Number Generator
Generate the first N prime numbers or list all primes inside a custom range. Includes prime count, largest prime, total sum, average prime gap, and twin-prime pair count for quick number-theory exploration.
Find the median of any dataset instantly, with quartiles (Q1, Q3), IQR, five-number summary, interactive box plot, outlier detection using Tukey fences, percentile table, MAD, and Pearson skewness. Robust central tendency analysis for statistics, data science, and research.
10 values · even count → average of two middle values
Median value
The median is the middle value of a dataset when sorted in order. It is the most widely used robust measure of central tendency because, unlike the arithmetic mean, it is not distorted by extreme values or outliers. Exactly 50% of values fall at or below the median — making it equivalent to the 50th percentile.
Always sort first. For odd n take index ⌊n/2⌋. For even n average positions n/2 and n/2+1 (1-indexed).
Uses the inclusive interpolation method (same as Excel PERCENTILE.INC): value = sorted[i] + frac × (sorted[i+1]−sorted[i]) where i = (p/100)×(n−1).
Values outside Q1 − 1.5×IQR or Q3 + 1.5×IQR are mild outliers. Beyond 3×IQR are extreme outliers.
Compute each value's absolute distance from the median, then take the median of those distances. Highly robust to outliers.
A quick non-parametric skewness estimate. Near 0 = symmetric; positive = right-skewed; negative = left-skewed.
where i = ⌊(p/100)×(n−1)⌋ and frac = fractional part. This is the standard linear interpolation used by numpy, R, and Excel.
Dataset: 65, 69, 72, 76, 78, 83, 84, 88, 90, 91 (already sorted above — 10 values)
Wait — this is even. Let's use 7 values: 3, 7, 1, 15, 9, 4, 12
Dataset: 65, 69, 72, 76, 78, 83, 84, 88, 90, 91 (10 values)
Dataset: 290, 298, 300, 305, 315, 320, 325, 335, 410, 1250
When median income is $45,000 but mean income is $72,000, the distribution is right-skewed (a small number of high earners pulls the mean up).
Median Calculator is part of the Math & Statistics Calculators collection. If you want a broader view of similar workflows, open the Math & Statistics Calculators category page or browse all QuickTools categories.
Common next steps after this tool include Prime Number Generator, Ethereum ROI Calculator and Random Number Generator.
Generate the first N prime numbers or list all primes inside a custom range. Includes prime count, largest prime, total sum, average prime gap, and twin-prime pair count for quick number-theory exploration.
Calculate Ethereum ROI, net profit, annualized return, break-even sell price, and holding-period performance using ETH buy price, sell price, amount, dates, and fees.
Generate random numbers using three statistical distributions — Integer (discrete uniform), Float (continuous uniform), and Normal (Gaussian bell curve). Supports seeded output for reproducibility, no-duplicates mode, sort order, and instant statistics including mean, median, standard deviation, and mode.
Calculate your Bitcoin investment return, profit/loss, and annualized ROI. Enter buy/sell price, amount, dates, and fees to see your crypto performance.
Convert short MP4, WebM, MOV, AVI, MKV, and other video clips into GIFs online with trim controls, frame-rate options, and private in-browser processing.
Create animated GIFs from a sequence of images online with per-frame delay, output width, loop count, and private in-browser processing — no upload required.
Convert an animated GIF into a compact MP4 or WebM video file online with output width, duration, and FPS controls — processed entirely in your browser, no upload required.
Convert an animated GIF into a compact WebM video file online using VP9 or VP8 — output width, duration, and FPS controls with private in-browser processing, no upload required.