Zulip Chat Archive

Stream: new members

Topic: how to do variable substitute?


Junqi Liu (May 19 2024 at 15:10):

example (a : ) (_ : 0 < a) :  (z : ) in (0)..1, 1 / (1 - a * z) =  (z : ) in (0)..a, (1 / a) * 1 / (1 - z) := by
  sorry

how to do variable substitute z=azz = a * z

Mitchell Lee (May 19 2024 at 16:27):

Look at the statement and proof of docs#MeasureTheory.integral_comp_mul_left_Ioi, and try to prove a version of that theorem for integrals over bounded intervals.


Last updated: May 02 2025 at 03:31 UTC