Understanding the Adding Hours and Minutes Calculator
Adding time durations is not ordinary base-10 addition, because minutes wrap at 60, not 100. This calculator adds up to three hours : minutes entries — for example, work blocks, exercise sessions, or task durations — and returns the combined total in four formats: hours and minutes (H:MM), decimal hours, total minutes, and total seconds.
The formula
Every duration is first converted to a single number of minutes, then summed, then converted back with the standard base-60 carry:
- Step 1 — convert to minutes: for each entry, minutes = (hours × 60) + minutes.
- Step 2 — sum: total minutes = the sum of every entry's minutes.
- Step 3 — convert back: final hours = ⌊total minutes ÷ 60⌋ (rounded down); final minutes = total minutes mod 60 (the remainder).
Worked example: 2h 30m + 1h 45m + 0h 15m → (150) + (105) + (15) = 270 total minutes → 270 ÷ 60 = 4 remainder 30, so the total is 4h 30m. The same 270 minutes equals 4.50 decimal hours (270 ÷ 60) and 16,200 seconds (270 × 60).
Decimal hours vs. hours and minutes
Clock-style H:MM is intuitive for reading a duration, but decimal hours (hours as a single number with a fractional part) are what most timesheet, payroll, and billing systems expect, since decimal values divide evenly by an hourly rate. To convert, divide total minutes by 60 — 45 minutes becomes 0.75 hours, not "0.45."
How to use the results
Enter each duration's whole hours and minutes (0-59) in the three rows — leave a row at 0h 0m if you only have two durations to add. Press Add Times to see the combined total in all four formats at once, then use whichever format your task calls for: H:MM for a schedule, decimal hours for payroll, or total minutes/seconds for a technical calculation.