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

Odd Norm Iterated Laplacian Coeff ne zero

Space.oddNormIteratedLaplacianCoeff_ne_zero

Plain-language statement

The scalar factor in the odd-dimensional iterated Laplacian of the norm is nonzero.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Radial Angular Measure closed Ball

Space.radialAngularMeasure_closedBall

Project documentation

The measure on Space d weighted by 1 / ‖x‖ ^ (d - 1). -/ def radialAngularMeasure {d : ℕ} : Measure (Space d) := volume.withDensity (fun x : Space d => ENNReal.ofReal (1 / ‖x‖ ^ (d - 1))) /-! ### A.1. Basic equalities -/ lemma radialAngularMeasure_eq_volume_withDensity {d : ℕ} : radialAngularMeasure = volume.withDensity (fun x : Space d => ENNReal.ofR...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Slice symm measurable Embedding

Space.slice_symm_measurableEmbedding

Project documentation

The linear equivalence between Space d.succ and ℝ × Space d extracting the ith coordinate. -/ def slice {d} (i : Fin d.succ) : Space d.succ ≃L[ℝ] ℝ × Space d where toFun x := ⟨x i, ⟨fun j => x (Fin.succAbove i j)⟩⟩ invFun p := ⟨fun j => Fin.insertNthEquiv (fun _ => ℝ) i (p.fst, p.snd) j⟩ map_add' x y := by simp only [Nat.succ_eq_add_one, Prod.mk_add...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Space deriv differentiable time

Space.space_deriv_differentiable_time

Project documentation

Derivatives along space coordinates and time commute. -/ lemma fderiv_time_commute_fderiv_space {M} [NormedAddCommGroup M] [NormedSpace ℝ M] (f : Time → Space d → M) (t dt : Time) (x dx : Space d) (hf : ContDiff ℝ 2 ↿f) : fderiv ℝ (fun t' => fderiv ℝ (fun x' => f t' x') x dx) t dt = fderiv ℝ (fun x' => fderiv ℝ (fun t' => f t' x') t dt) x dx := by trans f...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Space fun of time deriv eq zero

Space.space_fun_of_time_deriv_eq_zero

Project documentation

Curl and time derivative commute. -/ lemma time_deriv_curl_commute (fₜ : Time → Space → EuclideanSpace ℝ (Fin 3)) (t : Time) (x : Space) (hf : ContDiff ℝ 2 ↿fₜ) : ∂ₜ (fun t => (∇ ⨯ fₜ t) x) t = (∇ ⨯ fun x => (∂ₜ (fun t => fₜ t x) t)) x:= by ext i rw [← Time.deriv_euclid] · fin_cases i all_goals simp [curl] rw [Time.deriv_eq, fderiv_fun_sub] simp [← Time.d...

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record