Zulip Chat Archive

Stream: Is there code for X?

Topic: Integral of complex functions


Jason KY. (Oct 14 2021 at 16:43):

Do we have something like this?

lemma integrable.integral_eq_coe_re_add_coe_im {f : α  } (hf : integrable f μ) :
   x, f x μ =  x, (f x).re μ +  x, (f x).im μ * complex.I :=

If not which file should it belong in?

Jason KY. (Oct 15 2021 at 20:14):

I created #9735 for this lemma (generalized to is_R_or_C). Do tell me if it is there already/I placed the lemmas in the wrong file.

Yury G. Kudryashov (Oct 16 2021 at 20:21):

I think that we should add instances [is_R_or_C k] : measurable_space k and [is_R_or_C k] : borel_space k.

Yury G. Kudryashov (Oct 16 2021 at 20:21):

Both instances have measurable_space defeq to borel anyway.

Yury G. Kudryashov (Oct 16 2021 at 20:22):

(but this might be out of the scope for this PR)


Last updated: Dec 20 2023 at 11:08 UTC