Definition
Angle arithmetic in Degrees, Minutes, and Seconds (DMS) involves adding or subtracting angular measurements using a base-60 system for sub-degree units.
Why It Matters
DMS is the “legacy code” of navigation and geography. Without the ability to perform arithmetic in this base-60 system, we cannot accurately interpret maps, survey land, or navigate the oceans, where precision in degrees, minutes, and seconds is the difference between arrival and disaster.
Core Concepts
-
Addition:
- Add seconds, minutes, and degrees independently.
- If seconds , subtract 60 from seconds and carry to minutes.
- If minutes , subtract 60 from minutes and carry to degrees.
- If the sum exceeds , subtract to find the result within one revolution.
- How to read: “If seconds are sixty or more, carry one minute; if minutes are sixty or more, carry one degree; and subtract three hundred sixty degrees if needed.”
- Meaning: Same carry logic as clock time (base 60) plus modular reduction mod .
-
Subtraction:
- Subtract seconds, minutes, and degrees independently.
- If the top value has fewer seconds than the bottom, borrow (add ) from minutes.
- If the top value has fewer minutes than the bottom, borrow (add ) from degrees.
- How to read: “Borrow one minute to add sixty seconds; or borrow one degree to add sixty minutes.”
- Meaning: Reverse of addition carry—regroup from higher units to make subtraction possible.