Contrapose #
The contrapose tactic transforms the goal into its contrapositive when that goal is an
implication.
- contraposeturns a goal- P → Qinto- ¬ Q → ¬ P
- contrapose!turns a goal- P → Qinto- ¬ Q → ¬ Pand pushes negations inside- Pand- Qusing- push_neg
- contrapose hfirst reverts the local assumption- h, and then uses- contraposeand- intro h
- contrapose! hfirst reverts the local assumption- h, and then uses- contrapose!and- intro h
- contrapose h with new_huses the name- new_hfor the introduced hypothesis
Transforms the goal into its contrapositive.
- contraposeturns a goal- P → Qinto- ¬ Q → ¬ P
- contrapose hfirst reverts the local assumption- h, and then uses- contraposeand- intro h
- contrapose h with new_huses the name- new_hfor 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.