Minute Calculator

Convert minutes to seconds, hours, days, and weeks, or do clock arithmetic by adding or subtracting minutes from a time.

Time & Date Convert + time math 12h + 24h output
Rate this calculator · 4.5 (2)

Minute Calculator

NIST / BIPM time definitions

Instructions — Minute Calculator

1

Pick convert or time math

Convert mode turns a minute count into seconds, hours, days, and weeks. Time math mode adds or subtracts a minute count from a starting clock time, returning the new time in both 24-hour and 12-hour AM/PM format. The mode toggle at the top swaps the input panel without losing your other entries.

2

Enter your values

For Convert: type the minute count, including decimals (90.5 minutes is valid). For Time math: pick the start time with the built-in picker (defaults to the current clock), choose Add or Subtract, and type the minutes to apply. The minute calculator accepts any positive integer, including values that roll over multiple days.

3

Read the breakdown

Convert mode shows seconds, hours (3-decimal precision), days, and weeks. Time math mode shows the new clock time (24h and 12h), the day offset (same day, +1, -1), the total minutes applied, and which operation ran. The formula bar gives a compressed view suitable for copy-paste into emails or chat.

1 hour = 60 minutes = 3,600 seconds: The minute is not an SI unit but is officially accepted for use with SI by BIPM. The second is defined by the cesium-133 atomic transition (NIST-F2 maintains the US standard).
1 day = 1,440 minutes; 1 week = 10,080 minutes: Useful constants for time-tracking, Pomodoro stacking, and project estimates. The Pomodoro technique uses 25-minute work blocks (1,500 seconds).

Formulas

The minute is exactly 60 seconds by definition. All conversions below are exact when the input is exact; rounding appears only in the decimal display.

Minutes to seconds
$$ s = m \times 60 $$
The base relation: 1 minute = 60 seconds, exactly. The second is defined by the duration of 9,192,631,770 periods of the cesium-133 ground-state hyperfine transition (SI, since 1967).
Minutes to hours
$$ h = \frac{m}{60} $$
Divide by 60. 90 minutes = 1.5 hours; 150 minutes = 2.5 hours. The hour is also accepted-for-use-with-SI but is not itself an SI unit.
Minutes to days
$$ d = \frac{m}{1440} $$
There are 24 x 60 = 1,440 minutes in a calendar day. 720 minutes is half a day; 4,320 minutes is three days. UTC adds leap seconds occasionally, so this is the nominal civil day.
Minutes to weeks
$$ w = \frac{m}{10080} $$
7 x 24 x 60 = 10,080 minutes per week. A 40-hour workweek is 2,400 minutes; 5 working days x 8 hours x 60 minutes.
Add minutes to clock time
$$ T_{new} = (T_{start} + m) \bmod 1440 $$
Convert start time to total minutes since midnight, add the delta, take modulo 1,440. The day offset is the integer quotient. Subtraction uses negative delta.
24h to 12h conversion
$$ h_{12} = ((h_{24} + 11) \bmod 12) + 1 $$
Hours 0 and 12 become 12 AM and 12 PM respectively; hour 13 becomes 1 PM. The mod 12 trick handles the wrap from 12 to 1 without an explicit case.

Reference

Minute ↔ common time units
MinutesSecondsHoursDays
1600.01670.000694
53000.08330.00347
159000.250.0104
301,8000.50.0208
603,60010.0417
905,4001.50.0625
1207,20020.0833
24014,40040.167
48028,80080.333
72043,200120.5
1,44086,400241
10,080604,8001687

Common minute milestones

Work, study, sport
MinutesActivity
25Pomodoro work block
45Class period
50Lecture hour minus break
90Football match (regulation)
105Average feature film
180NBA broadcast slot
Everyday
MinutesAction
4Average song
7Soft-boil an egg
10Brisk mile walk
20Standard meditation
30TV sitcom slot
60One hour

Source: BIPM Brochure on the International System of Units; NIST Time and Frequency Division. The second is the SI base unit of time; the minute is accepted for use with SI but not part of it.

Article — Minute Calculator

Minute Calculator: Convert Minutes and Do Time Math

A minute is exactly 60 seconds by definition. There are 60 minutes in an hour, 1,440 minutes in a day, 10,080 minutes in a week. The minute is not an SI base unit, but BIPM lists it as an accepted-for-use-with-SI unit alongside the hour and the day. The SI second itself is defined by the cesium-133 atomic transition, maintained in the US by NIST-F2 in Boulder.

The minute calculator above does two jobs. In Convert mode it turns a minute count into seconds, hours, days, and weeks. In Time math mode it adds or subtracts minutes from a clock time, returning the new time in both 24-hour and 12-hour AM/PM format with day-rollover detection. Both modes show a formula bar suitable for copy-paste into reports or chats.

How the minute calculator works

This minute calculator runs on the canonical relationships between time units. One minute is 60 seconds, one hour is 60 minutes, one day is 24 hours. The conversions are exact within civil time; UTC adds occasional leap seconds, but a calendar minute always contains exactly 60 SI seconds. Pick the mode at the top of the panel, type your value, and the result updates on every keystroke.

Time math mode handles day rollover automatically. If you add 1,500 minutes to 09:00, the calculator reports 10:00 with a +1 day offset. Subtraction works the same way: 02:00 minus 180 minutes returns 23:00 with a -1 day offset. The 12-hour clock conversion uses the convention that midnight is 12:00 AM and noon is 12:00 PM.

Did you know

The first mechanical clocks built in 13th-century European monasteries had no minute hand. Hours were marked with chimes for monastic offices; finer time-keeping arrived with the pendulum clock invented by Christiaan Huygens in 1656. The pendulum was accurate enough (within 15 seconds a day) to make a minute hand worth adding, and clockmakers added second hands shortly after.

Minute to second and hour conversion

Minute to second conversion multiplies by 60. Minute to hour conversion divides by 60. Minute to day conversion divides by 1,440 (24 times 60). Minute to week conversion divides by 10,080 (7 times 1,440). The Convert mode displays all four results at once. The calculator handles fractional minutes (90.5 minutes is valid), and the seconds output rounds to whole seconds because most stopwatches do.

A useful pattern: 90 minutes is 1.5 hours, 5,400 seconds, and 1/16 of a day. 45 minutes is 0.75 hour, 2,700 seconds. 25 minutes (one Pomodoro work block) is 1,500 seconds and 0.417 hour. Memorising the seconds-per-quarter-hour family (900 / 1,800 / 2,700 / 3,600) speeds up mental conversion when you do not have a calculator handy.

Minute arithmetic on clock time

Adding minutes to a clock time follows a fixed recipe. Convert the starting time to total minutes since midnight (hours times 60 plus minutes). Add or subtract the delta. Take the result modulo 1,440 to get the new time-of-day; the integer quotient is the day offset. Example: 14:35 starts at 875 minutes; add 90 minutes equals 965 minutes equals 16:05 same day. Add 1,500 minutes equals 2,375 minutes equals 935 minutes equals 15:35 next day.

Minute conversion shortcuts
1 min 60 s
15 min 900 s
60 min 1 hour
90 min 1.5 hour
1,440 min 1 day
10,080 min 1 week
43,800 min 1 month (avg)
525,600 min 1 year

Minutes in a day, week, month, and year

One day is 1,440 minutes. One week is 10,080 minutes. One average month is 43,800 minutes (365.25 days divided by 12, times 1,440). One non-leap year is 525,600 minutes; the song from the musical Rent put that number in the popular ear. A leap year adds 1,440 more minutes for the 29 February, totalling 527,040.

For payroll, the typical full-time work month is 160 to 176 hours, or 9,600 to 10,560 minutes (40 hours per week times 4 or 4.33 weeks). Project planners track minutes in person-hour units. The US Bureau of Labor Statistics reports working time in hours and minutes; the average US private-sector employee works 1,801 hours (108,060 minutes) per year before paid leave.

The history of the 60 minute hour

Why are there 60 minutes in an hour? The Babylonians used a base-60 number system around 2,000 BCE, partly because 60 has more whole-number divisors (1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, 60) than any smaller positive integer. Greek and Arabic astronomers preserved the system; medieval Europeans inherited it. Decimal time was tried during the French Revolution (10-hour days with 100-minute hours), but it lasted only a few years before reverting to the Babylonian system.

The same base-60 logic explains why circles are divided into 360 degrees (6 times 60) and degrees are split into 60 arc-minutes and 60 arc-seconds. The minute and the arc-minute share an origin: both come from the Latin pars minuta prima, the first small part of a larger unit. The second is the pars minuta secunda, the second small part.

Practical uses of a minute calculator

Cooking instructions list times in minutes: a 4-minute soft-boiled egg, a 12-minute roast at 220 degrees C, a 30-minute simmer for risotto. Workout intervals run 20 to 60 minutes. Pomodoro productivity uses 25-minute work blocks. School class periods are 45 to 60 minutes. Business meetings are scheduled in 15-minute increments. Live concert tickets typically list start times to the minute.

Tip

For sleep planning, work backward from your wake-up time in 90-minute increments (the average length of a full sleep cycle). To wake at 06:30 feeling rested, target a 03:00, 04:30, 06:00, or 07:30-minus-90 bedtime. The minute calculator handles the rollover from PM to AM automatically.

Minute conversion mistakes to avoid

The most common minute conversion mistake is treating 1.5 hours as 1 hour 50 minutes. It is 1 hour 30 minutes. Decimal hours use base-10 (half is 0.5), but clock hours use base-60 (half is 30 minutes). Many time-tracking apps display decimals; payroll typically rounds to the nearest quarter hour (15 minutes = 0.25, 30 = 0.50, 45 = 0.75).

The second mistake is forgetting AM/PM in 12-hour clock arithmetic. Adding 6 hours to 10:00 AM gives 4:00 PM (16:00 in 24-hour), not 4:00 AM. The 24-hour clock used by airlines, transit systems, and most of the world removes the ambiguity. The third mistake is double-counting leap seconds in long-duration minute sums; for civil time you can ignore them, but precision astronomy and GPS internal clocks track them explicitly.

  • 1 minute = 60 seconds (exactly)
  • 1 hour = 60 minutes = 3,600 seconds
  • 1 day = 1,440 minutes = 86,400 seconds
  • 1 week = 10,080 minutes
  • 1 non-leap year = 525,600 minutes
  • SI second defined by cesium-133 transition (since 1967)
  • BIPM lists minute as accepted-for-use-with-SI
  • Pomodoro = 25-minute focused work + 5-minute break

Minute vs second in the SI system

The second is the SI base unit of time. The minute is not part of SI but is on the official list of units accepted for use with SI, alongside the hour, the day, the degree of arc, the litre, and the tonne. NIST and BIPM publications report time in seconds for clarity in physics and chemistry, but minutes and hours remain the everyday currency for everything outside the lab.

The 2019 SI revision tied the second to the cesium frequency 9,192,631,770 Hz, which means the minute is effectively defined as 60 times that frequency. Optical lattice clocks now achieve fractional accuracy of 1 part in 10^18, well beyond the precision a minute needs for civil time. The minute will outlast the cesium definition, which is on track to be replaced by an optical clock standard later this decade.

FAQ

Exactly 60 seconds. The minute is defined by the SI brochure as a non-SI unit accepted for use with SI, equal to 60 seconds. The second itself is defined by the cesium-133 hyperfine transition frequency (9,192,631,770 Hz) since 1967. NIST-F2 in Boulder maintains the US time standard.
60 minutes per hour, 1,440 minutes per day, 10,080 minutes per week. The 60-minute hour comes from Babylonian sexagesimal arithmetic (base 60), preserved through Greek astronomy and adopted by medieval Islamic astronomers and then Europe. The same base-60 system is why a circle has 360 degrees.
Convert the start time to minutes since midnight, add the delta, take modulo 1,440 for the new clock time. Example: 14:35 = 875 minutes; add 90 minutes = 965 minutes = 16:05. The day offset is the integer quotient (875 + 90) divided by 1,440 = 0, so it stays on the same day. The minute calculator handles rollover automatically.
No, but it is accepted for use with SI by BIPM. The SI base unit of time is the second. Minutes, hours, and days are listed in the SI brochure as "non-SI units accepted for use with SI" because they are widely used and unambiguous. Scientific publications usually report time in seconds for clarity.
The classic Pomodoro is 25 minutes of focused work followed by a 5-minute break. After four pomodoros, take a 15-30 minute long break. The technique was developed by Francesco Cirillo in the late 1980s; the name comes from a tomato-shaped kitchen timer (pomodoro is Italian for tomato).
Divide by 60: 90 / 60 = 1.5 hours, or 1 hour 30 minutes. A regulation football match is 90 minutes; a typical feature film is 90-120 minutes. The minute calculator returns both decimal hours (1.500) and the equivalent in seconds (5,400 s).
AM (ante meridiem) is before noon; PM (post meridiem) is after noon. The 12-hour clock counts 12:00 AM at midnight, advances 1, 2, 3... up to 11:59 AM, then 12:00 PM at noon, advances 1 PM through 11:59 PM. The 24-hour clock avoids the ambiguity by counting 00:00 to 23:59 without a marker.
It comes from Babylonian astronomers using a base-60 (sexagesimal) number system. 60 has many divisors (1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, 60), which is convenient for fractions. The system was preserved through Greek and Arabic astronomy, then locked into European time-keeping by the medieval mechanical clock. Decimal time was tried in revolutionary France (10 hours of 100 minutes) but failed within a few years.