schema_version = 1
law = "idempotent"
variant = "Idempotent"
natural_language = "Combining a value with itself returns that value."
mathematical_statement = "forall a . f(a, a) = a"
preconditions = ["f is binary", "a is a valid U32 input"]
postcondition = "f(a, a) == a"
citation = "SPEC.md#algebraic-laws"
[[variables]]
name = "a"
type = "u32"
role = "input"