Contrapose #
The contrapose
tactic transforms the goal into its contrapositive when that goal is an
implication.
contrapose
turns a goalP → Q
into¬ Q → ¬ P
contrapose!
turns a goalP → Q
into¬ Q → ¬ P
and pushes negations insideP
andQ
usingpush_neg
contrapose h
first reverts the local assumptionh
, and then usescontrapose
andintro h
contrapose! h
first reverts the local assumptionh
, and then usescontrapose!
andintro h
contrapose h with new_h
uses the namenew_h
for the introduced hypothesis
Transforms the goal into its contrapositive.
contrapose
turns a goalP → Q
into¬ Q → ¬ P
contrapose h
first reverts the local assumptionh
, and then usescontrapose
andintro h
contrapose h with new_h
uses the namenew_h
for the introduced hypothesis
Equations
- One or more equations did not get rendered due to their size.
Instances For
Transforms the goal into its contrapositive and uses pushes negations inside P
and Q
.
Usage matches contrapose
Equations
- One or more equations did not get rendered due to their size.