theorem
proved
term proof
master_absorption
show as:
view Lean formalization →
formal statement (Lean)
117theorem master_absorption
118 {dJdt transport_total viscous_total stretching_total : ℝ}
119 (hsplit : dJdt = transport_total + viscous_total + stretching_total)
120 (htransport : transport_total = 0)
121 (habsorb : stretching_total ≤ -viscous_total) :
122 dJdt ≤ 0 := by
proof body
Term-mode proof.
123 rw [hsplit, htransport, zero_add]; linarith
124
125/-! ## Exponential Decay -/
126