Inequality on W-types
module trees.inequality-w-types where
Imports
open import elementary-number-theory.natural-numbers open import foundation.dependent-pair-types open import foundation.empty-types open import foundation.identity-types open import foundation.negation open import foundation.universe-levels open import trees.elementhood-relation-w-types open import trees.w-types
Idea
The elementhood relation on W-types induces a strict ordering.
Definition
Strict inequality on W-types
module _ {l1 l2 : Level} {A : UU l1} {B : A → UU l2} where data _<-𝕎_ (x : 𝕎 A B) : 𝕎 A B → UU (l1 ⊔ l2) where le-∈-𝕎 : {y : 𝕎 A B} → x ∈-𝕎 y → x <-𝕎 y propagate-le-𝕎 : {y z : 𝕎 A B} → y ∈-𝕎 z → x <-𝕎 y → x <-𝕎 z
Inequality on W-types
module _ {l1 l2 : Level} {A : UU l1} {B : A → UU l2} where data _≤-𝕎_ (x : 𝕎 A B) : 𝕎 A B → UU (l1 ⊔ l2) where refl-leq-𝕎 : x ≤-𝕎 x propagate-leq-𝕎 : {y z : 𝕎 A B} → y ∈-𝕎 z → x ≤-𝕎 y → x ≤-𝕎 z leq-∈-𝕎 : {x y : 𝕎 A B} → x ∈-𝕎 y → x ≤-𝕎 y leq-∈-𝕎 H = propagate-leq-𝕎 H refl-leq-𝕎
Walks in W-types
module _ {l1 l2 : Level} {A : UU l1} {B : A → UU l2} where data walk-𝕎 : 𝕎 A B → UU (l1 ⊔ l2) where root : (w : 𝕎 A B) → walk-𝕎 w cons : (a : A) (f : B a → 𝕎 A B) (b : B a) → walk-𝕎 (f b) → walk-𝕎 (tree-𝕎 a f) length-walk-𝕎 : (w : 𝕎 A B) → walk-𝕎 w → ℕ length-walk-𝕎 w (root .w) = zero-ℕ length-walk-𝕎 .(tree-𝕎 a f) (cons a f b p) = succ-ℕ (length-walk-𝕎 (f b) p)
Properties
The strict ordering on W-types is transitive
module _ {l1 l2 : Level} {A : UU l1} {B : A → UU l2} where transitive-le-𝕎 : {x y z : 𝕎 A B} → y <-𝕎 z → x <-𝕎 y → x <-𝕎 z transitive-le-𝕎 {x = x} {y} {z} (le-∈-𝕎 H) K = propagate-le-𝕎 H K transitive-le-𝕎 {x = x} {y} {z} (propagate-le-𝕎 L H) K = propagate-le-𝕎 L (transitive-le-𝕎 H K)
The strict ordering on W-types is irreflexive
module _ {l1 l2 : Level} {A : UU l1} {B : A → UU l2} where irreflexive-le-𝕎 : {x : 𝕎 A B} → ¬ (x <-𝕎 x) irreflexive-le-𝕎 {x = x} (le-∈-𝕎 H) = irreflexive-∈-𝕎 x H irreflexive-le-𝕎 {x = tree-𝕎 x α} (propagate-le-𝕎 (pair b refl) H) = irreflexive-le-𝕎 {x = α b} (transitive-le-𝕎 H (le-∈-𝕎 (pair b refl)))
The strict ordering on W-types is asymmetric
module _ {l1 l2 : Level} {A : UU l1} {B : A → UU l2} where asymmetric-le-𝕎 : {x y : 𝕎 A B} → x <-𝕎 y → y <-𝕎 x → empty asymmetric-le-𝕎 H K = irreflexive-le-𝕎 (transitive-le-𝕎 H K)
Transitivity of ≤-𝕎
module _ {l1 l2 : Level} {A : UU l1} {B : A → UU l2} where transitive-leq-𝕎 : {x y z : 𝕎 A B} → x ≤-𝕎 y → y ≤-𝕎 z → x ≤-𝕎 z transitive-leq-𝕎 H refl-leq-𝕎 = H transitive-leq-𝕎 H (propagate-leq-𝕎 e K) = propagate-leq-𝕎 e (transitive-leq-𝕎 H K)