Documentation

Mathlib.Analysis.Analytic.OfScalars

Scalar series #

This file contains API for analytic functions ∑ cᵢ • xⁱ defined in terms of scalars c₀, c₁, c₂, ….

Main definitions / results: #

def FormalMultilinearSeries.ofScalars {𝕜 : Type u_1} (E : Type u_2) [Field 𝕜] [Ring E] [Algebra 𝕜 E] [TopologicalSpace E] [TopologicalRing E] (c : 𝕜) :

Formal power series of ∑ cᵢ • xⁱ for some scalar field 𝕜 and ring algebra E

Equations
Instances For
    noncomputable def FormalMultilinearSeries.ofScalarsSum {𝕜 : Type u_1} {E : Type u_2} [Field 𝕜] [Ring E] [Algebra 𝕜 E] [TopologicalSpace E] [TopologicalRing E] (c : 𝕜) (x : E) :
    E

    The sum of the formal power series. Takes the value 0 outside the radius of convergence.

    Equations
    Instances For
      theorem FormalMultilinearSeries.ofScalars_apply_eq {𝕜 : Type u_1} {E : Type u_2} [Field 𝕜] [Ring E] [Algebra 𝕜 E] [TopologicalSpace E] [TopologicalRing E] (c : 𝕜) (x : E) (n : ) :
      ((FormalMultilinearSeries.ofScalars E c n) fun (x_1 : Fin n) => x) = c n x ^ n
      theorem FormalMultilinearSeries.ofScalars_apply_eq' {𝕜 : Type u_1} {E : Type u_2} [Field 𝕜] [Ring E] [Algebra 𝕜 E] [TopologicalSpace E] [TopologicalRing E] (c : 𝕜) (x : E) :
      (fun (n : ) => (FormalMultilinearSeries.ofScalars E c n) fun (x_1 : Fin n) => x) = fun (n : ) => c n x ^ n

      This naming follows the convention of NormedSpace.expSeries_apply_eq'.

      theorem FormalMultilinearSeries.ofScalars_sum_eq {𝕜 : Type u_1} {E : Type u_2} [Field 𝕜] [Ring E] [Algebra 𝕜 E] [TopologicalSpace E] [TopologicalRing E] (c : 𝕜) (x : E) :
      theorem FormalMultilinearSeries.ofScalarsSum_eq_tsum {𝕜 : Type u_1} {E : Type u_2} [Field 𝕜] [Ring E] [Algebra 𝕜 E] [TopologicalSpace E] [TopologicalRing E] (c : 𝕜) :
      FormalMultilinearSeries.ofScalarsSum c = fun (x : E) => ∑' (n : ), c n x ^ n
      @[simp]
      theorem FormalMultilinearSeries.ofScalars_eq_zero {𝕜 : Type u_1} {E : Type u_2} [Field 𝕜] [Ring E] [Algebra 𝕜 E] [TopologicalSpace E] [TopologicalRing E] (c : 𝕜) [Nontrivial E] (n : ) :
      theorem FormalMultilinearSeries.ofScalars_norm_le {𝕜 : Type u_1} (E : Type u_2) [NontriviallyNormedField 𝕜] [NormedRing E] [NormedAlgebra 𝕜 E] (c : 𝕜) (n : ) (hn : n > 0) :
      theorem FormalMultilinearSeries.ofScalars_radius_eq_inv_of_tendsto {𝕜 : Type u_1} (E : Type u_2) [NontriviallyNormedField 𝕜] [NormedRing E] [NormedAlgebra 𝕜 E] (c : 𝕜) [NormOneClass E] {r : NNReal} (hr : r 0) (hc : Filter.Tendsto (fun (n : ) => c n.succ / c n) Filter.atTop (nhds r)) :

      The radius of convergence of a scalar series is the inverse of the ratio of the norms of the coefficients.

      theorem FormalMultilinearSeries.ofScalars_radius_eq_of_tendsto {𝕜 : Type u_1} (E : Type u_2) [NontriviallyNormedField 𝕜] [NormedRing E] [NormedAlgebra 𝕜 E] (c : 𝕜) [NormOneClass E] {r : NNReal} (hr : r 0) (hc : Filter.Tendsto (fun (n : ) => c n / c n.succ) Filter.atTop (nhds r)) :

      A convenience lemma restating the result of ofScalars_radius_eq_inv_of_tendsto under the inverse ratio.