Why Adding Times by Hand Keeps Giving the Wrong Total
The most common cause is treating minutes as base-10 instead of base-60 — adding the minutes columns and writing down a result of 60 or more as-is (like "3 hours 75 minutes") instead of carrying the extra hour and reducing the minutes to the correct remainder below 60.
This specific mistake is easy to catch once you know exactly what to look for in a manually added result.
The telltale sign of this error
A minutes total of 60 or more in the final answer ("4 hours 82 minutes," for example) is never a valid, fully simplified time — minutes must always be reduced to a value between 0 and 59, with any excess carried into the hours column, the same way carrying works in ordinary addition once a column reaches 10 or more.
How to catch and fix it
After adding the minutes columns, checking whether the result is 60 or more is a quick, reliable check — if it is, subtracting 60 from the minutes and adding 1 to the hours corrects the result to its proper simplified form.
A more reliable method for anything with several entries
For adding more than two time values, converting everything to total minutes first, summing that single running total, and converting back to hours and minutes only once at the end avoids repeated borrowing steps and the errors that tend to accumulate across them.