@@ -35,8 +35,8 @@ We use properties of this power series to prove various results about distributi
3535 of the norm.
3636- `distDiv_inv_pow_eq_dim` : The divergence of the distribution defined by the
3737 inverse power of the norm proportional to the Dirac delta distribution.
38- - `distLaplacian_fundamentalSolution_norm_zpow ` : The Laplacian of the fundamental solution
39- power of the norm.
38+ - `distLaplacian_fundamentalSolution_norm_zpow_eq ` : The Laplacian of the fundamental
39+ solution power of the norm.
4040
4141 ## iii. Table of contents
4242
@@ -1464,4 +1464,37 @@ lemma distLaplacian_fundamentalSolution_norm_zpow {d : ℕ} :
14641464 rw [smul_smul]
14651465 ring_nf
14661466
1467+ /-- Version of `distLaplacian_fundamentalSolution_norm_zpow` stated using the dimension of
1468+ the ambient space. -/
1469+ lemma distLaplacian_fundamentalSolution_norm_zpow_of_three_le {d : ℕ} (hd : 3 ≤ d) :
1470+ Δᵈ (distOfFunction (fun x : Space d => ‖x‖ ^ ((2 : ℤ) - (d : ℤ)))
1471+ (IsDistBounded.pow ((2 : ℤ) - (d : ℤ)) (by omega))) =
1472+ (((2 : ℝ) - (d : ℝ)) * (d : ℝ) *
1473+ (volume (α := Space d)).real (Metric.ball 0 1 )) • diracDelta ℝ 0 := by
1474+ rcases d with _ | _ | _ | d
1475+ · omega
1476+ · omega
1477+ · omega
1478+ · convert distLaplacian_fundamentalSolution_norm_zpow (d := d) using 1
1479+ ext x
1480+ simp only [ContinuousLinearMap.coe_smul', Pi.smul_apply, smul_eq_mul]
1481+ simp only [Nat.succ_eq_add_one, Nat.cast_add, Nat.cast_one]
1482+ ring_nf
1483+
1484+ /-- Version of `distLaplacian_fundamentalSolution_norm_zpow` stated for every dimension.
1485+ In dimensions less than three, the exponent is zero and both sides are zero. -/
1486+ lemma distLaplacian_fundamentalSolution_norm_zpow_eq {d : ℕ} :
1487+ Δᵈ (distOfFunction (fun x : Space d => ‖x‖ ^ (- ((d - 2 : ℕ) : ℤ)))
1488+ (IsDistBounded.pow _ (by grind))) =
1489+ (- ((d - 2 : ℕ) : ℝ) * (d : ℝ) *
1490+ (volume (α := Space d)).real (Metric.ball 0 1 )) • diracDelta ℝ 0 := by
1491+ by_cases hd : d < 3
1492+ · have hdim : d - 2 = 0 := by omega
1493+ simp [hdim]
1494+ exact distLaplacian_const 1
1495+ · convert distLaplacian_fundamentalSolution_norm_zpow_of_three_le
1496+ (d := d) (by grind) using 4 <;>
1497+ rw [Nat.cast_sub (by omega : 2 ≤ d)] <;>
1498+ ring_nf
1499+
14671500end Space
0 commit comments