Commuting 3-simplices of maps

Content created by Fredrik Bakke and Egbert Rijke.

Created on 2023-02-18.
Last modified on 2023-09-12.

module foundation.commuting-3-simplices-of-maps where
Imports
open import foundation.universe-levels

open import foundation-core.commuting-triangles-of-maps
open import foundation-core.homotopies
open import foundation-core.whiskering-homotopies

Idea

A commuting 3-simplex is a commuting diagram of the form

  A ----------> B
  |  \       ^  |
  |    \   /    |
  |      /      |
  |    /   \    |
  V  /       v  V
  X ----------> Y.

Definition

module _
  {l1 l2 l3 l4 : Level} {A : UU l1} {B : UU l2} {X : UU l3} {Y : UU l4}
  (top : A  B) (left : A  X) (right : B  Y) (bottom : X  Y)
  (diagonal-up : X  B) (diagonal-down : A  Y)
  (upper-left : coherence-triangle-maps top diagonal-up left)
  (lower-right : coherence-triangle-maps bottom right diagonal-up)
  (upper-right : coherence-triangle-maps diagonal-down right top)
  (lower-left : coherence-triangle-maps diagonal-down bottom left)
  where

  coherence-3-simplex-maps : UU (l1  l4)
  coherence-3-simplex-maps =
    ( upper-right ∙h (right ·l upper-left)) ~
    ( lower-left ∙h (lower-right ·r left))

  coherence-3-simplex-maps' : UU (l1  l4)
  coherence-3-simplex-maps' =
    ( lower-left ∙h (lower-right ·r left)) ~
    ( upper-right ∙h (right ·l upper-left))

Recent changes