Source-pinned research

Research proof index

Search theorem names, mathematical ideas, modules, topics, projects, and role-labelled researchers. Open a result for its complete indexed Lean declaration and source record.

This index contains 591 research declarations. Search 10,000 more complete Mathlib declarations.

All topics

591 results

Clear filters
Project-declaredLean 4.32.0

Constant Time dist Space Deriv

Space.constantTime_distSpaceDeriv

Project documentation

Distributions on Time × Space d from distributions on Space d. These distributions are constant in time. -/ def constantTime {M : Type} [NormedAddCommGroup M] [NormedSpace ℝ M] {d : ℕ} : ((Space d) →d[ℝ] M) →ₗ[ℝ] (Time × Space d) →d[ℝ] M where toFun f := f ∘L timeIntegralSchwartz map_add' f g := by ext η simp map_smul' c f := by ext η simp lemma const...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Constant Time dist Time Deriv

Space.constantTime_distTimeDeriv

Project documentation

Distributions on Time × Space d from distributions on Space d. These distributions are constant in time. -/ def constantTime {M : Type} [NormedAddCommGroup M] [NormedSpace ℝ M] {d : ℕ} : ((Space d) →d[ℝ] M) →ₗ[ℝ] (Time × Space d) →d[ℝ] M where toFun f := f ∘L timeIntegralSchwartz map_add' f g := by ext η simp map_smul' c f := by ext η simp lemma const...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Curl of curl

Space.curl_of_curl

Project documentation

Second derivatives distribute coordinate-wise over subtraction (two components for curl). -/ lemma deriv_coord_2nd_sub (f : Space → EuclideanSpace ℝ (Fin 3)) (hf : ContDiff ℝ 2 f) : ∂[u] (fun x => ∂[v] (fun x => f x w) x - ∂[w] (fun x => f x v) x) = (∂[u] (∂[v] (fun x => f x w))) - (∂[u] (∂[w] (fun x => f x v))) := by repeat rw [deriv_eq_fderiv_fun] ext x...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Deriv comm of curl zero

Space.deriv_comm_of_curl_zero

Project documentation

The homotopy operator is defined as ∫ t in 0..1, (t • x) ⨯ f (t • x). This is the integrand of that function. -/ private noncomputable def homotopyOperatorIntegrand (f : Space → EuclideanSpace ℝ (Fin 3)) : Space → ℝ → EuclideanSpace ℝ (Fin 3) := fun x t => (t • basis.repr x) ⨯ₑ₃ f (t • x) private lemma homotopyOperatorIntegrand_eq (f : Space → Euclidean...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Deriv eq mfderiv manifold Structure

Space.deriv_eq_mfderiv_manifoldStructure

Plain-language statement

The spatial-derivative in terms of the derivative of functions between manifolds with the manifold structure Space.manifoldStructure d.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Deriv norm Power Series zpow

Space.deriv_normPowerSeries_zpow

Project documentation

A power series which is differentiable everywhere, and in the limit as n → ∞ tends to ‖x‖. -/ def normPowerSeries {d} : ℕ → Space d → ℝ := fun n x => √(‖x‖ ^ 2 + 1/(n + 1)) lemma normPowerSeries_eq (n : ℕ) : normPowerSeries (d := d) n = fun x => √(‖x‖ ^ 2 + 1/(n + 1)) := rfl lemma normPowerSeries_eq_rpow {d} (n : ℕ) : normPowerSeries (d := d) n = fun...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record