Clock Angle Calculator
Calculate the angle between clock hands at any time. Shows both the acute and reflex angles with a visual clock face and step-by-step math.
Step-by-step:
How to Calculate Clock Hand Angles
- Enter a time — type hours (1-12) and minutes (0-59). Click "Now" to use the current time.
- Click Calculate — the visual clock and both angles (acute and reflex) update instantly with step-by-step math.
- Quiz mode — test your mental calculation skills with random times. Compete to get the closest answer.
- Reference table — see notable times like 12:00, 3:00, 6:00 with their exact angles.
The Math Behind Clock Angles
The clock angle problem requires understanding the angular velocities of both hands. The minute hand makes a complete revolution every 60 minutes, so it moves at 360/60 = 6 degrees per minute. The hour hand makes a complete revolution every 12 hours (720 minutes), so it moves at 360/720 = 0.5 degrees per minute. The hour hand is never stationary — it continuously advances as minutes pass.
The Formula
For time H:M where H is the hour (1-12, treating 12 as 0) and M is the minute:
- Minute hand position = 6 × M degrees from 12
- Hour hand position = 30 × H + 0.5 × M degrees from 12
- Angle between hands = |hour_position − minute_position|
- Acute angle = min(angle, 360 − angle)
At 3:15: minute = 6×15 = 90°, hour = 30×3 + 0.5×15 = 97.5°. Difference = 7.5°.
Interview Problem
This problem is a classic software engineering interview question. Interviewers use it to test whether candidates can translate a real-world problem into a mathematical model, handle edge cases (12 o'clock treated as 0 to avoid a 360° anomaly), and reason about modular arithmetic. The key insight is recognizing that the hour hand is not frozen at integer positions — it continuously moves as minutes advance.
Interesting Properties
The hands overlap (0° apart) exactly 11 times in each 12-hour period. This surprises many people who expect 12 overlaps. The issue: the hands don't overlap at 1:05, 2:10, etc. — those times are slightly off. Exact overlaps occur every 720/11 ≈ 65.45 minutes. The hands are diametrically opposite (180° apart) also exactly 11 times in 12 hours. The hands form a right angle (90°) 44 times in 12 hours.