Loogle!
Result
Found 8 declarations mentioning AddMonoidHom.flip.
- AddMonoidHom.flip π Mathlib.Algebra.Group.Hom.Instances
{M : Type uM} {N : Type uN} {P : Type uP} {mM : AddZeroClass M} {mN : AddZeroClass N} {mP : AddCommMonoid P} (f : M β+ N β+ P) : N β+ M β+ P - AddMonoidHom.flip_apply π Mathlib.Algebra.Group.Hom.Instances
{M : Type uM} {N : Type uN} {P : Type uP} {xβ : AddZeroClass M} {xβΒΉ : AddZeroClass N} {xβΒ² : AddCommMonoid P} (f : M β+ N β+ P) (x : M) (y : N) : (f.flip y) x = (f x) y - AddMonoidHom.flipHom_apply π Mathlib.Algebra.Group.Hom.Instances
{M : Type uM} {N : Type uN} {P : Type uP} {xβ : AddZeroClass M} {xβΒΉ : AddZeroClass N} {xβΒ² : AddCommMonoid P} (f : M β+ N β+ P) : AddMonoidHom.flipHom f = f.flip - AddMonoidHom.coe_flip_mul π Mathlib.Algebra.Ring.Basic
{R : Type u_1} [NonUnitalNonAssocSemiring R] : βAddMonoidHom.mul.flip = AddMonoidHom.mulRight - DFinsupp.sumAddHom_comm π Mathlib.Data.DFinsupp.BigOperators
{ΞΉβ : Type u_4} {ΞΉβ : Type u_5} {Ξ²β : ΞΉβ β Type u_1} {Ξ²β : ΞΉβ β Type u_2} {Ξ³ : Type u_3} [DecidableEq ΞΉβ] [DecidableEq ΞΉβ] [(i : ΞΉβ) β AddZeroClass (Ξ²β i)] [(i : ΞΉβ) β AddZeroClass (Ξ²β i)] [AddCommMonoid Ξ³] (fβ : Ξ β (i : ΞΉβ), Ξ²β i) (fβ : Ξ β (i : ΞΉβ), Ξ²β i) (h : (i : ΞΉβ) β (j : ΞΉβ) β Ξ²β i β+ Ξ²β j β+ Ξ³) : (DFinsupp.sumAddHom fun iβ => (DFinsupp.sumAddHom fun iβ => h iβ iβ) fβ) fβ = (DFinsupp.sumAddHom fun iβ => (DFinsupp.sumAddHom fun iβ => (h iβ iβ).flip) fβ) fβ - Finsupp.toFreeAbelianGroup_comp_singleAddHom π Mathlib.Algebra.FreeAbelianGroup.Finsupp
{X : Type u_1} (x : X) : Finsupp.toFreeAbelianGroup.comp (Finsupp.singleAddHom x) = (smulAddHom β€ (FreeAbelianGroup X)).flip (FreeAbelianGroup.of x) - MonoidAlgebra.liftMagma_apply_apply π Mathlib.Algebra.MonoidAlgebra.Basic
(R : Type u_1) {A : Type u_4} {M : Type u_7} [Semiring R] [Mul M] [NonUnitalNonAssocSemiring A] [Module R A] [IsScalarTower R A A] [SMulCommClass R A A] (f : M ββ* A) (aβ : MonoidAlgebra R M) : ((MonoidAlgebra.liftMagma R) f) aβ = (β((Finsupp.liftAddHom fun x => (smulAddHom R A).flip (f x)).comp MonoidAlgebra.coeffAddEquiv.toAddMonoidHom)).toFun aβ - AddMonoidAlgebra.liftMagma_apply_apply π Mathlib.Algebra.MonoidAlgebra.Basic
(R : Type u_1) {A : Type u_4} {M : Type u_7} [Semiring R] [Add M] [NonUnitalNonAssocSemiring A] [Module R A] [IsScalarTower R A A] [SMulCommClass R A A] (f : Multiplicative M ββ* A) (aβ : AddMonoidAlgebra R M) : ((AddMonoidAlgebra.liftMagma R) f) aβ = (β((Finsupp.liftAddHom fun x => (smulAddHom R A).flip (f (Multiplicative.ofAdd x))).comp AddMonoidAlgebra.coeffAddEquiv.toAddMonoidHom)).toFun aβ
About
Loogle searches Lean and Mathlib definitions and theorems.
You can use Loogle from within the Lean4 VSCode language extension
using the Loogle command from the command palette. You can also try the
#loogle command from LeanSearchClient,
the CLI version, the Loogle
VS Code extension, the lean.nvim
integration or the Zulip bot.
Usage
Loogle finds definitions and lemmas in various ways:
By constant:
πReal.sin
finds all lemmas whose statement somehow mentions the sine function.By lemma name substring:
π"differ"
finds all lemmas that have"differ"somewhere in their lemma name.By subexpression:
π_ * (_ ^ _)
finds all lemmas whose statements somewhere include a product where the second argument is raised to some power.The pattern can also be non-linear, as in
πReal.sqrt ?a * Real.sqrt ?aIf the pattern has parameters, they are matched in any order. Both of these will find
List.map:
π(?a -> ?b) -> List ?a -> List ?b
πList ?a -> (?a -> ?b) -> List ?bBy main conclusion:
π|- tsum _ = _ * tsum _
finds all lemmas where the conclusion (the subexpression to the right of allβandβ) has the given shape.As before, if the pattern has parameters, they are matched against the hypotheses of the lemma in any order; for example,
π|- _ < _ β tsum _ < tsum _
will findtsum_lt_tsumeven though the hypothesisf i < g iis not the last.You can filter for definitions vs theorems: Using
β’ (_ : Type _)finds all definitions which provide data whileβ’ (_ : Prop)finds all theorems (and definitions of proofs).
If you pass more than one such search filter, separated by commas
Loogle will return lemmas which match all of them. The
search
π Real.sin, "two", tsum, _ * _, _ ^ _, |- _ < _ β _
would find all lemmas which mention the constants Real.sin
and tsum, have "two" as a substring of the
lemma name, include a product and a power somewhere in the type,
and have a hypothesis of the form _ < _ (if
there were any such lemmas). Metavariables (?a) are
assigned independently in each filter.
The #lucky button will directly send you to the
documentation of the first hit.
Source code
You can find the source code for this service at https://github.com/nomeata/loogle. The https://loogle.lean-lang.org/ service is provided by the Lean FRO. Please review the Lean FRO Terms of Use and Privacy Policy.
This is Loogle revision 9f11169 serving mathlib revision ce5dd8c