Loogle!
Result
Found 8 declarations mentioning ProperCone.map.
- ProperCone.map_id š Mathlib.Analysis.Convex.Cone.Basic
{R : Type u_2} {F : Type u_4} [Semiring R] [PartialOrder R] [IsOrderedRing R] [AddCommMonoid F] [TopologicalSpace F] [Module R F] [ContinuousAdd F] [ContinuousConstSMul R F] (C : ProperCone R F) : ProperCone.map (ContinuousLinearMap.id R F) C = C - ProperCone.map š Mathlib.Analysis.Convex.Cone.Basic
{R : Type u_2} {E : Type u_3} {F : Type u_4} [Semiring R] [PartialOrder R] [IsOrderedRing R] [AddCommMonoid E] [TopologicalSpace E] [Module R E] [AddCommMonoid F] [TopologicalSpace F] [Module R F] [ContinuousAdd F] [ContinuousConstSMul R F] (f : E āL[R] F) (C : ProperCone R E) : ProperCone R F - ProperCone.coe_map š Mathlib.Analysis.Convex.Cone.Basic
{R : Type u_2} {E : Type u_3} {F : Type u_4} [Semiring R] [PartialOrder R] [IsOrderedRing R] [AddCommMonoid E] [TopologicalSpace E] [Module R E] [AddCommMonoid F] [TopologicalSpace F] [Module R F] [ContinuousAdd F] [ContinuousConstSMul R F] (f : E āL[R] F) (C : ProperCone R E) : ā(ProperCone.map f C) = (PointedCone.map āf āC).closure - ProperCone.mem_map š Mathlib.Analysis.Convex.Cone.Basic
{R : Type u_2} {E : Type u_3} {F : Type u_4} [Semiring R] [PartialOrder R] [IsOrderedRing R] [AddCommMonoid E] [TopologicalSpace E] [Module R E] [AddCommMonoid F] [TopologicalSpace F] [Module R F] [ContinuousAdd F] [ContinuousConstSMul R F] {f : E āL[R] F} {C : ProperCone R E} {y : F} : y ā ProperCone.map f C ā y ā (PointedCone.map āf āC).closure - ProperCone.map.congr_simp š Mathlib.Analysis.Convex.Cone.InnerDual
{R : Type u_2} {E : Type u_3} {F : Type u_4} [Semiring R] [PartialOrder R] [IsOrderedRing R] [AddCommMonoid E] [TopologicalSpace E] [Module R E] [AddCommMonoid F] [TopologicalSpace F] [Module R F] [ContinuousAdd F] [ContinuousConstSMul R F] (f fā : E āL[R] F) (e_f : f = fā) (C Cā : ProperCone R E) (e_C : C = Cā) : ProperCone.map f C = ProperCone.map fā Cā - ProperCone.relative_hyperplane_separation š Mathlib.Analysis.Convex.Cone.InnerDual
{E : Type u_2} {F : Type u_3} [NormedAddCommGroup E] [InnerProductSpace ā E] [CompleteSpace E] [NormedAddCommGroup F] [InnerProductSpace ā F] [CompleteSpace F] {C : ProperCone ā E} {f : E āL[ā] F} {b : F} : b ā ProperCone.map f C ā ā (y : F), (ContinuousLinearMap.adjoint f) y ā ProperCone.innerDual āC ā 0 ⤠inner ā b y - ProperCone.hyperplane_separation_of_nmem š Mathlib.Analysis.Convex.Cone.InnerDual
{E : Type u_2} {F : Type u_3} [NormedAddCommGroup E] [InnerProductSpace ā E] [CompleteSpace E] [NormedAddCommGroup F] [InnerProductSpace ā F] [CompleteSpace F] (K : ProperCone ā E) {f : E āL[ā] F} {b : F} (disj : b ā ProperCone.map f K) : ā y, (ContinuousLinearMap.adjoint f) y ā ProperCone.innerDual āK ā§ inner ā b y < 0 - ProperCone.hyperplane_separation_of_notMem š Mathlib.Analysis.Convex.Cone.InnerDual
{E : Type u_2} {F : Type u_3} [NormedAddCommGroup E] [InnerProductSpace ā E] [CompleteSpace E] [NormedAddCommGroup F] [InnerProductSpace ā F] [CompleteSpace F] (K : ProperCone ā E) {f : E āL[ā] F} {b : F} (disj : b ā ProperCone.map f K) : ā y, (ContinuousLinearMap.adjoint f) y ā ProperCone.innerDual āK ā§ inner ā b y < 0
About
Loogle searches Lean and Mathlib definitions and theorems.
You can use Loogle from within the Lean4 VSCode language extension
using (by default) Ctrl-K Ctrl-S. 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 ?a
If 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 ?b
By 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_tsum
even though the hypothesisf i < g i
is not the last.
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.
This is Loogle revision ee8c038
serving mathlib revision 6b1d0f0