このブログは、旧・はてなダイアリー「檜山正幸のキマイラ飼育記 メモ編」(http://d.hatena.ne.jp/m-hiyama-memo/)のデータを移行・保存したものであり、今後(2019年1月以降)更新の予定はありません。

今後の更新は、新しいブログ http://m-hiyama-memo.hatenablog.com/ で行います。

自然演繹、Mizar、SerND

Natural Deduction Mizar SerND
→ introduction assume assume + use
→ elimination apply
∧ introduction thus concat
∧ elimination select
∨ introduction add
∨ elimination per cases cases
∀ introduction let for
∀ elimination instantiate
∃ introduction take introduce
∃ elimination consider choice

特にキーワードがないのは、

  1. ⇒除去 apply モダスポネンス
  2. ∧除去 select
  3. ∨導入 add
  4. ∀除去 instantiate

いずれも then, thus, byあたりで済ますのだろう。SerNDでも取り入れられるか。

A
then
B by A⇒B // apply to

A∧B
then // select
A

from A∧B // select
A

A
then // add
A∨B

from A // add
A∨B

∀x.P
then // instantiate
P(t)

from ∀x.P // instantiate
P(a)

やっぱり、明白さに欠ける。