Skip to content

Commit

Permalink
tauto タクティクの説明で、命題論理を強調する
Browse files Browse the repository at this point in the history
Fixes #964
  • Loading branch information
Seasawher committed Oct 24, 2024
1 parent 397c00a commit ae99e29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LeanByExample/Reference/Tactic/Tauto.lean
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ example : (P → (Q → R)) → ((P → Q) → (P → R)) := by
tauto

-- 否定と同値なら矛盾
example : (P ↔ ¬ P) → false := by
example : (P ↔ ¬ P) → False := by
tauto

/- `tauto` はすべてのトートロジーを示せるわけではありません。ごく簡単なトートロジーの中にも `tauto` で示せないものがあります。-/
/- `tauto` が扱えるのは命題論理の範囲で記述できる命題だけです。述語論理における恒真な式は、ごく簡単なものであっても `tauto` で示せないことがあります。-/

variable (α : Type) (S : α → Prop)

Expand Down

0 comments on commit ae99e29

Please sign in to comment.