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

Integrable mul inv pow

Space.IsDistBounded.integrable_mul_inv_pow

Project documentation

The boundedness condition on a function Space d → F for it to form a distribution. -/ @[fun_prop] def IsDistBounded {d : ℕ} (f : Space d → F) : Prop := AEStronglyMeasurable (fun x => f x) volume ∧ ∃ n, ∃ c : Fin n → ℝ, ∃ g : Fin n → Space d, ∃ p : Fin n → ℤ, (∀ i, 0 ≤ c i) ∧ (∀ i, - (d - 1 : ℕ) ≤ p i) ∧ ∀ x, ‖f x‖ ≤ ∑ i, c i * ‖x + g i‖ ^ p i namespace...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Integrable space

Space.IsDistBounded.integrable_space

Project documentation

The boundedness condition on a function Space d → F for it to form a distribution. -/ @[fun_prop] def IsDistBounded {d : ℕ} (f : Space d → F) : Prop := AEStronglyMeasurable (fun x => f x) volume ∧ ∃ n, ∃ c : Fin n → ℝ, ∃ g : Fin n → Space d, ∃ p : Fin n → ℤ, (∀ i, 0 ≤ c i) ∧ (∀ i, - (d - 1 : ℕ) ≤ p i) ∧ ∀ x, ‖f x‖ ≤ ∑ i, c i * ‖x + g i‖ ^ p i namespace...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Integral mul schwartz Map bounded

Space.IsDistBounded.integral_mul_schwartzMap_bounded

Project documentation

The boundedness condition on a function Space d → F for it to form a distribution. -/ @[fun_prop] def IsDistBounded {d : ℕ} (f : Space d → F) : Prop := AEStronglyMeasurable (fun x => f x) volume ∧ ∃ n, ∃ c : Fin n → ℝ, ∃ g : Fin n → Space d, ∃ p : Fin n → ℤ, (∀ i, 0 ≤ c i) ∧ (∀ i, - (d - 1 : ℕ) ≤ p i) ∧ ∀ x, ‖f x‖ ≤ ∑ i, c i * ‖x + g i‖ ^ p i namespace...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Norm smul nat pow

Space.IsDistBounded.norm_smul_nat_pow

Project documentation

The boundedness condition on a function Space d → F for it to form a distribution. -/ @[fun_prop] def IsDistBounded {d : ℕ} (f : Space d → F) : Prop := AEStronglyMeasurable (fun x => f x) volume ∧ ∃ n, ∃ c : Fin n → ℝ, ∃ g : Fin n → Space d, ∃ p : Fin n → ℤ, (∀ i, 0 ≤ c i) ∧ (∀ i, - (d - 1 : ℕ) ≤ p i) ∧ ∀ x, ‖f x‖ ≤ ∑ i, c i * ‖x + g i‖ ^ p i namespace...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Is Dist Bounded norm Power Series zpow

Space.IsDistBounded.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
Project-declaredLean 4.32.0

Matrix Div add

Space.matrixDiv_add

Project documentation

The divergence of a matrix-valued spatial field. For a field T : Space d → Matrix (Fin d) (Fin d) ℝ, matrixDiv T is the vector field whose ith component is ∑ j, ∂[j] (fun x => T x i j) x. -/ noncomputable def matrixDiv (d : ℕ) (T : Space d → Matrix (Fin d) (Fin d) ℝ) : Space d → EuclideanSpace ℝ (Fin d) := fun x => WithLp.toLp 2 fun i => div (fun...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record