Calculate the average of multiple time values in hours, minutes, and seconds. Enter up to 10 time durations to find their mean — perfect for averaging lap times, task durations, race times, or any timed measurements.
✓Verified: Standard Arithmetic Mean — April 2026
1
h:min:sec
2
h:min:sec
3
h:min:sec
Average Time
—
Was this calculator helpful?
✓ Thanks for your feedback!
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.
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.
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
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
Times
Total Seconds
Average Seconds
Average (h:mm:ss)
1:00, 2:00
60+120=180
90
0:01:30
1:23, 1:25, 1:21
83+85+81=249
83
0:01:23
5:00, 6:00, 5:30
300+360+330=990
330
0:05:30
1:00:00, 0:45:00
3600+2700=6300
3150
0:52:30
Common Uses for Averaging Time
Sports & fitness: Average lap time, average mile pace, mean finish time
Project management: Average task duration for planning and estimation
Manufacturing: Average cycle time, mean time between failures
Computing: Average response time, mean latency
Education: Average time on a test section, mean study session duration
💡 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.
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.