Calculateus

Clock Angle Calculator

Calculate the angle between the hour and minute hands of a clock at any given time.

Result

Angle Between Hands
75°

The minute hand moves 6° per minute (360°/60), and the hour hand moves 0.5° per minute (30° per hour, plus a fraction as minutes pass), which is why the hour hand isn't pointing exactly at the hour mark except at :00.

About the Clock Angle Calculator

The Clock Angle Calculator finds the angle formed between a clock's hour and minute hands at any time you choose. Enter an hour from 1 to 12 and a minute from 0 to 59, and it returns the angle between the hands in degrees. It is useful for geometry problems, clock-design questions, and puzzle answers that ask how wide or narrow the hands appear at a given moment.

How It Works

You enter an hour and a minute value. The calculator treats each hand as sweeping around the dial at a constant rate: the minute hand moves 6 degrees per minute, completing a full circle every 60 minutes, while the hour hand moves 0.5 degrees per minute, or 30 degrees per hour, creeping forward gradually rather than jumping at the top of each hour. It finds each hand's position in degrees from the 12 o'clock mark, subtracts to get the raw gap, and if that gap is more than 180 degrees, reports its complement instead, since the two possible angles between the hands always add up to 360 degrees.

minuteAngle = minute x 6; hourAngle = (hour mod 12) x 30 + minute x 0.5; rawAngle = |hourAngle - minuteAngle|; angle = rawAngle if rawAngle <= 180, otherwise 360 - rawAngle.

Examples

3:30

minuteAngle = 30 x 6 = 180. hourAngle = 3 x 30 + 30 x 0.5 = 105. The raw gap is |105 - 180| = 75, which is already under 180, so the answer is 75 degrees.

9:00

minuteAngle = 0. hourAngle = 9 x 30 = 270. The raw gap is 270, which exceeds 180, so the calculator reports 360 - 270 = 90 degrees, the expected right angle at 9:00.

Advantages

  • Gives an exact degree value instantly instead of estimating from a drawn or physical clock face.
  • Covers every hour and minute combination a geometry problem might use, from 1:00 through 12:59.
  • Automatically returns the conventional smaller angle without requiring you to apply the 360-degree reflex rule yourself.

Common Mistakes

  • Assuming the hour hand stays fixed on its number until the next hour, when it actually advances 0.5 degrees every minute.
  • Reporting the larger of the two possible angles between the hands instead of the standard smaller one.
  • Treating hour 12 as a different position from hour 0, when they refer to the same spot on the dial.

Edge Cases to Watch For

  • Entering hour 12 is treated the same as hour 0 internally, since both sit at the same position on the dial.
  • At exactly the top of the hour (minute = 0), the hour hand sits precisely on its number, so the angle is a clean multiple of 30 degrees.
  • Any raw difference beyond 180 degrees is automatically flipped to its complement, since a clock angle is conventionally reported as 180 degrees or less.

Common Use Cases

  • Students working through geometry or trigonometry problems that use clock hands as a worked example.
  • Puzzle and trivia solvers checking their answers to clock-angle brain teasers.
  • Clock and watch designers verifying hand positions when laying out a custom dial.
Written & fact-checked by the Calculateus TeamLast updated August 5, 2026How we verify our formulas

Frequently asked questions

Why does the hour hand move continuously instead of jumping between hour marks?

A real analog clock's hour hand moves gradually throughout each hour rather than jumping instantly at the top of the hour, since it's mechanically geared to advance smoothly alongside the minute hand - this is why at, say, 3:30, the hour hand sits halfway between the 3 and the 4, not still pointing directly at the 3.

Conclusion

The Clock Angle Calculator turns a fiddly geometry exercise into a one-step lookup, using the same constant-rate hand movement a real analog clock follows. Reducing every result to 180 degrees or less keeps the output consistent with how this measurement is conventionally reported.