Physlib

Physlib.Mathematics.Resolvent

Temperate growth of the resolvent of a non-real complex number

i. Overview

For `z : ℂ` with `z.im ≠ 0`, every real number lies in the `ℝ`-resolvent set of `z`, so Mathlib's algebra resolvent `resolvent (R := ℝ) z = fun t : ℝ ↦ Ring.inverse (↑t - z)` is a globally defined, smooth map `ℝ → ℂ`. Its iterated derivatives have the closed form `(-1)ⁿ · n! · (resolvent z)ⁿ⁺¹` and are globally bounded by `n! · (|z.im| ^ (n+1))⁻¹`; consequently the resolvent has temperate growth.

Smoothness and temperate growth are `fun_prop` lemmas, so composed variants such as the affine reciprocal `t ↦ (z + a·t)⁻¹ = resolvent (-z) (a·t)` follow at call sites by `fun_prop`.

ii. Key results

- `mem_resolventSet_of_im_ne_zero` / `resolventSet_eq_univ` : every `t : ℝ` lies in `resolventSet ℝ z` when `z.im ≠ 0`, i.e. `t - z` is invertible for all real `t`. - `norm_resolvent_le` : the global bound `‖resolvent z t‖ ≤ |z.im|⁻¹`. - `iteratedDeriv_resolvent` : the closed form `iteratedDeriv n (resolvent z) = (-1)ⁿ · n! · (resolvent z)ⁿ⁺¹`. - `norm_iteratedDeriv_resolvent_le` : the explicit derivative bounds `‖iteratedDeriv n (resolvent z) t‖ ≤ n! · (|z.im| ^ (n+1))⁻¹`. - `contDiff_resolvent`, `hasTemperateGrowth_resolvent` : smoothness and temperate growth along `ℝ`, both tagged `@[fun_prop]`.

iii. Table of contents

  • A. The resolvent of a non-real complex number along `ℝ`

iv. References

A. The resolvent of a non-real complex number along `ℝ`

7 declarations

theorem

Real numbers belong to the resolvent set of non-real complex numbers

Let zz be a complex number such that its imaginary part is non-zero (Im(z)0\text{Im}(z) \neq 0). For every real number tRt \in \mathbb{R}, tt belongs to the resolvent set of zz over R\mathbb{R}. This means that the value tzt - z is invertible for all tRt \in \mathbb{R}.

theorem

resolventSetR(z)=R\text{resolventSet}_{\mathbb{R}}(z) = \mathbb{R} for zz with Im(z)0\text{Im}(z) \neq 0

Let zz be a complex number such that its imaginary part Im(z)0\text{Im}(z) \neq 0. Then the R\mathbb{R}-resolvent set of zz (the set of real numbers tt such that tzt - z is invertible in C\mathbb{C}) is equal to the set of all real numbers R\mathbb{R}.

theorem

The norm of the resolvent is bounded by Im(z)1|\text{Im}(z)|^{-1}

Let zCz \in \mathbb{C} be a complex number with a non-zero imaginary part, Im(z)0\text{Im}(z) \neq 0. For any real number tRt \in \mathbb{R}, the norm of the resolvent (tz)1(t - z)^{-1} is globally bounded by the reciprocal of the absolute value of the imaginary part of zz: (tz)11Im(z)\| (t - z)^{-1} \| \leq \frac{1}{|\text{Im}(z)|}

theorem

The Resolvent of a Complex Number zz with Im(z)0\text{Im}(z) \neq 0 is Smooth on R\mathbb{R}

For any complex number zz with a non-zero imaginary part (Im(z)0\text{Im}(z) \neq 0), the resolvent function f:RCf: \mathbb{R} \to \mathbb{C} defined by f(t)=(tz)1f(t) = (t - z)^{-1} is infinitely differentiable (smooth) on R\mathbb{R}.

theorem

nn-th Derivative of the Resolvent of zCRz \in \mathbb{C} \setminus \mathbb{R}

Let zz be a complex number with a non-zero imaginary part (Im(z)0\text{Im}(z) \neq 0). The resolvent function resolvent(z):RC\text{resolvent}(z) : \mathbb{R} \to \mathbb{C} is defined as resolvent(z)(t)=(tz)1\text{resolvent}(z)(t) = (t - z)^{-1}. For any natural number nn, the nn-th iterated derivative of this resolvent function is given by: dndtn(resolvent(z)(t))=(1)nn!(resolvent(z)(t))n+1 \frac{d^n}{dt^n} (\text{resolvent}(z)(t)) = (-1)^n n! (\text{resolvent}(z)(t))^{n+1} which is equivalent to: dndtn(1tz)=(1)nn!(tz)n+1 \frac{d^n}{dt^n} \left( \frac{1}{t - z} \right) = \frac{(-1)^n n!}{(t - z)^{n+1}}

theorem

dndtn(tz)1n!Im(z)(n+1)\| \frac{d^n}{dt^n} (t - z)^{-1} \| \leq n! \cdot |\text{Im}(z)|^{-(n+1)}

Let zCz \in \mathbb{C} be a complex number with a non-zero imaginary part (Im(z)0\text{Im}(z) \neq 0). For any natural number nNn \in \mathbb{N} and any real number tRt \in \mathbb{R}, the norm of the nn-th derivative of the resolvent function Rz(t)=1tzR_z(t) = \frac{1}{t - z} is bounded by: dndtn(1tz)n!Im(z)n+1 \left\| \frac{d^n}{dt^n} \left( \frac{1}{t - z} \right) \right\| \leq \frac{n!}{|\text{Im}(z)|^{n+1}} where Im(z)|\text{Im}(z)| denotes the absolute value of the imaginary part of zz.

theorem

The Resolvent of zz with Im(z)0\text{Im}(z) \neq 0 has Temperate Growth

For any complex number zz such that its imaginary part is non-zero (Im(z)0\text{Im}(z) \neq 0), the resolvent function f:RCf : \mathbb{R} \to \mathbb{C} defined by f(t)=(tz)1f(t) = (t - z)^{-1} has temperate growth.