Skip to content

[Merged by Bors] - feat(MeasureTheory/Function): ae convergence implies convergence in distribution#39517

Closed
jvanwinden wants to merge 13 commits into
leanprover-community:masterfrom
jvanwinden:tendstoindistribution_of_ae_tendsto
Closed

[Merged by Bors] - feat(MeasureTheory/Function): ae convergence implies convergence in distribution#39517
jvanwinden wants to merge 13 commits into
leanprover-community:masterfrom
jvanwinden:tendstoindistribution_of_ae_tendsto

Conversation

@jvanwinden

@jvanwinden jvanwinden commented May 17, 2026

Copy link
Copy Markdown
Contributor

This PR introduces a theorem which concludes convergence in distribution from almost everywhere convergence.

Previously, this could be done by chaining tendstoInMeasure_of_tendsto_ae and TendstoInMeasure.tendstoInDistribution.
However, this is not a good way to to it since the second lemma requires a SeminormedAddCommGroup E instance (which is not needed for the statement to hold). Thus, we instead give a direct short proof which relies on dominated convergence.

As a consequence, we also obtain a new proof of TendstoInMeasure.tendstoInDistribution which does not pass through tendstoInDistribution_of_tendstoInMeasure_sub and therefore does not require SeminormedAddCommGroup and SecondCountableTopology anymore. I expect this will enable significant golfing (or maybe even removal) of tendstoInDistribution_of_tendstoInMeasure_sub in the future.

In order to allow for ae measurability as an assumption, it was necessary to add tendsto_lintegral_filter_of_dominated_convergence', which gives dominated convergence along a countable filter for AEMeasurable functions.

Sidenote: I believe TendstoInMeasure.tendstoInDistribution should be rewritten at some point to require only a metric space (or maybe only uniform space) structure. However, even if this was done, the theorem of this PR provides the value of relying only on TopologicalSpace E.


Open in Gitpod

@github-actions github-actions Bot added the t-measure-probability Measure theory / Probability theory label May 17, 2026
@github-actions

github-actions Bot commented May 17, 2026

Copy link
Copy Markdown

PR summary b838ba2ec6

Import changes for modified files

No significant changes to the import graph

Import changes for all files
Files Import difference

Declarations diff

+ apply_le_edist_zero
+ tendstoInDistribution_of_ae_tendsto

You can run this locally as follows
## from your `mathlib4` directory:
git clone https://github.com/leanprover-community/mathlib-ci.git ../mathlib-ci

## summary with just the declaration names:
../mathlib-ci/scripts/pr_summary/declarations_diff.sh <optional_commit>

## more verbose report:
../mathlib-ci/scripts/pr_summary/declarations_diff.sh long <optional_commit>

The doc-module for scripts/pr_summary/declarations_diff.sh in the mathlib-ci repository contains some details about this script.


No changes to strong technical debt.
No changes to weak technical debt.

@CoolRmal

Copy link
Copy Markdown
Contributor

You need a notion of distance for TendstoInMeasure, so what you said about uniform space is not correct.

@CoolRmal

Copy link
Copy Markdown
Contributor

And actually I think the proof of TendstoInMeasure.tendstoInDistribution for a (pseudo)(e)metric space (not sure whether you can do it for pseudo/extended metric) follows from the lemma you proved in this PR by using MeasureTheory.TendstoInMeasure.exists_seq_tendsto_ae' and Filter.tendsto_iff_seq_tendsto. Do you want to formalize this? If so, I think you can create a new PR dependent on this one.

@jvanwinden

Copy link
Copy Markdown
Contributor Author

You need a notion of distance for TendstoInMeasure, so what you said about uniform space is not correct.

I am aware of this, but what I meant here was that the definition of TendstoInMeasure itself could perhaps be generalized to uniform spaces. Although I am not familiar enough with uniform spaces to way whether the proofs would carry over.

@jvanwinden

Copy link
Copy Markdown
Contributor Author

And actually I think the proof of TendstoInMeasure.tendstoInDistribution for a (pseudo)(e)metric space (not sure whether you can do it for pseudo/extended metric) follows from the lemma you proved in this PR by using MeasureTheory.TendstoInMeasure.exists_seq_tendsto_ae' and Filter.tendsto_iff_seq_tendsto. Do you want to formalize this? If so, I think you can create a new PR dependent on this one.

I had also been thinking about this route, and I think it would be a good idea. In the coming week I can check if a nice proof indeed falls out.

@CoolRmal

Copy link
Copy Markdown
Contributor

You need a notion of distance for TendstoInMeasure, so what you said about uniform space is not correct.

I am aware of this, but what I meant here was that the definition of TendstoInMeasure itself could perhaps be generalized to uniform spaces. Although I am not familiar enough with uniform spaces to way whether the proofs would carry over.

Oh I think I see what you mean. This is interesting! Maybe I'll do an experiment with the definition of TendstoInMeasure recently.

@jvanwinden

jvanwinden commented May 21, 2026

Copy link
Copy Markdown
Contributor Author

And actually I think the proof of TendstoInMeasure.tendstoInDistribution for a (pseudo)(e)metric space (not sure whether you can do it for pseudo/extended metric) follows from the lemma you proved in this PR by using MeasureTheory.TendstoInMeasure.exists_seq_tendsto_ae' and Filter.tendsto_iff_seq_tendsto. Do you want to formalize this? If so, I think you can create a new PR dependent on this one.

I had also been thinking about this route, and I think it would be a good idea. In the coming week I can check if a nice proof indeed falls out.

A nice proof did indeed fall out (currently 6 lines, plus it generalizes SeminormedAddCommGroup to PseudoEMetricSpace and removes SecondCountableTopology. I will clean it up and add it to this PR.

@jvanwinden

Copy link
Copy Markdown
Contributor Author

awaiting-author

@github-actions github-actions Bot added the awaiting-author A reviewer has asked the author a question or requested changes. label May 21, 2026
@jvanwinden

Copy link
Copy Markdown
Contributor Author

You need a notion of distance for TendstoInMeasure, so what you said about uniform space is not correct.

I am aware of this, but what I meant here was that the definition of TendstoInMeasure itself could perhaps be generalized to uniform spaces. Although I am not familiar enough with uniform spaces to way whether the proofs would carry over.

Oh I think I see what you mean. This is interesting! Maybe I'll do an experiment with the definition of TendstoInMeasure recently.

Funnily enough, the characterization of convergence in measure in terms of a.e. convergent subsequences does not even require a uniformity! Thus it would even be possible to write a definition of TendstoInMeasure which only requires a topology.

I am not sure if I would advocate for this, since it is not the standard definition and the equivalence only holds for countably generated filters, but I do think this is something worth thinking about.

@CoolRmal

CoolRmal commented May 22, 2026

Copy link
Copy Markdown
Contributor

May you be more specific about how you would like to define TendstoInMeasure by using only topology? Here's a list of definitions that I am thinking about.

import Mathlib.MeasureTheory.Measure.MeasureSpaceDef

open scoped Topology

open Filter

def MeasureTheory.TendstoInMeasure {ι α E : Type*} [EDist E] {m : MeasurableSpace α} 
    (μ : Measure α) (f : ι → α → E) (l : Filter ι) (g : α → E) : Prop := 
  ∀ ε, 0 < ε → Tendsto (fun i => μ { x | ε ≤ edist (f i x) (g x) }) l (𝓝 0)

def MeasureTheory.TendstoInMeasure' {ι α E : Type*} [UniformSpace E] {m : MeasurableSpace α} 
    (μ : Measure α) (f : ι → α → E) (l : Filter ι) (g : α → E) : Prop := 
  ∀ s ∈ uniformity E, Tendsto (fun i => μ { x | ⟨f i x, g x⟩ ∉ s }) l (𝓝 0)

def MeasureTheory.TendstoInMeasure'' {ι α E : Type*} [TopologicalSpace E] {m : MeasurableSpace α} 
    (μ : Measure α) (f : ι → α → E) (l : Filter ι) (g : α → E) : Prop := 
  ∀ s : α → Set E, (∀ x, s x ∈ 𝓝 (g x)) → Tendsto (fun i => μ { x | f i x ∉ s x }) l (𝓝 0)

def MeasureTheory.TendstoInMeasure''' {ι α E : Type*} [TopologicalSpace E] {m : MeasurableSpace α} 
    (μ : Measure α) (f : ι → α → E) (l : Filter ι) (g : α → E) : Prop := 
  ∀ s ∈ 𝓝 g, Tendsto (fun i => μ { x | f i x ∉ (Function.eval x '' s) }) l (𝓝 0)

The first one is just the classical definition used in Mathlib right now. It naturally leads to the second definition (as a uniform space structure can be constructed from a pseudoEMetricSpace by uniformSpaceOfEDist). The second definition is not really more general than the first one, as an EDist does not always induces a uniform strucutre, but I believe both definitions are equivalent with MeasureTheory.tendstoInMeasure_iff_dist in the case that E is a pseudometric space.

The third and the fourth definitions are my guesses of how we should define it in a general topological space, but I don't think they give an equivalent definition with the classical one when E is a pseduometric space.

Maybe we should create a Zulip thread for this.

@jvanwinden

Copy link
Copy Markdown
Contributor Author

I have added the new proof of TendstoInMeasure.tendstoInDistribution. I expect that this will enable us to significantly golf (or perhaps even remove?) tendstoInDistribution_of_tendstoInMeasure_sub. But this PR is already experiencing some scope creep.

@jvanwinden

Copy link
Copy Markdown
Contributor Author

-awaiting-author

@github-actions github-actions Bot removed the awaiting-author A reviewer has asked the author a question or requested changes. label May 23, 2026
@jvanwinden

Copy link
Copy Markdown
Contributor Author

May you be more specific about how you would like to define TendstoInMeasure by using only topology? Here's a list of definitions that I am thinking about.

import Mathlib.MeasureTheory.Measure.MeasureSpaceDef

open scoped Topology

open Filter

def MeasureTheory.TendstoInMeasure {ι α E : Type*} [EDist E] {m : MeasurableSpace α} 
    (μ : Measure α) (f : ι → α → E) (l : Filter ι) (g : α → E) : Prop := 
  ∀ ε, 0 < ε → Tendsto (fun i => μ { x | ε ≤ edist (f i x) (g x) }) l (𝓝 0)

def MeasureTheory.TendstoInMeasure' {ι α E : Type*} [UniformSpace E] {m : MeasurableSpace α} 
    (μ : Measure α) (f : ι → α → E) (l : Filter ι) (g : α → E) : Prop := 
  ∀ s ∈ uniformity E, Tendsto (fun i => μ { x | ⟨f i x, g x⟩ ∉ s }) l (𝓝 0)

def MeasureTheory.TendstoInMeasure'' {ι α E : Type*} [TopologicalSpace E] {m : MeasurableSpace α} 
    (μ : Measure α) (f : ι → α → E) (l : Filter ι) (g : α → E) : Prop := 
  ∀ s : α → Set E, (∀ x, s x ∈ 𝓝 (g x)) → Tendsto (fun i => μ { x | f i x ∉ s x }) l (𝓝 0)

def MeasureTheory.TendstoInMeasure''' {ι α E : Type*} [TopologicalSpace E] {m : MeasurableSpace α} 
    (μ : Measure α) (f : ι → α → E) (l : Filter ι) (g : α → E) : Prop := 
  ∀ s ∈ 𝓝 g, Tendsto (fun i => μ { x | f i x ∉ (Function.eval x '' s) }) l (𝓝 0)

The first one is just the classical definition used in Mathlib right now. It naturally leads to the second definition (as a uniform space structure can be constructed from a pseudoEMetricSpace by uniformSpaceOfEDist). The second definition is not really more general than the first one, as an EDist does not always induces a uniform strucutre, but I believe both definitions are equivalent with MeasureTheory.tendstoInMeasure_iff_dist in the case that E is a pseudometric space.

The third and the fourth definitions are my guesses of how we should define it in a general topological space, but I don't think they give an equivalent definition with the classical one when E is a pseduometric space.

Maybe we should create a Zulip thread for this.

What I meant with TopologicalSpace was the following: for sequences of (finite) measures, convergence in probability is equivalent to the statement that every subsequence has a further subsequence which converges almost surely. But this subsequence property only requires a TopologicalSpace instance. Thus we could use this as a definition instead.

However, there is the issue that this characterization only holds true for finite measures and countably generated filters. And I would expect that these drawbacks weigh more heavily than the benefit of generalizing from UniformSpace to TopologicalSpace.

Comment thread Mathlib/MeasureTheory/Integral/Lebesgue/DominatedConvergence.lean
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
@EtienneC30 EtienneC30 added the awaiting-author A reviewer has asked the author a question or requested changes. label May 24, 2026
@mathlib-dependent-issues mathlib-dependent-issues Bot added the blocked-by-other-PR This PR depends on another PR (this label is automatically managed by a bot) label May 24, 2026
mathlib-bors Bot pushed a commit that referenced this pull request May 26, 2026
…ctions (#39768)

This PR was automatically created from PR #39517 by @jvanwinden via a [review comment](#39517 (comment)) by @EtienneC30.

Co-authored-by: jvanwinden <6528059+jvanwinden@users.noreply.github.com>
@mathlib-dependent-issues mathlib-dependent-issues Bot removed the blocked-by-other-PR This PR depends on another PR (this label is automatically managed by a bot) label May 26, 2026
@jvanwinden

Copy link
Copy Markdown
Contributor Author

-awaiting-author

@github-actions github-actions Bot removed the awaiting-author A reviewer has asked the author a question or requested changes. label May 26, 2026
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
@RemyDegenne RemyDegenne added the awaiting-author A reviewer has asked the author a question or requested changes. label May 28, 2026
@jvanwinden

Copy link
Copy Markdown
Contributor Author

-awaiting-author

@github-actions github-actions Bot removed the awaiting-author A reviewer has asked the author a question or requested changes. label May 28, 2026
Comment thread Mathlib/MeasureTheory/Function/ConvergenceInDistribution.lean Outdated
@EtienneC30 EtienneC30 added the awaiting-author A reviewer has asked the author a question or requested changes. label May 29, 2026
@github-actions

Copy link
Copy Markdown

🚀 Pull request has been placed on the maintainer queue by EtienneC30.

@mathlib-triage mathlib-triage Bot added the maintainer-merge A reviewer has approved the changed; awaiting maintainer approval. label May 29, 2026
Co-authored-by: Etienne Marion <66847262+EtienneC30@users.noreply.github.com>
@RemyDegenne

Copy link
Copy Markdown
Contributor

Thanks!
bors r+

@mathlib-triage mathlib-triage Bot added ready-to-merge This PR has been sent to bors. and removed awaiting-author A reviewer has asked the author a question or requested changes. maintainer-merge A reviewer has approved the changed; awaiting maintainer approval. labels May 29, 2026
mathlib-bors Bot pushed a commit that referenced this pull request May 29, 2026
…istribution (#39517)

This PR introduces a theorem which concludes convergence in distribution from almost everywhere convergence. 

Previously, this could be done by chaining [`tendstoInMeasure_of_tendsto_ae`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInMeasure.html#MeasureTheory.tendstoInMeasure_of_tendsto_ae) and [`TendstoInMeasure.tendstoInDistribution`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInDistribution.html#MeasureTheory.TendstoInMeasure.tendstoInDistribution).
However, this is not a good way to to it since the second lemma requires a `SeminormedAddCommGroup E` instance (which is not needed for the statement to hold). Thus, we instead give a direct short proof which relies on dominated convergence.

As a consequence, we also obtain a new proof of `TendstoInMeasure.tendstoInDistribution` which does not pass through `tendstoInDistribution_of_tendstoInMeasure_sub` and therefore does not require `SeminormedAddCommGroup` and `SecondCountableTopology` anymore. I expect this will enable significant golfing (or maybe even removal) of `tendstoInDistribution_of_tendstoInMeasure_sub` in the future.

In order to allow for ae measurability as an assumption, it was necessary to add `tendsto_lintegral_filter_of_dominated_convergence'`, which gives dominated convergence along a countable filter for `AEMeasurable` functions.

Sidenote: I believe [`TendstoInMeasure.tendstoInDistribution`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInDistribution.html#MeasureTheory.TendstoInMeasure.tendstoInDistribution) should be rewritten at some point to require only a metric space (or maybe only uniform space) structure. However, even if this was done, the theorem of this PR provides the value of relying only on `TopologicalSpace E`.

Co-authored-by: Rémy Degenne <remydegenne@gmail.com>
@jvanwinden

Copy link
Copy Markdown
Contributor Author

Thanks for the thorough reviews! I learned some new tricks.

@mathlib-bors

mathlib-bors Bot commented May 29, 2026

Copy link
Copy Markdown
Contributor

Pull request successfully merged into master.

Build succeeded:

@mathlib-bors mathlib-bors Bot changed the title feat(MeasureTheory/Function): ae convergence implies convergence in distribution [Merged by Bors] - feat(MeasureTheory/Function): ae convergence implies convergence in distribution May 29, 2026
@mathlib-bors mathlib-bors Bot closed this May 29, 2026
grunweg pushed a commit to grunweg/mathlib4 that referenced this pull request May 30, 2026
…istribution (leanprover-community#39517)

This PR introduces a theorem which concludes convergence in distribution from almost everywhere convergence. 

Previously, this could be done by chaining [`tendstoInMeasure_of_tendsto_ae`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInMeasure.html#MeasureTheory.tendstoInMeasure_of_tendsto_ae) and [`TendstoInMeasure.tendstoInDistribution`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInDistribution.html#MeasureTheory.TendstoInMeasure.tendstoInDistribution).
However, this is not a good way to to it since the second lemma requires a `SeminormedAddCommGroup E` instance (which is not needed for the statement to hold). Thus, we instead give a direct short proof which relies on dominated convergence.

As a consequence, we also obtain a new proof of `TendstoInMeasure.tendstoInDistribution` which does not pass through `tendstoInDistribution_of_tendstoInMeasure_sub` and therefore does not require `SeminormedAddCommGroup` and `SecondCountableTopology` anymore. I expect this will enable significant golfing (or maybe even removal) of `tendstoInDistribution_of_tendstoInMeasure_sub` in the future.

In order to allow for ae measurability as an assumption, it was necessary to add `tendsto_lintegral_filter_of_dominated_convergence'`, which gives dominated convergence along a countable filter for `AEMeasurable` functions.

Sidenote: I believe [`TendstoInMeasure.tendstoInDistribution`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInDistribution.html#MeasureTheory.TendstoInMeasure.tendstoInDistribution) should be rewritten at some point to require only a metric space (or maybe only uniform space) structure. However, even if this was done, the theorem of this PR provides the value of relying only on `TopologicalSpace E`.

Co-authored-by: Rémy Degenne <remydegenne@gmail.com>
b-mehta pushed a commit to b-mehta/mathlib4 that referenced this pull request Jun 2, 2026
…ctions (leanprover-community#39768)

This PR was automatically created from PR leanprover-community#39517 by @jvanwinden via a [review comment](leanprover-community#39517 (comment)) by @EtienneC30.

Co-authored-by: jvanwinden <6528059+jvanwinden@users.noreply.github.com>
b-mehta pushed a commit to b-mehta/mathlib4 that referenced this pull request Jun 2, 2026
…istribution (leanprover-community#39517)

This PR introduces a theorem which concludes convergence in distribution from almost everywhere convergence. 

Previously, this could be done by chaining [`tendstoInMeasure_of_tendsto_ae`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInMeasure.html#MeasureTheory.tendstoInMeasure_of_tendsto_ae) and [`TendstoInMeasure.tendstoInDistribution`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInDistribution.html#MeasureTheory.TendstoInMeasure.tendstoInDistribution).
However, this is not a good way to to it since the second lemma requires a `SeminormedAddCommGroup E` instance (which is not needed for the statement to hold). Thus, we instead give a direct short proof which relies on dominated convergence.

As a consequence, we also obtain a new proof of `TendstoInMeasure.tendstoInDistribution` which does not pass through `tendstoInDistribution_of_tendstoInMeasure_sub` and therefore does not require `SeminormedAddCommGroup` and `SecondCountableTopology` anymore. I expect this will enable significant golfing (or maybe even removal) of `tendstoInDistribution_of_tendstoInMeasure_sub` in the future.

In order to allow for ae measurability as an assumption, it was necessary to add `tendsto_lintegral_filter_of_dominated_convergence'`, which gives dominated convergence along a countable filter for `AEMeasurable` functions.

Sidenote: I believe [`TendstoInMeasure.tendstoInDistribution`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInDistribution.html#MeasureTheory.TendstoInMeasure.tendstoInDistribution) should be rewritten at some point to require only a metric space (or maybe only uniform space) structure. However, even if this was done, the theorem of this PR provides the value of relying only on `TopologicalSpace E`.

Co-authored-by: Rémy Degenne <remydegenne@gmail.com>
Bergschaf pushed a commit to Bergschaf/mathlib4 that referenced this pull request Jun 3, 2026
…ctions (leanprover-community#39768)

This PR was automatically created from PR leanprover-community#39517 by @jvanwinden via a [review comment](leanprover-community#39517 (comment)) by @EtienneC30.

Co-authored-by: jvanwinden <6528059+jvanwinden@users.noreply.github.com>
Bergschaf pushed a commit to Bergschaf/mathlib4 that referenced this pull request Jun 3, 2026
…istribution (leanprover-community#39517)

This PR introduces a theorem which concludes convergence in distribution from almost everywhere convergence. 

Previously, this could be done by chaining [`tendstoInMeasure_of_tendsto_ae`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInMeasure.html#MeasureTheory.tendstoInMeasure_of_tendsto_ae) and [`TendstoInMeasure.tendstoInDistribution`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInDistribution.html#MeasureTheory.TendstoInMeasure.tendstoInDistribution).
However, this is not a good way to to it since the second lemma requires a `SeminormedAddCommGroup E` instance (which is not needed for the statement to hold). Thus, we instead give a direct short proof which relies on dominated convergence.

As a consequence, we also obtain a new proof of `TendstoInMeasure.tendstoInDistribution` which does not pass through `tendstoInDistribution_of_tendstoInMeasure_sub` and therefore does not require `SeminormedAddCommGroup` and `SecondCountableTopology` anymore. I expect this will enable significant golfing (or maybe even removal) of `tendstoInDistribution_of_tendstoInMeasure_sub` in the future.

In order to allow for ae measurability as an assumption, it was necessary to add `tendsto_lintegral_filter_of_dominated_convergence'`, which gives dominated convergence along a countable filter for `AEMeasurable` functions.

Sidenote: I believe [`TendstoInMeasure.tendstoInDistribution`](https://leanprover-community.github.io/mathlib4_docs/Mathlib/MeasureTheory/Function/ConvergenceInDistribution.html#MeasureTheory.TendstoInMeasure.tendstoInDistribution) should be rewritten at some point to require only a metric space (or maybe only uniform space) structure. However, even if this was done, the theorem of this PR provides the value of relying only on `TopologicalSpace E`.

Co-authored-by: Rémy Degenne <remydegenne@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ready-to-merge This PR has been sent to bors. t-measure-probability Measure theory / Probability theory

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants