... LIVE
1
h : min : sec
2
h : min : sec
3
h : min : sec
Average Time

Sources & Methodology

Standard arithmetic mean applied to time. Times are converted to total seconds, averaged, then converted back to h:mm:ss. Method consistent with ISO 8601 time arithmetic standards.
📚
NIST — Time and Frequency Division
National Institute of Standards and Technology reference for time measurement units (hours, minutes, seconds) and their arithmetic relationships used in this calculator's conversion methodology.
📖
NCTM — Principles and Standards for School Mathematics
National Council of Teachers of Mathematics standards for arithmetic mean calculation and measurement, the mathematical basis for averaging time values as implemented here.
Step 1: Convert each time to seconds: h × 3600 + m × 60 + s
Step 2: Sum all seconds values
Step 3: Divide total seconds by count of times
Step 4: Convert average seconds back: h = floor(avg/3600), m = floor((avg mod 3600)/60), s = floor(avg mod 60)

⏱ Last reviewed: April 2026

How Is Average Time Calculated?

You cannot simply add up hours, minutes, and seconds separately and divide by the count — because time is base-60, not base-10. The correct method is to convert every time value to a single unit (seconds), perform the arithmetic mean, then convert the result back to the standard h:mm:ss format.

The Average Time Formula

Each Time in Seconds = (h × 3600) + (m × 60) + s
Total Seconds = T₁ + T₂ + T₃ + … + Tₙ
Average Seconds = Total Seconds ÷ Number of Times
Back to h:mm:ss: h = ⌊avg/3600⌋  •  m = ⌊(avg mod 3600)/60⌋  •  s = avg mod 60
Example: Average of 1:30, 2:15, 1:45
Convert: 90 + 135 + 105 = 330 seconds
Average: 330 / 3 = 110 seconds = 1 minute 50 seconds

Why You Must Convert to Seconds First

Time is base-60 (60 seconds per minute, 60 minutes per hour). If you averaged the minutes column of 1:30 and 2:45 as (1+2)/2 = 1.5 minutes and seconds as (30+45)/2 = 37.5 seconds, you’d get 1:37.5 — but the correct answer is actually (90+165)/2 = 127.5 seconds = 2:07.5. Always convert to seconds first.

Average Time Reference Table

TimesTotal SecondsAverage SecondsAverage (h:mm:ss)
1:00, 2:0060+120=180900:01:30
1:23, 1:25, 1:2183+85+81=249830:01:23
5:00, 6:00, 5:30300+360+330=9903300:05:30
1:00:00, 0:45:003600+2700=630031500:52:30

Common Uses for Averaging Time

💡 Tip — Fastest vs Average: For sports performance, track both your average time (what you typically do) and your fastest time (your potential). A shrinking gap between average and best lap time indicates improving consistency. The calculator also shows minimum and maximum so you can spot outliers.
Frequently Asked Questions
Convert each time to seconds, sum them, divide by count, convert back. Example: average of 1:30 and 2:30. Seconds: 90 + 150 = 240. Average: 240/2 = 120 seconds = 2:00. Never average hours, minutes, and seconds columns separately — time is base-60, not base-10.
1. Convert each to seconds: hours×3600 + minutes×60 + seconds. 2. Add all second values. 3. Divide by number of times. 4. Convert back: hours = floor(result/3600), remaining/60 = minutes, remaining mod 60 = seconds. The calculator above does all steps automatically.
Average = (T₁ + T₂ + … + Tₙ) / n where each T is in seconds. Convert each time: T = h×3600 + m×60 + s. Divide total by count, convert result back to h:mm:ss.
Convert each lap to seconds, add them, divide by number of laps. Example: laps of 1:23 (83s), 1:25 (85s), 1:21 (81s). Total = 249s. Average = 249/3 = 83s = 1:23 average lap time. This works for any number of laps.
Yes, but only after converting to a single unit (seconds). You cannot add time directly in h:mm:ss because of the base-60 structure. After converting to seconds, addition and division follow normal arithmetic rules. The calculator handles all conversions automatically.
Hours = floor(seconds / 3600). Remaining = seconds mod 3600. Minutes = floor(remaining / 60). Seconds = remaining mod 60. Example: 3661 seconds: 1 hour (3600), 61 remaining, 1 minute (60), 1 second. Result: 1:01:01.
Average time is used in sports (average lap times, race times), project management (average task duration), manufacturing (average cycle time), computing (average response time), and any context where multiple time measurements need to be summarized. It gives the typical or representative time for a repeated activity.
In Excel, times are stored as fractions of a day. Enter in h:mm:ss format and use AVERAGE(). Format the result cell as Time. Or use the calculator above, which handles h:mm:ss input directly without setup. For more than 10 times, Excel is better suited.
Yes. Mean and average time both refer to the arithmetic mean: sum of all times divided by count. This is different from median time (the middle value when sorted) or mode time (the most frequent value). For symmetric distributions, mean and median are equal.
Times spanning midnight need adjustment: add 86400 seconds to any time appearing before the first time. For durations (not clock times), this issue does not arise — simply add the total duration in seconds. This calculator is designed for duration averaging, not clock-time averaging across midnight.
Total time = sum of all time values. Average time = total time / count. Example: 4 lap times averaging 2 minutes each. Total = 4 × 2 = 8 minutes. Average = 8 / 4 = 2 minutes. Average = typical individual time. Total = combined duration.
Related Calculators
Popular Calculators
🧮

Missing a Math Calculator?

Can’t find the math calculator you need? Tell us — we build new ones every week.