Documentation

Mathlib.Tactic.CategoryTheory.Reassoc

The reassoc attribute #

Adding @[reassoc] to a lemma named F of shape ∀ .., f = g, where f g : X ⟶ Y in some category will create a new lemma named F_assoc of shape ∀ .. {Z : C} (h : Y ⟶ Z), f ≫ h = g ≫ h but with the conclusions simplified using the axioms for a category (Category.comp_id, Category.id_comp, and Category.assoc).

This is useful for generating lemmas which the simplifier can use even on expressions that are already right associated.

There is also a term elaborator reassoc_of% t for use within proofs.

The Mathlib.Tactic.CategoryTheory.IsoReassoc extends @[reassoc] and reassoc_of% to support creating isomorphism reassociation lemmas.

A variant of eq_whisker with a more convenient argument order for use in tactics.

Simplify an expression using only the axioms of a category.

Equations
    Instances For

      Given an equation f = g between morphisms X ⟶ Y in a category, produce the equation ∀ {Z} (h : Y ⟶ Z), f ≫ h = g ≫ h, but with compositions fully right associated and identities removed. Also returns the category C and any instance metavariables that need to be solved for.

      Equations
        Instances For

          An option to tag the lemma generated by @[reassoc] with to_dual none.

          Equations
            Instances For

              Adding @[reassoc] to a lemma named F of shape ∀ .., f = g, where f g : X ⟶ Y are morphisms in some category, will create a new lemma named F_assoc of shape ∀ .. {Z : C} (h : Y ⟶ Z), f ≫ h = g ≫ h but with the conclusions simplified using the axioms for a category (Category.comp_id, Category.id_comp, and Category.assoc). So, for example, if the conclusion of F is a ≫ b = g then the conclusion of F_assoc will be a ≫ (b ≫ h) = g ≫ h (note that reassociates to the right so the brackets will not appear in the statement).

              This attribute is useful for generating lemmas which the simplifier can use even on expressions that are already right associated.

              Note that if you want both the lemma and the reassociated lemma to be simp lemmas, you should tag the lemma @[reassoc (attr := simp)]. The variant @[simp, reassoc] on a lemma F will tag F with @[simp], but not F_assoc (this is sometimes useful). This can be combined with to_dual in the form @[to_dual (attr := reassoc (attr := simp))], which tags all 4 lemmas with simp, or @[to_dual (attr := simp, reassoc)], which only tags F and its dual with simp.

              If F is tagged with to_dual, then F_assoc will automatically get a @[to_dual none] tag. This also applies when using @[to_dual (attr := reassoc)]. In the rare case that only F_assoc should be tagged with to_dual, use @[reassoc +to_dual].

              This attribute also works for lemmas of shape ∀ .., f = g where f g : X ≅ Y are isomorphisms, provided that Tactic.CategoryTheory.IsoReassoc has been imported.

              Equations
                Instances For

                  Registers a handler for reassocExpr. The handler takes a proof of an equation and returns a proof of the reassociation lemma. Handlers are considered in order of registration. They are applied directly to the equation in the body of the forall.

                  Equations
                    Instances For

                      Reassociates the morphisms in the type of pf using the registered handlers, using reassocExprHom as the default.

                      Returns the proof of the lemma along with instance metavariables that need synthesis.

                      Equations
                        Instances For

                          Version of reassocExpr for the TermElabM monad. Handles instance metavariables automatically.

                          Equations
                            Instances For

                              reassoc_of% t, where t is an equation f = g between morphisms X ⟶ Y in a category (possibly after a binder), produce the equation ∀ {Z} (h : Y ⟶ Z), f ≫ h = g ≫ h, but with compositions fully right associated and identities removed. This also works for equations between isomorphisms, provided that Tactic.CategoryTheory.IsoReassoc has been imported.

                              Equations
                                Instances For