1

CES Definition and Basic Properties

Key Theorems

cesFunproved(J : ℕ) → (ρ : ℝ) → (Fin J → ℝ) → ℝ
def cesFun (J : ℕ) (a : Fin J → ℝ) (ρ : ℝ) : (Fin J → ℝ) → ℝ :=
  fun x => (∑ j : Fin J, a j * (x j) ^ ρ) ^ (1 / ρ)
curvatureK_posproved0 < ρ < 1, J ≥ 2 ⟹ K > 0
theorem curvatureK_pos {J : ℕ} (hJ : 2 ≤ J) {ρ : ℝ} (hρ : ρ < 1) :
    0 < curvatureK J ρ := by
  simp only [curvatureK]
  apply div_pos
  · apply mul_pos
    · linarith
    · have hJ1 : (1 : ℝ) < ↑J := by exact_mod_cast (by omega : 1 < J)
      linarith
  · exact_mod_cast (by omega : 0 < J)
All 26 declarations in this section