Documentation

Mathlib.RingTheory.PowerSeries.Restricted

Univariate restricted power series #

IsRestricted : We say a univariate power series over a normed ring R is restricted for a real number c if ‖coeff t f‖ * c i ^ t i → 0 under the cofinite filter.

@[reducible, inline]
abbrev PowerSeries.IsRestricted {R : Type u_1} [NormedRing R] (c : ) (f : PowerSeries R) :

Predicate for when f is a restricted power series.

Equations
Instances For
    theorem PowerSeries.isRestricted_iff' {R : Type u_1} [NormedRing R] (c : ) (f : PowerSeries R) :
    IsRestricted c f Filter.Tendsto (fun (t : ) => (coeff t) f * c ^ t) Filter.atTop (nhds 0)
    theorem PowerSeries.isRestricted_monomial {R : Type u_1} [NormedRing R] (c : ) (n : ) (a : R) :
    theorem PowerSeries.isRestricted_C {R : Type u_1} [NormedRing R] (c : ) (a : R) :
    theorem PowerSeries.isRestricted.add {R : Type u_1} [NormedRing R] (c : ) {f g : PowerSeries R} (hf : IsRestricted c f) (hg : IsRestricted c g) :
    IsRestricted c (f + g)
    theorem PowerSeries.isRestricted.neg {R : Type u_1} [NormedRing R] (c : ) {f : PowerSeries R} (hf : IsRestricted c f) :
    theorem PowerSeries.isRestricted.mul {R : Type u_1} [NormedRing R] [IsUltrametricDist R] (c : ) {f g : PowerSeries R} (hf : IsRestricted c f) (hg : IsRestricted c g) :
    IsRestricted c (f * g)

    Restricted power series as an additive subgroup of PowerSeries R.

    Equations
    Instances For

      Restricted power series as an subring of PowerSeries R.

      Equations
      Instances For