Skip to content

Commit 2978c54

Browse files
committed
simplifications
1 parent 4b9af26 commit 2978c54

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

theories/measure.v

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,23 +1390,19 @@ Qed.
13901390

13911391
End sigma_ring_lambda_system.
13921392

1393-
Lemma countable_bigcupT_measurable d (T : sigmaRingType d) (U : choiceType)
1393+
Lemma countable_bigcupT_measurable d (T : sigmaRingType d) U
13941394
(F : U -> set T) : countable [set: U] ->
13951395
(forall i, measurable (F i)) -> measurable (\bigcup_i F i).
13961396
Proof.
1397-
elim/choicePpointed: U => U in F *.
1398-
by move=> _ _; rewrite empty_eq0 bigcup0.
1397+
elim/Ppointed: U => U in F *; first by move=> *; rewrite empty_eq0 bigcup0.
13991398
move=> /countable_bijP[B] /ppcard_eqP[f] Fm.
14001399
rewrite (reindex_bigcup f^-1%FUN setT)//=; first exact: bigcupT_measurable.
14011400
exact: (@subl_surj _ _ B).
14021401
Qed.
14031402

14041403
Lemma bigcupT_measurable_rat d (T : sigmaRingType d) (F : rat -> set T) :
14051404
(forall i, measurable (F i)) -> measurable (\bigcup_i F i).
1406-
Proof.
1407-
apply: countable_bigcupT_measurable.
1408-
by apply/countable_bijP; exists setT; exact: card_rat.
1409-
Qed.
1405+
Proof. exact/countable_bigcupT_measurable. Qed.
14101406

14111407
Section measurable_lemmas.
14121408
Context d (T : measurableType d).

0 commit comments

Comments
 (0)