Add or subtract hours and minutes.
result_minutes = (h₁ × 60 + m₁) ± (h₂ × 60 + m₂) H = ⌊result_minutes / 60⌋ M = result_minutes mod 60
Converting each time value to total minutes makes the arithmetic straightforward. Add (or subtract) all values in minutes, then convert the result back to hours and minutes using integer division and the modulo operation.
Adding time:
total_minutes = (h × 60) + mresult_minutes = Σ total_minutes_iH = floor(result_minutes / 60), M = result_minutes mod 60Subtracting time:
result_minutes = total_minutes_1 − total_minutes_2result_minutes < 0, the end time is before the start time (check your inputs).Step 1 – Convert to minutes: Time 1 = (3 × 60) + 47 = 180 + 47 = 227 minutes Time 2 = (2 × 60) + 35 = 120 + 35 = 155 minutes Step 2 – Add: result_minutes = 227 + 155 = 382 minutes Step 3 – Convert back: H = ⌊382 / 60⌋ = ⌊6.3667⌋ = 6 hours M = 382 mod 60 = 382 − (6 × 60) = 382 − 360 = 22 minutes
Result: 6 hours 22 minutes
The two durations — 3 h 47 min and 2 h 35 min — combine to 6 hours and 22 minutes. Notice that the 47 + 35 = 82 minutes automatically carries over into an extra hour (82 min = 1 h 22 min), which is why manual clock addition is error-prone. The calculator handles this carry-over for you every time.
Ordinary numbers use base-10: you carry over at 10, 100, 1 000, etc. Time uses a mixed-base system: 60 seconds per minute and 60 minutes per hour. This means you can't simply stack hours and minutes in columns the way you would with decimals — a minute column that reaches 60 must roll over into the hour column.
| Format | Example | Conversion | |---|---|---| | Hours and minutes | 2 h 45 min | — | | Decimal hours | 2.75 h | minutes ÷ 60 | | Total minutes | 165 min | hours × 60 + minutes |
To convert 2 h 45 min to decimal hours: 45 ÷ 60 = 0.75, so 2 + 0.75 = 2.75 hours. To convert 2.75 hours back: 0.75 × 60 = 45 minutes, giving 2 h 45 min.
If your result exceeds 24 hours, the calculator keeps counting — it does not reset at midnight. For example, 14 h + 13 h = 27 hours (1 day and 3 hours), which is useful for multi-day project tracking but different from wall-clock time.
Convert each time to total minutes (hours × 60 + minutes), add the totals, then divide by 60: the quotient is hours, the remainder is minutes. For example, 1 h 40 min + 2 h 50 min = 100 + 170 = 270 min = 4 h 30 min.
7 h 45 min = 465 min; 3 h 30 min = 210 min. Total = 675 min. 675 ÷ 60 = 11 remainder 15. Result: **11 hours 15 minutes**.
2.5 × 60 = **150 minutes**.
Subtract the start time from the end time. Convert both to 24-hour format if needed (e.g., 9:00 AM = 9:00, 5:30 PM = 17:30). Then: 17 h 30 min − 9 h 00 min = **8 hours 30 minutes** worked.
10 h 0 min = 600 min; 3 h 45 min = 225 min. 600 − 225 = 375 min = 6 h 15 min. Result: **6 hours 15 minutes**.
Yes. Use the 'Add another time' button to include as many additional time values as needed. The calculator sums them all in a single step.
The calculator continues counting beyond 24 hours and displays the result as a plain number of hours and minutes (e.g., 26 h 15 min). It does not automatically convert to days, but you can mentally divide by 24 if needed.
Yes. Enter the later time's duration (or end time expressed as elapsed minutes since midnight) as Time 1 and the earlier value as Time 2, then choose Subtract. The result is the elapsed time between them.
The current version of this calculator focuses on hours and minutes. For calculations involving seconds, use a more detailed stopwatch or duration calculator.
Divide the minute portion of the result by 60 and add it to the whole hours. For example, 6 h 22 min → 22 ÷ 60 ≈ 0.367, so the decimal value is approximately 6.37 hours.