| Number | Statement | Line(s) Used | Reason | |
| 1 | A --> (B --> (C & ~D)) | |||
| 2 | (B v E) -> (D v E) | |||
| :. | (A & B) --> (C & E) | |||
| 3 | A & B | Assumption for Conditional Proof | ||
| 4 | B & A | 3 | Commutation | |
| 5 | A | 3 | Simplification | |
| 6 | B | 4 | Simplification | |
| 7 | B --> (C & ~D) | 1,5 | Modus Ponens | |
| 8 | C & ~D | 7,6 | Modus Ponens | |
| 9 | ~D & C | 8 | Commutation | |
| 10 | C | 8 | Simplification | |
| 11 | ~D | 9 | Simplification | |
| 12 | B v E | 6 | Addition | |
| 13 | D v E | 2,12 | Modus Ponens | |
| 14 | E | 13,11 | Disjunctive Syllogism | |
| 15 | C & E | 10,14 | Conjunction | |
| 16 | (A & B) --> (C & E) | 3 - 15 | Conditional Proof |