A Schauder basis for a Banach space.
For each vector x, the series ā' n, coeff n x ⢠basis n converges to x,
and this expansion is unique. The coordinate maps are stored as continuous
linear maps.
- basis : ā ā E
Basis vectors.
Continuous coordinate maps.
Every vector equals the sum of its basis expansion.
- unique_coeff (x : E) (a : ā ā š) : HasSum (fun (n : ā) => a n ⢠self.basis n) x ā a = fun (n : ā) => (self.coeff n) x
Coefficients in this expansion are unique.
Instances For
The nth coordinate of x in the basis b.
Instances For
A Schauder basis is unconditional if permuting the terms of the basis series does not change its sum.
Equations
- b.IsUnconditional = ā (x : E) (Ļ : Equiv.Perm ā), HasSum (fun (n : ā) => (b.coeff (Ļ n)) x ⢠b.basis (Ļ n)) x
Instances For
An unconditional Schauder basis.
This is a Schauder basis together with the statement that every rearranged basis expansion still converges to the same vector.
- toSchauderBasis : SchauderBasis š E
Underlying Schauder basis.
- unconditional : self.toSchauderBasis.IsUnconditional
Every rearranged basis expansion converges to the same sum.
Instances For
Equations
- UnconditionalSchauderBasis.instCoeSchauderBasis = { coe := fun (b : UnconditionalSchauderBasis š E) => b.toSchauderBasis }
Basis vectors of an unconditional Schauder basis.
Equations
- b.basis = b.toSchauderBasis.basis
Instances For
Continuous coordinate maps of an unconditional Schauder basis.
Equations
- b.coeff = b.toSchauderBasis.coeff
Instances For
From a finite sign estimate to an unconditional Schauder basis #
This section proves a practical criterion for building an unconditional Schauder basis.
We work in Banach spaces over a nontrivially normed field of characteristic
zero, with sequences indexed by ā.
Mathematically, the theorem is:
- if
x : ā ā Ehas dense closed linear span, - if no
x nis zero, - and if finite signed sums satisfy
āā i ā s, (ε i * a i) ⢠x iā ⤠C * āā i ā s, a i ⢠x iā,
then x determines an unconditional Schauder basis.
We separate finite-dimensional algebra from analytic arguments so each step is easier to follow.
The closed linear span of x is all of E.
In infinite-dimensional Banach spaces, this is the right meaning of
"the vectors x n span E".
Equations
- UnconditionalCriterion.HasDenseSpan x = (closure ā(Submodule.span š (Set.range x)) = Set.univ)
Instances For
Finite sign estimate.
This is
āā_{i ā s} ε_i a_i x_iā ⤠C āā_{i ā s} a_i x_iā,
with each ε_i equal to 1 or -1.
Equations
Instances For
Main existence theorem: finite sign bound + dense span + x n ā 0 produce an
unconditional Schauder basis whose basis sequence is exactly x.