back to index Equations Inline Footnotes open import 1Lab.Prelude open import Homotopy.Pushout module Homotopy.Join where The join of typesπ private variable β β' : Level X Y Z : Type β The join of two types A and B is the pushout under the diagram Aβ(AΓB)βB. _β_ : Type β β Type β' β Type (β β β') A β B = Pushout (A Γ B) fst snd pattern join x y i = glue (x , y) i open Homotopy.Pushout using (inl ; inr) public