state
stringlengths
0
159k
srcUpToTactic
stringlengths
387
167k
nextTactic
stringlengths
3
9k
declUpToTactic
stringlengths
22
11.5k
declId
stringlengths
38
95
decl
stringlengths
16
1.89k
file_tag
stringlengths
17
73
case h.e'_3 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy✝ : x ≤ y hxy : x < y hxa : x < a hya : y > a ⊢ -(f x - f a) / -(x - a) = (f a - f x) / (a - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem ConvexOn.secant_mono (hf : ConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x ≤ y) : (f x - f a) / (x - a) ≤ (f y - f a) / (y - a) := by rcases eq_or_lt_of_le hxy with (rfl | hxy) · simp cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_...
Mathlib.Analysis.Convex.Slope.266_0.2UqTeSfXEWgn9kZ
theorem ConvexOn.secant_mono (hf : ConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x ≤ y) : (f x - f a) / (x - a) ≤ (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case inr.inr 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya : y ≠ a hxy✝ : x ≤ y hxy : x < y hxa : x > a ⊢ (f x - f a) / (x - a) ≤ (f y - f a) / (y - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
exact hf.secant_mono_aux2 ha hy hxa hxy
theorem ConvexOn.secant_mono (hf : ConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x ≤ y) : (f x - f a) / (x - a) ≤ (f y - f a) / (y - a) := by rcases eq_or_lt_of_le hxy with (rfl | hxy) · simp cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_...
Mathlib.Analysis.Convex.Slope.266_0.2UqTeSfXEWgn9kZ
theorem ConvexOn.secant_mono (hf : ConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x ≤ y) : (f x - f a) / (x - a) ≤ (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z ⊢ (z - x) * f y < (z - y) * f x + (y - x) * f z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have hxy' : 0 < y - x := by linarith
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z ⊢ 0 < y - x
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x ⊢ (z - x) * f y < (z - y) * f x + (y - x) * f z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have hyz' : 0 < z - y := by linarith
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x ⊢ 0 < z - y
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y ⊢ (z - x) * f y < (z - y) * f x + (y - x) * f z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have hxz' : 0 < z - x := by linarith
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y ⊢ 0 < z - x
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ⊢ (z - x) * f y < (z - y) * f x + (y - x) * f z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [← lt_div_iff' hxz']
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ⊢ f y < ((z - y) * f x + (y - x) * f z) / (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have ha : 0 < (z - y) / (z - x) := by positivity
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ⊢ 0 < (z - y) / (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
positivity
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) ⊢ f y < ((z - y) * f x + (y - x) * f z) / (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have hb : 0 < (y - x) / (z - x) := by positivity
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) ⊢ 0 < (y - x) / (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
positivity
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) hb : 0 < (y - x) / (z - x) ⊢ f y < ((z - y) * f x + (y - x) * f z) / (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
calc f y = f ((z - y) / (z - x) * x + (y - x) / (z - x) * z) := ?_ _ < (z - y) / (z - x) * f x + (y - x) / (z - x) * f z := (hf.2 hx hz (by linarith) ha hb ?_) _ = ((z - y) * f x + (y - x) * f z) / (z - x) := ?_
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) hb : 0 < (y - x) / (z - x) ⊢ x ≠ z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
case calc_1 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) hb : 0 < (y - x) / (z - x) ⊢ f y = f ((z - y) / (z - x) * x + (y - x) / (z - x)...
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
congr 1
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
case calc_1.e_a 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) hb : 0 < (y - x) / (z - x) ⊢ y = (z - y) / (z - x) * x + (y - x) / (z - x) ...
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
case calc_1.e_a 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) hb : 0 < (y - x) / (z - x) ⊢ y * (z - x) = (z - y) * x + (y - x) * z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
ring
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
case calc_2 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) hb : 0 < (y - x) / (z - x) ⊢ Div.div (z - y) (z - x) + Div.div (y - x) (z - x) ...
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
show (z - y) / (z - x) + (y - x) / (z - x) = 1
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
case calc_2 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) hb : 0 < (y - x) / (z - x) ⊢ (z - y) / (z - x) + (y - x) / (z - x) = 1
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
case calc_3 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hyz' : 0 < z - y hxz' : 0 < z - x ha : 0 < (z - y) / (z - x) hb : 0 < (y - x) / (z - x) ⊢ (z - y) / (z - x) * f x + (y - x) / (z - x) * f z ...
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z := by have hxy' : 0 < y - x := by linarith have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith ...
Mathlib.Analysis.Convex.Slope.279_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux1 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (z - x) * f y < (z - y) * f x + (y - x) * f z
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z ⊢ (f y - f x) / (y - x) < (f z - f x) / (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have hxy' : 0 < y - x := by linarith
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x) := by
Mathlib.Analysis.Convex.Slope.300_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z ⊢ 0 < y - x
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x) := by have hxy' : 0 < y - x := by
Mathlib.Analysis.Convex.Slope.300_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x ⊢ (f y - f x) / (y - x) < (f z - f x) / (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have hxz' : 0 < z - x := by linarith
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x) := by have hxy' : 0 < y - x := by linarith
Mathlib.Analysis.Convex.Slope.300_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x ⊢ 0 < z - x
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x) := by have hxy' : 0 < y - x := by linarith have hxz' : 0 < z - x := by
Mathlib.Analysis.Convex.Slope.300_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hxz' : 0 < z - x ⊢ (f y - f x) / (y - x) < (f z - f x) / (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [div_lt_div_iff hxy' hxz']
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x) := by have hxy' : 0 < y - x := by linarith have hxz' : 0 < z - x := by linarith
Mathlib.Analysis.Convex.Slope.300_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hxy' : 0 < y - x hxz' : 0 < z - x ⊢ (f y - f x) * (z - x) < (f z - f x) * (y - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith only [hf.secant_strict_mono_aux1 hx hz hxy hyz]
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x) := by have hxy' : 0 < y - x := by linarith have hxz' : 0 < z - x := by linarith rw [div_lt_div_iff hxy' hxz']
Mathlib.Analysis.Convex.Slope.300_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux2 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f y - f x) / (y - x) < (f z - f x) / (z - x)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z ⊢ (f z - f x) / (z - x) < (f z - f y) / (z - y)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have hyz' : 0 < z - y := by linarith
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y) := by
Mathlib.Analysis.Convex.Slope.308_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z ⊢ 0 < z - y
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y) := by have hyz' : 0 < z - y := by
Mathlib.Analysis.Convex.Slope.308_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hyz' : 0 < z - y ⊢ (f z - f x) / (z - x) < (f z - f y) / (z - y)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have hxz' : 0 < z - x := by linarith
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y) := by have hyz' : 0 < z - y := by linarith
Mathlib.Analysis.Convex.Slope.308_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hyz' : 0 < z - y ⊢ 0 < z - x
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y) := by have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by
Mathlib.Analysis.Convex.Slope.308_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hyz' : 0 < z - y hxz' : 0 < z - x ⊢ (f z - f x) / (z - x) < (f z - f y) / (z - y)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [div_lt_div_iff hxz' hyz']
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y) := by have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith
Mathlib.Analysis.Convex.Slope.308_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f x y z : 𝕜 hx : x ∈ s hz : z ∈ s hxy : x < y hyz : y < z hyz' : 0 < z - y hxz' : 0 < z - x ⊢ (f z - f x) * (z - y) < (f z - f y) * (z - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
linarith only [hf.secant_strict_mono_aux1 hx hz hxy hyz]
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y) := by have hyz' : 0 < z - y := by linarith have hxz' : 0 < z - x := by linarith rw [div_lt_div_iff hxz' hyz']
Mathlib.Analysis.Convex.Slope.308_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono_aux3 (hf : StrictConvexOn 𝕜 s f) {x y z : 𝕜} (hx : x ∈ s) (hz : z ∈ s) (hxy : x < y) (hyz : y < z) : (f z - f x) / (z - x) < (f z - f y) / (z - y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y ⊢ (f x - f a) / (x - a) < (f y - f a) / (y - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
cases' lt_or_gt_of_ne hxa with hxa hxa
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case inl 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya : y ≠ a hxy : x < y hxa : x < a ⊢ (f x - f a) / (x - a) < (f y - f a) / (y - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
cases' lt_or_gt_of_ne hya with hya hya
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa ·
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case inl.inl 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy : x < y hxa : x < a hya : y < a ⊢ (f x - f a) / (x - a) < (f y - f a) / (y - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
convert hf.secant_strict_mono_aux3 hx ha hxy hya using 1
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya ·
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case h.e'_3 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy : x < y hxa : x < a hya : y < a ⊢ (f x - f a) / (x - a) = (f a - f x) / (a - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [← neg_div_neg_eq]
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya · con...
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case h.e'_4 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy : x < y hxa : x < a hya : y < a ⊢ (f y - f a) / (y - a) = (f a - f y) / (a - y)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [← neg_div_neg_eq]
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya · con...
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case h.e'_3 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy : x < y hxa : x < a hya : y < a ⊢ -(f x - f a) / -(x - a) = (f a - f x) / (a - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya · con...
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case h.e'_4 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy : x < y hxa : x < a hya : y < a ⊢ -(f y - f a) / -(y - a) = (f a - f y) / (a - y)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya · con...
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case inl.inr 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy : x < y hxa : x < a hya : y > a ⊢ (f x - f a) / (x - a) < (f y - f a) / (y - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
convert hf.slope_strict_mono_adjacent hx hy hxa hya using 1
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya · con...
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case h.e'_3 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy : x < y hxa : x < a hya : y > a ⊢ (f x - f a) / (x - a) = (f a - f x) / (a - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [← neg_div_neg_eq]
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya · con...
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case h.e'_3 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya✝ : y ≠ a hxy : x < y hxa : x < a hya : y > a ⊢ -(f x - f a) / -(x - a) = (f a - f x) / (a - x)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya · con...
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
case inr 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConvexOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa✝ : x ≠ a hya : y ≠ a hxy : x < y hxa : x > a ⊢ (f x - f a) / (x - a) < (f y - f a) / (y - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
exact hf.secant_strict_mono_aux2 ha hy hxa hxy
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a) := by cases' lt_or_gt_of_ne hxa with hxa hxa · cases' lt_or_gt_of_ne hya with hya hya · con...
Mathlib.Analysis.Convex.Slope.316_0.2UqTeSfXEWgn9kZ
theorem StrictConvexOn.secant_strict_mono (hf : StrictConvexOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f x - f a) / (x - a) < (f y - f a) / (y - a)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConcaveOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y ⊢ (f y - f a) / (y - a) < (f x - f a) / (x - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have key := hf.neg.secant_strict_mono ha hx hy hxa hya hxy
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a) := by
Mathlib.Analysis.Convex.Slope.328_0.2UqTeSfXEWgn9kZ
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConcaveOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y key : ((-f) x - (-f) a) / (x - a) < ((-f) y - (-f) a) / (y - a) ⊢ (f y - f a) / (y - a) < (f x - f a) / (x - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
simp only [Pi.neg_apply] at key
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a) := by have key := hf.neg.secant_strict_mono ha hx hy hxa hya hxy
Mathlib.Analysis.Convex.Slope.328_0.2UqTeSfXEWgn9kZ
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConcaveOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y key : (-f x - -f a) / (x - a) < (-f y - -f a) / (y - a) ⊢ (f y - f a) / (y - a) < (f x - f a) / (x - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [← neg_lt_neg_iff]
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a) := by have key := hf.neg.secant_strict_mono ha hx hy hxa hya hxy simp only [Pi.neg_apply] at ...
Mathlib.Analysis.Convex.Slope.328_0.2UqTeSfXEWgn9kZ
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConcaveOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y key : (-f x - -f a) / (x - a) < (-f y - -f a) / (y - a) ⊢ -((f x - f a) / (x - a)) < -((f y - f a) / (y - a))
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
convert key using 1
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a) := by have key := hf.neg.secant_strict_mono ha hx hy hxa hya hxy simp only [Pi.neg_apply] at ...
Mathlib.Analysis.Convex.Slope.328_0.2UqTeSfXEWgn9kZ
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a)
Mathlib_Analysis_Convex_Slope
case h.e'_3 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConcaveOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y key : (-f x - -f a) / (x - a) < (-f y - -f a) / (y - a) ⊢ -((f x - f a) / (x - a)) = (-f x - -f a) / (x - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a) := by have key := hf.neg.secant_strict_mono ha hx hy hxa hya hxy simp only [Pi.neg_apply] at ...
Mathlib.Analysis.Convex.Slope.328_0.2UqTeSfXEWgn9kZ
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a)
Mathlib_Analysis_Convex_Slope
case h.e'_4 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConcaveOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y key : (-f x - -f a) / (x - a) < (-f y - -f a) / (y - a) ⊢ -((f y - f a) / (y - a)) = (-f y - -f a) / (y - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
field_simp
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a) := by have key := hf.neg.secant_strict_mono ha hx hy hxa hya hxy simp only [Pi.neg_apply] at ...
Mathlib.Analysis.Convex.Slope.328_0.2UqTeSfXEWgn9kZ
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a)
Mathlib_Analysis_Convex_Slope
case h.e'_3 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConcaveOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y key : (-f x - -f a) / (x - a) < (-f y - -f a) / (y - a) ⊢ (f a - f x) / (x - a) = (-f x + f a) / (x - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
ring
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a) := by have key := hf.neg.secant_strict_mono ha hx hy hxa hya hxy simp only [Pi.neg_apply] at ...
Mathlib.Analysis.Convex.Slope.328_0.2UqTeSfXEWgn9kZ
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a)
Mathlib_Analysis_Convex_Slope
case h.e'_4 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : StrictConcaveOn 𝕜 s f a x y : 𝕜 ha : a ∈ s hx : x ∈ s hy : y ∈ s hxa : x ≠ a hya : y ≠ a hxy : x < y key : (-f x - -f a) / (x - a) < (-f y - -f a) / (y - a) ⊢ (f a - f y) / (y - a) = (-f y + f a) / (y - a)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
ring
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a) := by have key := hf.neg.secant_strict_mono ha hx hy hxa hya hxy simp only [Pi.neg_apply] at ...
Mathlib.Analysis.Convex.Slope.328_0.2UqTeSfXEWgn9kZ
theorem StrictConcaveOn.secant_strict_mono (hf : StrictConcaveOn 𝕜 s f) {a x y : 𝕜} (ha : a ∈ s) (hx : x ∈ s) (hy : y ∈ s) (hxa : x ≠ a) (hya : y ≠ a) (hxy : x < y) : (f y - f a) / (y - a) < (f x - f a) / (x - a)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y ⊢ StrictMonoOn f (s ∩ Set.Ici y)
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
intro u hu v hv huv
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v ⊢ f u < f v
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
have step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z := by intros z hz refine hf.lt_right_of_left_lt hx hz.1 ?_ hxy' rw [openSegment_eq_Ioo (hxy.trans hz.2)] exact ⟨hxy, hz.2⟩
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v ⊢ ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
intros z hz
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v z : 𝕜 hz : z ∈ s ∩ Set.Ioi y ⊢ f y < f z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
refine hf.lt_right_of_left_lt hx hz.1 ?_ hxy'
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v z : 𝕜 hz : z ∈ s ∩ Set.Ioi y ⊢ y ∈ openSegment 𝕜 x z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [openSegment_eq_Ioo (hxy.trans hz.2)]
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v z : 𝕜 hz : z ∈ s ∩ Set.Ioi y ⊢ y ∈ Set.Ioo x z
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
exact ⟨hxy, hz.2⟩
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z ⊢ f u < f v
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rcases eq_or_lt_of_le hu.2 with (rfl | hu2)
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
case inl 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y v : 𝕜 hv : v ∈ s ∩ Set.Ici y step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z hu : y ∈ s ∩ Set.Ici y huv : y < v ⊢ f y < f v
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
exact step1 ⟨hv.1, huv⟩
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
case inr 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z hu2 : y < u ⊢ f u < f v
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
refine' hf.lt_right_of_left_lt _ hv.1 _ (step1 ⟨hu.1, hu2⟩)
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
case inr.refine'_1 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z hu2 : y < u ⊢ y ∈ s
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
apply hf.1.segment_subset hx hu.1
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
case inr.refine'_1.a 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z hu2 : y < u ⊢ y ∈ segment 𝕜 x u
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [segment_eq_Icc (hxy.le.trans hu.2)]
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
case inr.refine'_1.a 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z hu2 : y < u ⊢ y ∈ Set.Icc x u
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
exact ⟨hxy.le, hu.2⟩
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
case inr.refine'_2 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z hu2 : y < u ⊢ u ∈ openSegment 𝕜 y v
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
rw [openSegment_eq_Ioo (hu2.trans huv)]
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
case inr.refine'_2 𝕜 : Type u_1 inst✝ : LinearOrderedField 𝕜 s : Set 𝕜 f : 𝕜 → 𝕜 hf : ConvexOn 𝕜 s f x y : 𝕜 hx : x ∈ s hxy : x < y hxy' : f x < f y u : 𝕜 hu : u ∈ s ∩ Set.Ici y v : 𝕜 hv : v ∈ s ∩ Set.Ici y huv : u < v step1 : ∀ {z : 𝕜}, z ∈ s ∩ Set.Ioi y → f y < f z hu2 : y < u ⊢ u ∈ Set.Ioo y v
/- Copyright (c) 2021 Yury Kudriashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudriashov, Malo Jaffré -/ import Mathlib.Analysis.Convex.Function import Mathlib.Tactic.FieldSimp import Mathlib.Tactic.Linarith #align_import analysis.convex.slope from "leanp...
exact ⟨hu2, huv⟩
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y) := by ...
Mathlib.Analysis.Convex.Slope.337_0.2UqTeSfXEWgn9kZ
/-- If `f` is convex on a set `s` in a linearly ordered field, and `f x < f y` for two points `x < y` in `s`, then `f` is strictly monotone on `s ∩ [y, ∞)`. -/ theorem ConvexOn.strict_mono_of_lt (hf : ConvexOn 𝕜 s f) {x y : 𝕜} (hx : x ∈ s) (hxy : x < y) (hxy' : f x < f y) : StrictMonoOn f (s ∩ Set.Ici y)
Mathlib_Analysis_Convex_Slope
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ s t : Compacts α h : s.carrier = t.carrier ⊢ s = t
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
cases s
instance : SetLike (Compacts α) α where coe := Compacts.carrier coe_injective' s t h := by
Mathlib.Topology.Sets.Compacts.43_0.XVs1udLPbHOIEoW
instance : SetLike (Compacts α) α where coe
Mathlib_Topology_Sets_Compacts
case mk α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ t : Compacts α carrier✝ : Set α isCompact'✝ : IsCompact carrier✝ h : { carrier := carrier✝, isCompact' := isCompact'✝ }.carrier = t.carrier ⊢ { carrier := carrier✝, isCompact' := isCompact'✝...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
cases t
instance : SetLike (Compacts α) α where coe := Compacts.carrier coe_injective' s t h := by cases s;
Mathlib.Topology.Sets.Compacts.43_0.XVs1udLPbHOIEoW
instance : SetLike (Compacts α) α where coe
Mathlib_Topology_Sets_Compacts
case mk.mk α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ carrier✝¹ : Set α isCompact'✝¹ : IsCompact carrier✝¹ carrier✝ : Set α isCompact'✝ : IsCompact carrier✝ h : { carrier := carrier✝¹, isCompact' := isCompact'✝¹ }.carrier = { carrier :...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
congr
instance : SetLike (Compacts α) α where coe := Compacts.carrier coe_injective' s t h := by cases s; cases t;
Mathlib.Topology.Sets.Compacts.43_0.XVs1udLPbHOIEoW
instance : SetLike (Compacts α) α where coe
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ ι : Type u_4 s : Finset ι f : ι → Compacts α ⊢ ↑(Finset.sup s f) = Finset.sup s fun i => ↑(f i)
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
refine Finset.cons_induction_on s rfl fun a s _ h => ?_
@[simp] theorem coe_finset_sup {ι : Type*} {s : Finset ι} {f : ι → Compacts α} : (↑(s.sup f) : Set α) = s.sup fun i => ↑(f i) := by
Mathlib.Topology.Sets.Compacts.123_0.XVs1udLPbHOIEoW
@[simp] theorem coe_finset_sup {ι : Type*} {s : Finset ι} {f : ι → Compacts α} : (↑(s.sup f) : Set α) = s.sup fun i => ↑(f i)
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ ι : Type u_4 s✝ : Finset ι f : ι → Compacts α a : ι s : Finset ι x✝ : a ∉ s h : ↑(Finset.sup s f) = Finset.sup s fun i => ↑(f i) ⊢ ↑(Finset.sup (Finset.cons a s x✝) f) = Finset.sup (Finset.cons a s ...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
simp_rw [Finset.sup_cons, coe_sup, sup_eq_union]
@[simp] theorem coe_finset_sup {ι : Type*} {s : Finset ι} {f : ι → Compacts α} : (↑(s.sup f) : Set α) = s.sup fun i => ↑(f i) := by refine Finset.cons_induction_on s rfl fun a s _ h => ?_
Mathlib.Topology.Sets.Compacts.123_0.XVs1udLPbHOIEoW
@[simp] theorem coe_finset_sup {ι : Type*} {s : Finset ι} {f : ι → Compacts α} : (↑(s.sup f) : Set α) = s.sup fun i => ↑(f i)
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ ι : Type u_4 s✝ : Finset ι f : ι → Compacts α a : ι s : Finset ι x✝ : a ∉ s h : ↑(Finset.sup s f) = Finset.sup s fun i => ↑(f i) ⊢ ↑(f a) ∪ ↑(Finset.sup s f) = ↑(f a) ∪ Finset.sup s fun i => ↑(f i)
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
congr
@[simp] theorem coe_finset_sup {ι : Type*} {s : Finset ι} {f : ι → Compacts α} : (↑(s.sup f) : Set α) = s.sup fun i => ↑(f i) := by refine Finset.cons_induction_on s rfl fun a s _ h => ?_ simp_rw [Finset.sup_cons, coe_sup, sup_eq_union]
Mathlib.Topology.Sets.Compacts.123_0.XVs1udLPbHOIEoW
@[simp] theorem coe_finset_sup {ι : Type*} {s : Finset ι} {f : ι → Compacts α} : (↑(s.sup f) : Set α) = s.sup fun i => ↑(f i)
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ f : α ≃ₜ β s : Compacts α ⊢ Compacts.map ⇑(Homeomorph.symm f) (_ : Continuous ⇑(Homeomorph.symm f)) (Compacts.map ⇑f (_ : Continuous ⇑f) s) = s
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
ext1
/-- A homeomorphism induces an equivalence on compact sets, by taking the image. -/ @[simps] protected def equiv (f : α ≃ₜ β) : Compacts α ≃ Compacts β where toFun := Compacts.map f f.continuous invFun := Compacts.map _ f.symm.continuous left_inv s := by
Mathlib.Topology.Sets.Compacts.151_0.XVs1udLPbHOIEoW
/-- A homeomorphism induces an equivalence on compact sets, by taking the image. -/ @[simps] protected def equiv (f : α ≃ₜ β) : Compacts α ≃ Compacts β where toFun
Mathlib_Topology_Sets_Compacts
case h α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ f : α ≃ₜ β s : Compacts α ⊢ ↑(Compacts.map ⇑(Homeomorph.symm f) (_ : Continuous ⇑(Homeomorph.symm f)) (Compacts.map ⇑f (_ : Continuous ⇑f) s)) = ↑s
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
simp only [coe_map, ← image_comp, f.symm_comp_self, image_id]
/-- A homeomorphism induces an equivalence on compact sets, by taking the image. -/ @[simps] protected def equiv (f : α ≃ₜ β) : Compacts α ≃ Compacts β where toFun := Compacts.map f f.continuous invFun := Compacts.map _ f.symm.continuous left_inv s := by ext1
Mathlib.Topology.Sets.Compacts.151_0.XVs1udLPbHOIEoW
/-- A homeomorphism induces an equivalence on compact sets, by taking the image. -/ @[simps] protected def equiv (f : α ≃ₜ β) : Compacts α ≃ Compacts β where toFun
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ f : α ≃ₜ β s : Compacts β ⊢ Compacts.map ⇑f (_ : Continuous ⇑f) (Compacts.map ⇑(Homeomorph.symm f) (_ : Continuous ⇑(Homeomorph.symm f)) s) = s
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
ext1
/-- A homeomorphism induces an equivalence on compact sets, by taking the image. -/ @[simps] protected def equiv (f : α ≃ₜ β) : Compacts α ≃ Compacts β where toFun := Compacts.map f f.continuous invFun := Compacts.map _ f.symm.continuous left_inv s := by ext1 simp only [coe_map, ← image_comp, f.symm_comp_...
Mathlib.Topology.Sets.Compacts.151_0.XVs1udLPbHOIEoW
/-- A homeomorphism induces an equivalence on compact sets, by taking the image. -/ @[simps] protected def equiv (f : α ≃ₜ β) : Compacts α ≃ Compacts β where toFun
Mathlib_Topology_Sets_Compacts
case h α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ f : α ≃ₜ β s : Compacts β ⊢ ↑(Compacts.map ⇑f (_ : Continuous ⇑f) (Compacts.map ⇑(Homeomorph.symm f) (_ : Continuous ⇑(Homeomorph.symm f)) s)) = ↑s
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
simp only [coe_map, ← image_comp, f.self_comp_symm, image_id]
/-- A homeomorphism induces an equivalence on compact sets, by taking the image. -/ @[simps] protected def equiv (f : α ≃ₜ β) : Compacts α ≃ Compacts β where toFun := Compacts.map f f.continuous invFun := Compacts.map _ f.symm.continuous left_inv s := by ext1 simp only [coe_map, ← image_comp, f.symm_comp_...
Mathlib.Topology.Sets.Compacts.151_0.XVs1udLPbHOIEoW
/-- A homeomorphism induces an equivalence on compact sets, by taking the image. -/ @[simps] protected def equiv (f : α ≃ₜ β) : Compacts α ≃ Compacts β where toFun
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ s t : NonemptyCompacts α h : (fun s => s.carrier) s = (fun s => s.carrier) t ⊢ s = t
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
obtain ⟨⟨_, _⟩, _⟩ := s
instance : SetLike (NonemptyCompacts α) α where coe s := s.carrier coe_injective' s t h := by
Mathlib.Topology.Sets.Compacts.213_0.XVs1udLPbHOIEoW
instance : SetLike (NonemptyCompacts α) α where coe s
Mathlib_Topology_Sets_Compacts
case mk.mk α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ t : NonemptyCompacts α carrier✝ : Set α isCompact'✝ : IsCompact carrier✝ nonempty'✝ : Set.Nonempty { carrier := carrier✝, isCompact' := isCompact'✝ }.carrier h : (fun s => s.carrier) { ...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
obtain ⟨⟨_, _⟩, _⟩ := t
instance : SetLike (NonemptyCompacts α) α where coe s := s.carrier coe_injective' s t h := by obtain ⟨⟨_, _⟩, _⟩ := s
Mathlib.Topology.Sets.Compacts.213_0.XVs1udLPbHOIEoW
instance : SetLike (NonemptyCompacts α) α where coe s
Mathlib_Topology_Sets_Compacts
case mk.mk.mk.mk α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ carrier✝¹ : Set α isCompact'✝¹ : IsCompact carrier✝¹ nonempty'✝¹ : Set.Nonempty { carrier := carrier✝¹, isCompact' := isCompact'✝¹ }.carrier carrier✝ : Set α isCompact'✝ : IsCompact...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
congr
instance : SetLike (NonemptyCompacts α) α where coe s := s.carrier coe_injective' s t h := by obtain ⟨⟨_, _⟩, _⟩ := s obtain ⟨⟨_, _⟩, _⟩ := t
Mathlib.Topology.Sets.Compacts.213_0.XVs1udLPbHOIEoW
instance : SetLike (NonemptyCompacts α) α where coe s
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ s t : PositiveCompacts α h : (fun s => s.carrier) s = (fun s => s.carrier) t ⊢ s = t
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
obtain ⟨⟨_, _⟩, _⟩ := s
instance : SetLike (PositiveCompacts α) α where coe s := s.carrier coe_injective' s t h := by
Mathlib.Topology.Sets.Compacts.317_0.XVs1udLPbHOIEoW
instance : SetLike (PositiveCompacts α) α where coe s
Mathlib_Topology_Sets_Compacts
case mk.mk α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ t : PositiveCompacts α carrier✝ : Set α isCompact'✝ : IsCompact carrier✝ interior_nonempty'✝ : Set.Nonempty (interior { carrier := carrier✝, isCompact' := isCompact'✝ }.carrier) h : (fu...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
obtain ⟨⟨_, _⟩, _⟩ := t
instance : SetLike (PositiveCompacts α) α where coe s := s.carrier coe_injective' s t h := by obtain ⟨⟨_, _⟩, _⟩ := s
Mathlib.Topology.Sets.Compacts.317_0.XVs1udLPbHOIEoW
instance : SetLike (PositiveCompacts α) α where coe s
Mathlib_Topology_Sets_Compacts
case mk.mk.mk.mk α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ carrier✝¹ : Set α isCompact'✝¹ : IsCompact carrier✝¹ interior_nonempty'✝¹ : Set.Nonempty (interior { carrier := carrier✝¹, isCompact' := isCompact'✝¹ }.carrier) carrier✝ : Set α isC...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
congr
instance : SetLike (PositiveCompacts α) α where coe s := s.carrier coe_injective' s t h := by obtain ⟨⟨_, _⟩, _⟩ := s obtain ⟨⟨_, _⟩, _⟩ := t
Mathlib.Topology.Sets.Compacts.317_0.XVs1udLPbHOIEoW
instance : SetLike (PositiveCompacts α) α where coe s
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝⁴ : TopologicalSpace α inst✝³ : TopologicalSpace β inst✝² : TopologicalSpace γ inst✝¹ : WeaklyLocallyCompactSpace α inst✝ : Nonempty α ⊢ Nonempty (PositiveCompacts α)
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
inhabit α
/-- In a nonempty locally compact space, there exists a compact set with nonempty interior. -/ instance nonempty' [WeaklyLocallyCompactSpace α] [Nonempty α] : Nonempty (PositiveCompacts α) := by
Mathlib.Topology.Sets.Compacts.424_0.XVs1udLPbHOIEoW
/-- In a nonempty locally compact space, there exists a compact set with nonempty interior. -/ instance nonempty' [WeaklyLocallyCompactSpace α] [Nonempty α] : Nonempty (PositiveCompacts α)
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝⁴ : TopologicalSpace α inst✝³ : TopologicalSpace β inst✝² : TopologicalSpace γ inst✝¹ : WeaklyLocallyCompactSpace α inst✝ : Nonempty α inhabited_h : Inhabited α ⊢ Nonempty (PositiveCompacts α)
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
rcases exists_compact_mem_nhds (default : α) with ⟨K, hKc, hK⟩
/-- In a nonempty locally compact space, there exists a compact set with nonempty interior. -/ instance nonempty' [WeaklyLocallyCompactSpace α] [Nonempty α] : Nonempty (PositiveCompacts α) := by inhabit α
Mathlib.Topology.Sets.Compacts.424_0.XVs1udLPbHOIEoW
/-- In a nonempty locally compact space, there exists a compact set with nonempty interior. -/ instance nonempty' [WeaklyLocallyCompactSpace α] [Nonempty α] : Nonempty (PositiveCompacts α)
Mathlib_Topology_Sets_Compacts
case intro.intro α : Type u_1 β : Type u_2 γ : Type u_3 inst✝⁴ : TopologicalSpace α inst✝³ : TopologicalSpace β inst✝² : TopologicalSpace γ inst✝¹ : WeaklyLocallyCompactSpace α inst✝ : Nonempty α inhabited_h : Inhabited α K : Set α hKc : IsCompact K hK : K ∈ nhds default ⊢ Nonempty (PositiveCompacts α)
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
exact ⟨⟨K, hKc⟩, _, mem_interior_iff_mem_nhds.2 hK⟩
/-- In a nonempty locally compact space, there exists a compact set with nonempty interior. -/ instance nonempty' [WeaklyLocallyCompactSpace α] [Nonempty α] : Nonempty (PositiveCompacts α) := by inhabit α rcases exists_compact_mem_nhds (default : α) with ⟨K, hKc, hK⟩
Mathlib.Topology.Sets.Compacts.424_0.XVs1udLPbHOIEoW
/-- In a nonempty locally compact space, there exists a compact set with nonempty interior. -/ instance nonempty' [WeaklyLocallyCompactSpace α] [Nonempty α] : Nonempty (PositiveCompacts α)
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ K : PositiveCompacts α L : PositiveCompacts β ⊢ Set.Nonempty (interior (Compacts.prod K.toCompacts L.toCompacts).carrier)
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
simp only [Compacts.carrier_eq_coe, Compacts.coe_prod, interior_prod_eq]
/-- The product of two `TopologicalSpace.PositiveCompacts`, as a `TopologicalSpace.PositiveCompacts` in the product space. -/ protected def prod (K : PositiveCompacts α) (L : PositiveCompacts β) : PositiveCompacts (α × β) where toCompacts := K.toCompacts.prod L.toCompacts interior_nonempty' := by
Mathlib.Topology.Sets.Compacts.431_0.XVs1udLPbHOIEoW
/-- The product of two `TopologicalSpace.PositiveCompacts`, as a `TopologicalSpace.PositiveCompacts` in the product space. -/ protected def prod (K : PositiveCompacts α) (L : PositiveCompacts β) : PositiveCompacts (α × β) where toCompacts
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ K : PositiveCompacts α L : PositiveCompacts β ⊢ Set.Nonempty (interior ↑K.toCompacts ×ˢ interior ↑L.toCompacts)
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
exact K.interior_nonempty.prod L.interior_nonempty
/-- The product of two `TopologicalSpace.PositiveCompacts`, as a `TopologicalSpace.PositiveCompacts` in the product space. -/ protected def prod (K : PositiveCompacts α) (L : PositiveCompacts β) : PositiveCompacts (α × β) where toCompacts := K.toCompacts.prod L.toCompacts interior_nonempty' := by simp only ...
Mathlib.Topology.Sets.Compacts.431_0.XVs1udLPbHOIEoW
/-- The product of two `TopologicalSpace.PositiveCompacts`, as a `TopologicalSpace.PositiveCompacts` in the product space. -/ protected def prod (K : PositiveCompacts α) (L : PositiveCompacts β) : PositiveCompacts (α × β) where toCompacts
Mathlib_Topology_Sets_Compacts
α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ s t : CompactOpens α h : (fun s => s.carrier) s = (fun s => s.carrier) t ⊢ s = t
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
obtain ⟨⟨_, _⟩, _⟩ := s
instance : SetLike (CompactOpens α) α where coe s := s.carrier coe_injective' s t h := by
Mathlib.Topology.Sets.Compacts.459_0.XVs1udLPbHOIEoW
instance : SetLike (CompactOpens α) α where coe s
Mathlib_Topology_Sets_Compacts
case mk.mk α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ t : CompactOpens α carrier✝ : Set α isCompact'✝ : IsCompact carrier✝ isOpen'✝ : IsOpen { carrier := carrier✝, isCompact' := isCompact'✝ }.carrier h : (fun s => s.carrier) { toCompacts :...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
obtain ⟨⟨_, _⟩, _⟩ := t
instance : SetLike (CompactOpens α) α where coe s := s.carrier coe_injective' s t h := by obtain ⟨⟨_, _⟩, _⟩ := s
Mathlib.Topology.Sets.Compacts.459_0.XVs1udLPbHOIEoW
instance : SetLike (CompactOpens α) α where coe s
Mathlib_Topology_Sets_Compacts
case mk.mk.mk.mk α : Type u_1 β : Type u_2 γ : Type u_3 inst✝² : TopologicalSpace α inst✝¹ : TopologicalSpace β inst✝ : TopologicalSpace γ carrier✝¹ : Set α isCompact'✝¹ : IsCompact carrier✝¹ isOpen'✝¹ : IsOpen { carrier := carrier✝¹, isCompact' := isCompact'✝¹ }.carrier carrier✝ : Set α isCompact'✝ : IsCompact carrier...
/- Copyright (c) 2020 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn, Yaël Dillies -/ import Mathlib.Topology.Sets.Closeds import Mathlib.Topology.QuasiSeparated #align_import topology.sets.compacts from "leanprover-community/mathlib...
congr
instance : SetLike (CompactOpens α) α where coe s := s.carrier coe_injective' s t h := by obtain ⟨⟨_, _⟩, _⟩ := s obtain ⟨⟨_, _⟩, _⟩ := t
Mathlib.Topology.Sets.Compacts.459_0.XVs1udLPbHOIEoW
instance : SetLike (CompactOpens α) α where coe s
Mathlib_Topology_Sets_Compacts
α : Type u β : Type v γ : Type w ε : ℝ ε0 : ε > 0 a✝ b✝ : ℝ h : dist a✝ b✝ < ε ⊢ dist (-a✝) (-b✝) < ε
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
rw [dist_comm] at h
theorem Real.uniformContinuous_neg : UniformContinuous (@Neg.neg ℝ _) := Metric.uniformContinuous_iff.2 fun ε ε0 => ⟨_, ε0, fun h => by
Mathlib.Topology.Instances.Real.38_0.cAejORboOY2cNtK
theorem Real.uniformContinuous_neg : UniformContinuous (@Neg.neg ℝ _)
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w ε : ℝ ε0 : ε > 0 a✝ b✝ : ℝ h : dist b✝ a✝ < ε ⊢ dist (-a✝) (-b✝) < ε
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
simpa only [Real.dist_eq, neg_sub_neg] using h
theorem Real.uniformContinuous_neg : UniformContinuous (@Neg.neg ℝ _) := Metric.uniformContinuous_iff.2 fun ε ε0 => ⟨_, ε0, fun h => by rw [dist_comm] at h;
Mathlib.Topology.Instances.Real.38_0.cAejORboOY2cNtK
theorem Real.uniformContinuous_neg : UniformContinuous (@Neg.neg ℝ _)
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w ⊢ TopologicalAddGroup ℝ
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
infer_instance
instance : TopologicalAddGroup ℝ := by
Mathlib.Topology.Instances.Real.49_0.cAejORboOY2cNtK
instance : TopologicalAddGroup ℝ
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w x r : ℝ ⊢ IsCompact (closedBall x r)
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
rw [Real.closedBall_eq_Icc]
instance : ProperSpace ℝ where isCompact_closedBall x r := by
Mathlib.Topology.Instances.Real.53_0.cAejORboOY2cNtK
instance : ProperSpace ℝ where isCompact_closedBall x r
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w x r : ℝ ⊢ IsCompact (Icc (x - r) (x + r))
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
apply isCompact_Icc
instance : ProperSpace ℝ where isCompact_closedBall x r := by rw [Real.closedBall_eq_Icc]
Mathlib.Topology.Instances.Real.53_0.cAejORboOY2cNtK
instance : ProperSpace ℝ where isCompact_closedBall x r
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w ⊢ ∀ u ∈ ⋃ a, ⋃ b, ⋃ (_ : a < b), {Ioo ↑a ↑b}, IsOpen u
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
simp (config := { contextual := true }) [isOpen_Ioo]
theorem Real.isTopologicalBasis_Ioo_rat : @IsTopologicalBasis ℝ _ (⋃ (a : ℚ) (b : ℚ) (_ : a < b), {Ioo (a : ℝ) b}) := isTopologicalBasis_of_isOpen_of_nhds (by
Mathlib.Topology.Instances.Real.60_0.cAejORboOY2cNtK
theorem Real.isTopologicalBasis_Ioo_rat : @IsTopologicalBasis ℝ _ (⋃ (a : ℚ) (b : ℚ) (_ : a < b), {Ioo (a : ℝ) b})
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w a : ℝ v : Set ℝ hav : a ∈ v hv : IsOpen v l u : ℝ hl : l < a hu : a < u h : Ioo l u ⊆ v q : ℚ hlq : l < ↑q hqa : ↑q < a p : ℚ hap : a < ↑p hpu : ↑p < u ⊢ Ioo ↑q ↑p ∈ ⋃ a, ⋃ b, ⋃ (_ : a < b), {Ioo ↑a ↑b}
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
simp only [mem_iUnion]
theorem Real.isTopologicalBasis_Ioo_rat : @IsTopologicalBasis ℝ _ (⋃ (a : ℚ) (b : ℚ) (_ : a < b), {Ioo (a : ℝ) b}) := isTopologicalBasis_of_isOpen_of_nhds (by simp (config := { contextual := true }) [isOpen_Ioo]) fun a v hav hv => let ⟨l, u, ⟨hl, hu⟩, h⟩ := mem_nhds_iff_exists_Ioo_subset.mp (IsOpen.mem_nh...
Mathlib.Topology.Instances.Real.60_0.cAejORboOY2cNtK
theorem Real.isTopologicalBasis_Ioo_rat : @IsTopologicalBasis ℝ _ (⋃ (a : ℚ) (b : ℚ) (_ : a < b), {Ioo (a : ℝ) b})
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w a : ℝ v : Set ℝ hav : a ∈ v hv : IsOpen v l u : ℝ hl : l < a hu : a < u h : Ioo l u ⊆ v q : ℚ hlq : l < ↑q hqa : ↑q < a p : ℚ hap : a < ↑p hpu : ↑p < u ⊢ ∃ i i_1, ∃ (_ : i < i_1), Ioo ↑q ↑p ∈ {Ioo ↑i ↑i_1}
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
exact ⟨q, p, Rat.cast_lt.1 <| hqa.trans hap, rfl⟩
theorem Real.isTopologicalBasis_Ioo_rat : @IsTopologicalBasis ℝ _ (⋃ (a : ℚ) (b : ℚ) (_ : a < b), {Ioo (a : ℝ) b}) := isTopologicalBasis_of_isOpen_of_nhds (by simp (config := { contextual := true }) [isOpen_Ioo]) fun a v hav hv => let ⟨l, u, ⟨hl, hu⟩, h⟩ := mem_nhds_iff_exists_Ioo_subset.mp (IsOpen.mem_nh...
Mathlib.Topology.Instances.Real.60_0.cAejORboOY2cNtK
theorem Real.isTopologicalBasis_Ioo_rat : @IsTopologicalBasis ℝ _ (⋃ (a : ℚ) (b : ℚ) (_ : a < b), {Ioo (a : ℝ) b})
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w ⊢ cobounded ℝ = atBot ⊔ atTop
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
simp only [← comap_dist_right_atTop (0 : ℝ), Real.dist_eq, sub_zero, comap_abs_atTop]
@[simp] theorem Real.cobounded_eq : cobounded ℝ = atBot ⊔ atTop := by
Mathlib.Topology.Instances.Real.73_0.cAejORboOY2cNtK
@[simp] theorem Real.cobounded_eq : cobounded ℝ = atBot ⊔ atTop
Mathlib_Topology_Instances_Real
α : Type u β : Type v γ : Type w ⊢ cocompact ℝ = atBot ⊔ atTop
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro -/ import Mathlib.Topology.Algebra.UniformMulAction import Mathlib.Topology.Algebra.Star import Mathlib.Topology.Algebra.Order.Field import Mathlib.Algeb...
rw [← cobounded_eq_cocompact, cobounded_eq]
@[simp] theorem Real.cocompact_eq : cocompact ℝ = atBot ⊔ atTop := by
Mathlib.Topology.Instances.Real.77_0.cAejORboOY2cNtK
@[simp] theorem Real.cocompact_eq : cocompact ℝ = atBot ⊔ atTop
Mathlib_Topology_Instances_Real