File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,19 +76,19 @@ Here is an example of how the propositions-as-types correspondence gets put into
7676
7777全称量词 `` ∀ x : α, p x `` 表示,对于每一个 `` x : α `` ,`` p x `` 成立。与命题连接词一样,在自然演绎系统中,「forall」有引入和消去规则。非正式地,引入规则是:
7878
79- > 给定 `` p x `` 的证明,在 `` x : α `` 是任意的情况下,我们得到 `` ∀ x : α, p x `` 的证明。
79+ > 在 `` x : α `` 是任意的情况下,给定 `` p x `` 的证明;就可以得到 `` ∀ x : α, p x `` 的证明。
8080
8181消去规则是:
8282
83- > 给定 `` ∀ x : α, p x `` 的证明和任何项 `` t : α `` ,我们得到 `` p t `` 的证明。
83+ > 给定 `` ∀ x : α, p x `` 的证明和任何项 `` t : α `` ,就可以得到 `` p t `` 的证明。
8484
8585与蕴含的情况一样,命题即类型。回想依值箭头类型的引入规则:
8686
87- > 给定类型为 `` β x `` 的项 `` t `` ,在 `` x : α `` 是任意的情况下,我们有 `` (fun x : α => t) : (x : α) → β x `` 。
87+ > 在 `` x : α `` 是任意的情况下给定类型为 `` β x `` 的项 `` t `` ,就可以得到 `` (fun x : α => t) : (x : α) → β x `` 。
8888
8989消去规则:
9090
91- > 给定项 `` s : (x : α) → β x `` 和任何项 `` t : α `` ,我们有 `` s t : β t `` 。
91+ > 给定项 `` s : (x : α) → β x `` 和任何项 `` t : α `` ,就可以得到 `` s t : β t `` 。
9292
9393在 `` p x `` 具有 `` Prop `` 类型的情况下,如果我们用 `` ∀ x : α, p x `` 替换 `` (x : α) → β x `` ,就得到构建涉及全称量词的证明的规则。
9494
You can’t perform that action at this time.
0 commit comments