Time Calculator

Time Calculator

Add or subtract two durations in hours, minutes and seconds. The result is shown in HH:MM:SS plus total minutes and seconds — no 24-hour limit.

Time A
Time B
= Result (HH:MM:SS)
04:15:30
= Total minutes
255.5
= Total seconds
15,330

The Time Calculator adds and subtracts durations — spans of hours, minutes and seconds — and normalises the answer into HH:MM:SS with total seconds and total minutes on the side. It's the tool you need when you're tracking billable time, splitting a workout across intervals, editing audio and video, cooking multi-stage recipes or planning a race pace.

How it works

Every duration is converted to a total number of seconds, the two totals are added or subtracted, and the result is broken back down into hours, minutes and seconds. This avoids the classic bug of adding 45 + 45 minutes and getting "1:30" without carrying the extra hour.

The formulas

  • Total seconds = hours × 3600 + minutes × 60 + seconds.
  • Sum = seconds₁ + seconds₂; Difference = seconds₁ − seconds₂.
  • H = ⌊total ÷ 3600⌋, M = ⌊(total mod 3600) ÷ 60⌋, S = total mod 60.

Worked examples

Adding two workouts

Session A 1:15:40 + Session B 0:52:35 = 8,140 s = 2:08:15.

Subtracting a break

Shift length 9:00:00 − break 0:45:00 = 8:15:00 of paid work.

Large sum with carry

72:30:00 + 15:45:20 = 88:15:20 — the calculator does not cap at 24 hours.

Where it's used

  • Freelancers logging billable hours across tasks.
  • Runners and cyclists combining split times into a total.
  • Video editors summing clip durations for a rough cut.
  • Musicians and podcasters checking episode lengths.
  • Manufacturing supervisors totalling machine run-times.

Tips and common mistakes

  • Don't add times as decimals — 1.30 is not 1 hour 30 minutes, it's 1 hour 18 minutes.
  • Carry the extra unit: 90 seconds is 1 minute 30 seconds, not 0:00:90.
  • For start-and-end clock times (like a shift starting at 09:15 and ending at 17:40) use the Hours Calculator instead.

Frequently asked questions

What does the Time Calculator do?+
It adds or subtracts two durations expressed in hours, minutes and seconds, and returns the result in HH:MM:SS plus total seconds and total minutes.
Can I add more than 24 hours?+
Yes. The calculator has no 24-hour cap — you can add 72:30:00 to 15:45:20 and get the full result.
Does it handle negative results?+
Yes. If you subtract a larger duration from a smaller one, the result is shown with a minus sign.
Is this the same as a stopwatch or clock time calculator?+
No. This adds durations (elapsed time). For start-and-end clock times use the Hours Calculator.
How precise is it?+
Seconds-precise. All inputs are validated and the result is normalised so 90 minutes becomes 1h 30m automatically.