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]
Predicate for when f is a restricted power series.
Equations
- PowerSeries.IsRestricted c f = MvPowerSeries.IsRestricted (fun (x : Unit) => c) f
Instances For
@[simp]
theorem
PowerSeries.isRestricted_abs_iff
{R : Type u_1}
[NormedRing R]
(c : ℝ)
(f : PowerSeries R)
:
theorem
PowerSeries.isRestricted_monomial
{R : Type u_1}
[NormedRing R]
(c : ℝ)
(n : ℕ)
(a : R)
:
IsRestricted c ((monomial n) a)
theorem
PowerSeries.isRestricted_C
{R : Type u_1}
[NormedRing R]
(c : ℝ)
(a : R)
:
IsRestricted c (C a)
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)
:
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
- PowerSeries.IsRestricted.addSubgroup c = MvPowerSeries.IsRestricted.addSubgroup fun (x : Unit) => c
Instances For
def
PowerSeries.IsRestricted.subring
{R : Type u_1}
[NormedRing R]
[IsUltrametricDist R]
(c : ℝ)
:
Subring (PowerSeries R)
Restricted power series as an subring of PowerSeries R.
Equations
- PowerSeries.IsRestricted.subring c = MvPowerSeries.IsRestricted.subring fun (x : Unit) => c