mathlib3 documentation

tactic.omega.nat.preterm

meta inductive omega.nat.exprterm  :

The shadow syntax for arithmetic terms. All constants are reified to cst (e.g., 5 is reified to cst 5) and all other atomic terms are reified to exp (e.g., 5 * (list.length l) is reified to exp 5 \(list.length l)).expaccepts a coefficient of typenat` as its first argument because multiplication by constant is allowed by the omega test.

inductive omega.nat.preterm  :

Similar to exprterm, except that all exprs are now replaced with de Brujin indices of type nat. This is akin to generalizing over the terms represented by the said exprs.

Instances for omega.nat.preterm

Helper tactic for proof by induction over preterms

@[simp]

If variable assignments v and w agree on all variables that occur in term t, the value of t under v and w are identical.

Equations
@[simp]

Return a term (which is in canonical form by definition) that is equivalent to the input preterm

Equations