pith. machine review for the scientific record. sign in
theorem

compensatory_nonneg_of_sqNorm_le_one

proved
show as:
view math explainer →
module
IndisputableMonolith.Cost.Ndim.Bridge
domain
Cost
line
55 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Cost.Ndim.Bridge on GitHub at line 55.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

formal source

  52  simpa [multiplicativeQuadratic, additiveQuadratic, one_mul] using hscaled
  53
  54/-- Under normalized weights (`‖α‖² ≤ 1`), the compensatory term is nonnegative. -/
  55theorem compensatory_nonneg_of_sqNorm_le_one {n : ℕ}
  56    (α ε : Vec n) (hα : dot α α ≤ 1) :
  57    0 ≤ compensatoryQuadratic α ε := by
  58  unfold compensatoryQuadratic
  59  have hle := multiplicative_le_additive_of_sqNorm_le_one α ε hα
  60  linarith
  61
  62end Ndim
  63end Cost
  64end IndisputableMonolith