Tactics for measure theory #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
Currently we have one domain-specific tactic for measure theory: measurability
.
This tactic is to a large extent a copy of the continuity
tactic by Reid Barton.
measurability
tactic #
Automatically solve goals of the form measurable f
, ae_measurable f μ
and measurable_set s
.
Mark lemmas with @[measurability]
to add them to the set of lemmas
used by measurability
. Note: to_additive
doesn't know yet how to
copy the attribute to the additive version.
measurability
solves goals of the form measurable f
, ae_measurable f μ
,
ae_strongly_measurable f μ
or measurable_set s
by applying lemmas tagged with the
measurability
user attribute.
You can also use measurability!
, which applies lemmas with { md := semireducible }
.
The default behaviour is more conservative, and only unfolds reducible
definitions
when attempting to match lemmas with the goal.
measurability?
reports back the proof term it found.