| Description: Theorem 5.5 of [Clemente] p. 18, translated line by line using the
       usual translation of natural deduction (ND) in the
       Metamath Proof Explorer (MPE) notation.
       For information about ND and Metamath, see the
       page on Deduction Form and Natural Deduction
       in Metamath Proof Explorer.
       The original proof, which uses Fitch style, was written as follows
       (the leading "..." shows an embedded ND hypothesis, beginning with
       the initial assumption of the ND hypothesis): 
       | # | MPE# | ND Expression | MPE Translation | ND Rationale | MPE Rationale | 
|---|
 | 1 | 2;3 | (𝜓 → 𝜒) | (𝜑 → (𝜓 → 𝜒)) | Given | $e; adantr 480 to move it into the ND hypothesis |  | 2 | 5 | ¬ 𝜒 | (𝜑 → ¬ 𝜒) | Given | $e; we'll use adantr 480 to move it into the ND hypothesis |  | 3 | 1 | ...| 𝜓 | ((𝜑 ∧ 𝜓) → 𝜓) | ND hypothesis assumption | simpr 484 |  | 4 | 4 | ... 𝜒 | ((𝜑 ∧ 𝜓) → 𝜒) | →E 1,3 | mpd 15 1,3 |  | 5 | 6 | ... ¬ 𝜒 | ((𝜑 ∧ 𝜓) → ¬ 𝜒) | IT 2 | adantr 480 5 |  | 6 | 7 | ¬ 𝜓 | (𝜑 → ¬ 𝜓) | ∧I 3,4,5 | pm2.65da 816 4,6 |  
       The original used Latin letters; we have replaced them with
       Greek letters to follow Metamath naming conventions and so that
       it is easier to follow the Metamath translation.
       The Metamath line-for-line translation of this
       natural deduction approach precedes every line with an antecedent
       including 𝜑 and uses the Metamath equivalents
       of the natural deduction rules.
       To add an assumption, the antecedent is modified to include it
       (typically by using adantr 480; simpr 484 is useful when you want to
       depend directly on the new assumption).
       Below is the final Metamath proof (which reorders some steps).
 
       A much more efficient proof is mtod 198;
       a proof without context is shown in mto 197.
 
       (Contributed by David A. Wheeler, 19-Feb-2017.)
       (Proof modification is discouraged.)  (New usage is
discouraged.) |