Zulip Chat Archive
Stream: maths
Topic: removable singularity
Yury G. Kudryashov (Jul 23 2022 at 23:41):
Hi, do we need the [complete_space E]
assumption in docs#complex.differentiable_on_update_lim_of_is_o and related results? In other words, is it possible that the values of an analytic function belong to a non-closed complex subspace for all points but one.
I can neither prove nor disprove the version without [complete_space E]
assumption.
Yury G. Kudryashov (Jul 23 2022 at 23:42):
@Sebastien Gouezel Any ideas?
Sebastien Gouezel (Jul 24 2022 at 19:21):
No idea (I mean, no counterexample, but my guess is that the assumption [complete_space E]
is necessary). By the way, this theorem is expressed in a slightly strange way, since the assumption is that f z - f c = o(1/(z-c))
, but then the value of f c
is ditched as it might not be the right one, and replaced by the limit of f
at c
. Given this, wouldn't it be more natural to have an assumption f z = o(1/(z-c))
(which is equivalent to the previous one)?
Yury G. Kudryashov (Jul 24 2022 at 21:04):
Indeed, it is equivalent. I'll update this theorem.
Junyan Xu (Jul 24 2022 at 21:05):
I think it's better to replace f c
by any w : ℂ
. But yes it doesn't matter as you can just update the value at replace c
to be w
.f
by f - f c
.
Junyan Xu (Jul 24 2022 at 21:08):
I also think it would be nice to specialize docs#sum_cauchy_power_series_eq_integral etc. to w=0, which can then be used to golf docs#circle_integral.integral_sub_inv_of_mem_ball.
Junyan Xu (Jul 24 2022 at 21:16):
It turns out the [complete_space] assumption is indeed necessary. Let the complex analytic function f : ℂ → ℓ^2(ℂ)
defined by f(z) = (1, z, z^2, z^3, ...)
. Then any set of values is linear independent, because any finite subset is, by non-vanishing of the Vandermonde determinant. So if you take F
to be the span of f(0 < |z| < 1)
, then f(0) is not in the span.
Last updated: Dec 20 2023 at 11:08 UTC