Properties of analyticity restricted to a set #
From Mathlib.Analysis.Analytic.Basic
, we have the definitions
AnalyticWithinAt ๐ f s x
means a power series atx
converges tof
on๐[insert x s] x
.AnalyticOn ๐ f s t
meansโ x โ t, AnalyticWithinAt ๐ f s x
.
This means there exists an extension of f
which is analytic and agrees with f
on s โช {x}
, but
f
is allowed to be arbitrary elsewhere.
Here we prove basic properties of these definitions. Where convenient we assume completeness of the
ambient space, which allows us to relate AnalyticWithinAt
to analyticity of a local extension.
Basic properties #
AnalyticWithinAt
is trivial if {x} โ ๐[s] x
If f
is AnalyticOn
near each point in a set, it is AnalyticOn
the set
Alias of analyticOn_of_locally_analyticOn
.
If f
is AnalyticOn
near each point in a set, it is AnalyticOn
the set
On open sets, AnalyticOnNhd
and AnalyticOn
coincide
Alias of IsOpen.analyticOn_iff_analyticOnNhd
.
On open sets, AnalyticOnNhd
and AnalyticOn
coincide
Equivalence to analyticity of a local extension #
We show that HasFPowerSeriesWithinOnBall
, HasFPowerSeriesWithinAt
, and AnalyticWithinAt
are
equivalent to the existence of a local extension with full analyticity. We do not yet show a
result for AnalyticOn
, as this requires a bit more work to show that local extensions can
be stitched together.
f
has power series p
at x
iff some local extension of f
has that series
f
has power series p
at x
iff some local extension of f
has that series
f
is analytic within s
at x
iff some local extension of f
is analytic at x
f
is analytic within s
at x
iff some local extension of f
is analytic at x
. In this
version, we make sure that the extension coincides with f
on all of insert x s
.
Alias of the forward direction of analyticWithinAt_iff_exists_analyticAt'
.
f
is analytic within s
at x
iff some local extension of f
is analytic at x
. In this
version, we make sure that the extension coincides with f
on all of insert x s
.