Compose two logical implications.
2 lines · Lean 4
Objectifs
- Compose two logical implications.
Indices
Voir la solution
theorem chain (P Q R : Prop) : (P → Q) → (Q → R) → P → R := by intro hPQ hQR hP exact hQR (hPQ hP)
Compose two logical implications.
theorem chain (P Q R : Prop) : (P → Q) → (Q → R) → P → R := by intro hPQ hQR hP exact hQR (hPQ hP)