Skip to content

Commit

Permalink
文章校正
Browse files Browse the repository at this point in the history
  • Loading branch information
Seasawher committed Dec 25, 2024
1 parent 922cf0a commit 71f60eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LeanByExample/Declarative/Inductive.lean
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Peano の公理とは、次のようなものです:
* `succ` 関数は単射。つまり2つの異なる自然数 `n` と `m` に対して `succ n ≠ succ m` が成り立つ。
* 帰納法の原理が成り立つ。つまり、任意の述語 `P : ℕ → Prop` に対して `P 0` かつ `∀ n : ℕ, P n → P (succ n)` ならば `∀ n : ℕ, P n` が成り立つ。
これを `inductive` を使用して再現すると次のようになります
これを `inductive` コマンドを使用して再現すると次のようになります
-/

/-- Peano の公理によって定義された自然数 -/
Expand Down

0 comments on commit 71f60eb

Please sign in to comment.