<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>yoshihiro503</author_name>
  <author_url>https://blog.hatena.ne.jp/yoshihiro503/</author_url>
  <blog_title>にわとり小屋でのプログラミング</blog_title>
  <blog_url>https://yosh.hateblo.jp/</blog_url>
  <categories>
  </categories>
  <description>自然数の様々な性質は既にCoqの標準ライブラリに豊富に揃っているが、これらの性質は非常にベーシックなので、一から定義して証明してみた。以下はCoqのArithライブラリも特別なタクティックも使わずに実装した。まず、自然数全体の型 nat を定義する。 Inductive nat : Set := | O : nat | S : nat -&gt; nat. 次にこの自然数上での足し算を計算する plus 関数を定義する。 Fixpoint plus x y := match x with | O =&gt; y | S x =&gt; S (plus x y) end where &quot;x + y&quot; := (plu…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fyosh.hateblo.jp%2Fentry%2F20091023%2Fp2&quot; title=&quot; 自然数(エンコーディングは問わず)の加算の可換法則、結合法則、分配法則を証明。 - にわとり小屋でのプログラミング&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url></image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2009-10-23 00:00:01</published>
  <title> 自然数(エンコーディングは問わず)の加算の可換法則、結合法則、分配法則を証明。</title>
  <type>rich</type>
  <url>https://yosh.hateblo.jp/entry/20091023/p2</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
