Zulip Chat Archive

Stream: mathlib4

Topic: Formal power series on `ι -> R`


Yury G. Kudryashov (Oct 07 2023 at 06:51):

Do we have API for a docs#MvPowerSeries - like constructor for docs#FormalMultilinearSeries ?
I want to formalize the multivariate Cauchy integral formula using docs#torusIntegral, and I need a constructor that takes (ι →₀ R) → E and creates a formal multilinear series using sum over antidiagonal and Finsupp.prod.

Yury G. Kudryashov (Oct 07 2023 at 06:51):

If the answer is "no" (I suspect that this is the case), then I'll work on this over this week-end.

Yury G. Kudryashov (Oct 08 2023 at 01:21):

More details: I need to prove that 1(2πi)n{ζ:Cni,ζici=R}f(ζ)f(z)i(ζizi)dζ1..dζn\frac{1}{(2\pi i)^n}\oiint_{\{\zeta : \mathbb C^n \mid \forall i, |\zeta_i-c_i|=R\}}\frac{f(\zeta)-f(z)}{\prod_i(\zeta_i-z_i)}d\zeta_1..d\zeta_n is analytic in z in ball c R.

Yury G. Kudryashov (Oct 08 2023 at 01:23):

I see two options:

  • explicitly define the formal power series and prove its convergence;
  • somehow reuse facts about analyticity of the composition.

Yury G. Kudryashov (Oct 08 2023 at 01:27):

With the first approach, I will have to effectively redo some lemmas about composition. With the second approach, I will need a predicate saying that not only a series converges on a ball but we have a specific estimate on the rate of convergence.

Yury G. Kudryashov (Oct 08 2023 at 01:27):

@Sebastien Gouezel What do you think?

Sebastien Gouezel (Oct 08 2023 at 07:13):

In general, knowing that a function is analytic on a ball of radius r does not imply that its coefficients grow at most like r^{-n} (this is true over the complex, but not over the real, and this is generally deduced from Cauchy integral formula). This means that explicit estimates on composition will typically not behave as well as one could expect naively.

This does not really answer your question, but it's because I haven't really understood the question, sorry.

Yury G. Kudryashov (Oct 08 2023 at 17:53):

I'm sorry for badly formulating my question. For the second approach, I thought about introducint a predicate HasFPowerSeriesOnWith that takes an extra argument C and claims that the norm of each k-linear component is at most C / r ^ k.

Yury G. Kudryashov (Oct 08 2023 at 17:54):

Then HasFPowerSeriesOn .. R will imply ∀ r < R, ∃ C, HasFPowerSeriesOnWith .. r C.

Yury G. Kudryashov (Oct 08 2023 at 17:54):

But we can have lemmas like "if a family of functions is uniformly analytic on a ball, then the limit/integral/... is analytic as well"

Yury G. Kudryashov (Oct 08 2023 at 18:01):

The first approach is to provide an explicit formula for the series.

Antoine Chambert-Loir (Oct 09 2023 at 17:04):

Isn't this an instance of a general result about analyticity of integrals wrt parameters? Over C, one can go via holomorphy, over the reals, I'd use the result over C. Over other fields, I'd look at what Bourbaki wrote, but I fear that it requires some algebra of the kind you suggest.

Yury G. Kudryashov (Oct 09 2023 at 17:14):

What do you mean by "Over C, one can go via holomorphy"?

Yury G. Kudryashov (Oct 09 2023 at 17:15):

I need this to prove that differentiability implies analyticity in case of a domain of an arbitrary finite dimension.

Antoine Chambert-Loir (Oct 10 2023 at 05:20):

Oh, sorry for the circularity... I'll look at Cartan an Demailly 's books.

Antoine Chambert-Loir (Oct 11 2023 at 15:55):

I have Cartan's book Théorie élémentaire des fonctions analytiques d'une ou plusieurs variables complexes on my table. This theorem you wish to prove is chapter IV, §5, on page 135. It is done by first showing the representation formula that you hinted at (proposition 2.1; actually, he contents himself with the case of two variables). Then (proposition 3.1), he proves the power series expansion, by expanding under the integral sign, showing normal convergence, termwise integration and he gets the expansion, with an explicit formula.

Yury G. Kudryashov (Oct 12 2023 at 01:39):

BTW, is there some form of this theorem (differentiable -> analytic) for an infinite-dimensional codomain?

Antoine Chambert-Loir (Oct 12 2023 at 07:07):

You mean, beyond the case where the bidual morphism of the codomain is an isomorphism?

Antoine Chambert-Loir (Oct 12 2023 at 20:51):

Yury G. Kudryashov said:

BTW, is there some form of this theorem (differentiable -> analytic) for an infinite-dimensional codomain?

Bourbaki, VAR (Fascicule de résultats sur les variétés différentiables) asserts something like that for functions defined on an open subset of a finite dimensional complex vector space EE, with values in a complex topological vector space which is locally convex and quasi-complete (meaning every closed and bounded subset is complete,
EVT III, §2, n° 5). Reflexive Banach spaces, with their weak topology, are examples.

Yury G. Kudryashov (Oct 13 2023 at 03:23):

Oh, I made a typo: codomain instead of domain.

Yury G. Kudryashov (Oct 13 2023 at 03:24):

For codomains, Banach spaces work for me (for now), we can generalize later if needed.

Antoine Chambert-Loir (Oct 13 2023 at 11:00):

For infinite dimensional domain, the canonical reference is Douady (1966), Le problème des modules pour les sous-espaces analytiques compacts d'un espace analytique donné, who works with a definition of analytic spaces modeled on analytic subspaces of complex Banach spaces. (Note that this is more general than what mathlib currently allows to define because these analytic subspaces are not necessarily reduced. )

The definition is carefully done and starts with the notion of polynomial map EF E\to F where EE and FF are Banach spaces.

http://www.numdam.org/articles/10.5802/aif.226/

Antoine Chambert-Loir (Oct 13 2023 at 11:00):

(Actually, this is a special case of the notion of polynomial map MN M \to N between two modules over a commutative ring RR which is currently being formalized by @María Inés de Frutos Fernández and myself. The fact that he works over R\mathbf R (or C\mathbf C) simplifies the definition.)

Sebastien Gouezel (Oct 13 2023 at 11:42):

A reference I like a lot is Mujica, Complex analysis in Banach spaces.


Last updated: Dec 20 2023 at 11:08 UTC