Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Physlib/SpaceAndTime/Space/ConstantSliceDist.lean
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ lemma schwartzMap_integrable_slice_symm {d : ℕ} (i : Fin d.succ) (η : 𝓢(Sp
· fun_prop
· simp

set_option maxSynthPendingDepth 10000 in
lemma schwartzMap_fderiv_integrable_slice_symm {d : ℕ} (η : 𝓢(Space d.succ, ℝ)) (x : Space d)
(i : Fin d.succ) :
Integrable (fun r => fderiv ℝ (fun x => η (((slice i).symm (r, x)))) x) volume := by
Expand Down
8 changes: 8 additions & 0 deletions Physlib/SpaceAndTime/Space/Module.lean
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,14 @@ instance {d} : InnerProductSpace ℝ (Space d) where
simpa only [smul_vadd_zero, inner_vadd_zero, conj_trivial]
using InnerProductSpace.smul_left v1 v2 a

/-- The normed space structure on `Space d`, registered directly. It is definitionally the
one underlying the inner product space structure, but registering it as its own instance is
needed for typeclass search to find the operator-norm structure on `Space d →L[ℝ] ℝ`
(for example `NormSMulClass ℝ (Space d →L[ℝ] ℝ)`), which is not found when
`NormedSpace ℝ (Space d)` arises only as a nested subgoal through
`InnerProductSpace.toNormedSpace`. -/
noncomputable instance {d} : NormedSpace ℝ (Space d) := InnerProductSpace.toNormedSpace

lemma norm_smul_sphere {d : ℕ} (n : ↑(Metric.sphere (0 : Space d) 1))
{r : ℝ} (hr : 0 ≤ r) :
‖(r • (n : Space d))‖ = r := by
Expand Down
1 change: 0 additions & 1 deletion Physlib/SpaceAndTime/TimeAndSpace/ConstantTimeDist.lean
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,6 @@ lemma time_integral_differentiable {d : ℕ} (η : 𝓢(Time × Space d, ℝ)) :

-/

set_option maxSynthPendingDepth 10000 in
@[fun_prop]
lemma integrable_fderiv_space {d : ℕ} (η : 𝓢(Time × Space d, ℝ)) (x : Space d) :
Integrable (fun t => fderiv ℝ (fun x => η (t, x)) x) volume := by
Expand Down
Loading