1429def stokesMildCoeffBound {H : UniformBoundsHypothesis} (HC : ConvergenceHypothesis H) (ν : ℝ)1430 (hMild :1431 ∀ N : ℕ, ∀ t ≥ 0, ∀ k : Mode2,1432 (extendByZero (H.uN N t) k) = (heatFactor ν t k) • (extendByZero (H.uN N 0) k)) :1433 IdentificationHypothesis HC :=
proof body
Definition body.
1434 { IsSolution := fun u =>1435 (∀ t ≥ 0, ∀ k : Mode2, ‖(u t) k‖ ≤ H.B) ∧ IsStokesMildTraj ν u1436 isSolution := by1437 refine ⟨?_, ?_⟩1438 · intro t ht k1439 simpa using (ConvergenceHypothesis.coeff_bound_of_uniformBounds (HC := HC) t ht k)1440 · exact ConvergenceHypothesis.stokesMild_of_forall (HC := HC) (ν := ν) hMild }14411442/-- Identification constructor: coefficient bound + a first nonlinear (Duhamel-style) remainder identity.14431444The coefficient bound part is proved from `UniformBoundsHypothesis` + convergence.1445The Duhamel-remainder identity is proved from the extra assumptions:14461447- each approximant satisfies `extendByZero uN(t,k) = heatFactor • extendByZero uN(0,k) + D_N(t,k)`, and1448- `D_N(t,k) → D(t,k)` modewise.14491450In later milestones, `D_N` will be instantiated as an actual time-integrated nonlinear forcing term. -/
depends on (22)
Lean names referenced from this declaration's body.
Hin IndisputableMonolith.Algebra.CostAlgebradecl_use