Documentation

Books.Analysis2_Tao_2022.Chapters.Chap04.section04

def cauchyProductCoeff (c d : ) (n : ) :

The Cauchy-product coefficient sequence attached to c, d : ℕ → ℝ.

Equations
Instances For
    theorem helperForTheorem_4_4_1_absSummable_seriesTerm_at_point {a r x : } (c : ) (hc : ySet.Ioo (a - r) (a + r), Summable fun (n : ) => c n * (y - a) ^ n) (hx : x Set.Ioo (a - r) (a + r)) :
    Summable fun (n : ) => |c n * (x - a) ^ n|

    Helper for Theorem 4.4.1: at any point of (a-r, a+r), the corresponding power-series terms are absolutely summable.

    theorem helperForTheorem_4_4_1_cauchyInnerSum_rewrite (c d : ) (t : ) (n : ) :
    kFinset.range (n + 1), c k * t ^ k * (d (n - k) * t ^ (n - k)) = cauchyProductCoeff c d n * t ^ n

    Helper for Theorem 4.4.1: rewrite the inner Cauchy-product finite sum into cauchyProductCoeff c d n * t^n.

    theorem helperForTheorem_4_4_1_pointwise_product_eq_tsum {a r x : } (hr : 0 < r) (f g : (Set.Ioo (a - r) (a + r))) (c d : ) (hf_series : ∀ (y : ) (hy : y Set.Ioo (a - r) (a + r)), (Summable fun (n : ) => c n * (y - a) ^ n) f y, hy = ∑' (n : ), c n * (y - a) ^ n) (hg_series : ∀ (y : ) (hy : y Set.Ioo (a - r) (a + r)), (Summable fun (n : ) => d n * (y - a) ^ n) g y, hy = ∑' (n : ), d n * (y - a) ^ n) (hx : x Set.Ioo (a - r) (a + r)) :
    f x, hx * g x, hx = ∑' (n : ), cauchyProductCoeff c d n * (x - a) ^ n

    Helper for Theorem 4.4.1: at each point in (a-r,a+r), the pointwise product equals the Cauchy-product power-series sum.

    theorem realAnalyticOnInterval_mul_eq_cauchyProduct {a r : } (hr : 0 < r) (f g : (Set.Ioo (a - r) (a + r))) (hf_analytic : IsRealAnalyticOn (Set.Ioo (a - r) (a + r)) f) (hg_analytic : IsRealAnalyticOn (Set.Ioo (a - r) (a + r)) g) (c d : ) (hf_series : ∀ (x : ) (hx : x Set.Ioo (a - r) (a + r)), (Summable fun (n : ) => c n * (x - a) ^ n) f x, hx = ∑' (n : ), c n * (x - a) ^ n) (hg_series : ∀ (x : ) (hx : x Set.Ioo (a - r) (a + r)), (Summable fun (n : ) => d n * (x - a) ^ n) g x, hx = ∑' (n : ), d n * (x - a) ^ n) :
    (IsRealAnalyticOn (Set.Ioo (a - r) (a + r)) fun (x : (Set.Ioo (a - r) (a + r))) => f x * g x) ∀ (x : ) (hx : x Set.Ioo (a - r) (a + r)), f x, hx * g x, hx = ∑' (n : ), cauchyProductCoeff c d n * (x - a) ^ n

    Theorem 4.4.1: if f, g : (a-r, a+r) → ℝ are analytic and have power-series expansions around a with coefficients c_n and d_n on (a-r, a+r), then fg is analytic on (a-r, a+r), and for every x in that interval, f(x)g(x) = ∑' n, e_n (x-a)^n where e_n = ∑_{m=0}^n c_m d_{n-m}.