SucC
Succ, short for successor, is a function in mathematics and computer science that assigns to each natural number its immediate successor. Commonly written as succ(n) or S(n), it yields n+1. In the Peano axioms for the natural numbers, succ is a primitive operation alongside the constant 0. The axioms state that 0 is a natural number, every natural number has a unique successor, 0 is not the successor of any number, and distinct numbers have distinct successors. From succ, the usual arithmetic operations and the order structure of the natural numbers are defined by recursion and induction.
Properties of succ include that it is injective: if succ(a) = succ(b) then y a = b. In
In programming and formal languages, succ is used as a function that returns the next value in
Overall, succ is a foundational concept for constructing natural numbers, defining arithmetic, and enabling iteration in