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
Real numbers belong to the resolvent set of non-real complex numbers
Let be a complex number such that its imaginary part is non-zero (). For every real number , belongs to the resolvent set of over . This means that the value is invertible for all .
for with
Let be a complex number such that its imaginary part . Then the -resolvent set of (the set of real numbers such that is invertible in ) is equal to the set of all real numbers .
The norm of the resolvent is bounded by
Let be a complex number with a non-zero imaginary part, . For any real number , the norm of the resolvent is globally bounded by the reciprocal of the absolute value of the imaginary part of :
The Resolvent of a Complex Number with is Smooth on
For any complex number with a non-zero imaginary part (), the resolvent function defined by is infinitely differentiable (smooth) on .
-th Derivative of the Resolvent of
Let be a complex number with a non-zero imaginary part (). The resolvent function is defined as . For any natural number , the -th iterated derivative of this resolvent function is given by: which is equivalent to:
Let be a complex number with a non-zero imaginary part (). For any natural number and any real number , the norm of the -th derivative of the resolvent function is bounded by: where denotes the absolute value of the imaginary part of .
The Resolvent of with has Temperate Growth
For any complex number such that its imaginary part is non-zero (), the resolvent function defined by has temperate growth.
