Coq/SSReflect/MathCompの文献


Coq/SSReflect/MathCompの文献

@suharahiromichi

2021/08/04
2021/08/05
2021/08/08 - SSReflectのリファレンスマニュアルはオンライン版を推奨するように訂正した。
2021/08/13 - MathCompライブラリの論文を追加した。


whoami

Coq Proof Assistant の SSReflect proof language の Mathematical Components というライブラリで、全体を総称して Mathematical Components と呼ぶようです。
Mathematical Componentsの正式な略称は無いようですが、MathCompというのが使われるようです。
本資料では、Coq/SSReflect/MathCompの全体を指す時にはMathComp、とくに文法について指すときはSSReflectと呼ぶようにします。

公式サイト

  • 一次配布元でもある公式サイトにも、文献やビデオへのリンクがあります。

Mathematical Components
https://math-comp.github.io/

  • ソースコードは以下からブラウスできます。これに勝る解説はありません。

math-comp/math-comp
https://github.com/math-comp/math-comp/tree/master/mathcomp

日本語情報

書籍

  • みなさん持っていますよね。

[HA18] 萩原学, アフェルト・レナルド,
Coq/SSReflect/MathCompによる定理証明 - フリーソフトではじめる数学の形式化
森北出版

日本語解説サイト

  • [HA18]に記載されていないノウハウがあるので一読を薦めます。Cheat Sheatもあります。

Coq/SSReflect/MathComp Tutorial
https://staff.aist.go.jp/reynald.affeldt/ssrcoq/

一次資料

  • MathComp の全容を解説した書籍で、MathCompのソースコードを読むための知識が得られます。 必読。

[MCB] Assia Mahboubi, Enrico Tassi,
Mathematical Components (the Book)
https://math-comp.github.io/mcb/

SSReflect

  • キモいとさえ言われるSSReflectの文法ですが、公式のユーザズマニュアルがあります。 ただし、古い版のSSReflectで改訂が止まっているので、最新の情報は次のオンライン・リファレンスマニュアルを参照してください。

[GMT15] Georges Gonthier, Assia Mahboubi, Enrico Tassi,
A Small Scale Reflection Extension for the Coq system
https://hal.inria.fr/inria-00258384v16/document

  • オンライン・リファレンスマニュアルです。

coq.inria.fr からは、Reference ManualBasic proof writingThe SSReflect proof language でたどれます。直リンクは以下です。

Georges Gonthier, Assia Mahboubi, Enrico Tassi,
The SSReflect proof language
https://coq.inria.fr/refman/proof-engine/ssreflect-proof-language.html

  • [GMT15] に対応した公式のチュートリアルです。

[GM11] Georges Gonthier, Assia Mahboubi,
An introduction to small scale reflection in Coq
https://hal.inria.fr/inria-00515548v4/document

MathComp ライブラリ

  • MathCompライブラリの原理といえるPacked Classの説明です。

[GGMR09] Francois Garillot, Georges Gonthier, Assia Mahboubi, Laurence Rideau,
Packaging mathematical structures
http://www.normalesup.org/~garillot/tphols09.pdf

  • [GGMR09] は multiple inheritance に関する説明が十分でないとの指摘を頂いています。次のふたつの論文を併読するとよいそうです。私はまだ読んでいませんが、参考になりそうです。(ふたつめの論文を追加しました。)

Reynald Affeldt, Cyril Cohen, Marie Kerjean, Assia Mahboubi, Damien, Rouhling, Kazuhiko Sakaguchi,
Competing inheritance paths in dependent type theory: a case study in functional analysis
https://hal.inria.fr/hal-02463336v2/document

Kazuhiko Sakaguchi,
Validating Mathematical Structures
https://arxiv.org/pdf/2002.00620.pdf

  • Packed Classを実現するために使われるCanonical Structureの解説ですが、表題に反して内容は難しいです。私は読めていません。

[MT13] Assia Mahboubi, Enrico Tassi,
Canonical Structures for the working Coq user
https://hal.inria.fr/hal-00816703v1/document

解説書

  • プログラムの証明よりの入門書で、ケーススタディとして分離論理まで扱っています。 MathCompのライブラリとして使っているのは自然数までで、(整数のような)高度な数学は出てきません。 ただし、 Packed Classの型階層を定義する話題も取り上げられています(MathCompと命名規則が異なるのが惜しい)。

[PnP] Ilya Sergey,
Programs and Proofs - Mechanizing Mathematics with Dependent Types
https://ilyasergey.net/pnp/pnp.pdf

Coqと共通な話題

  • βδι簡約をおこなうsimplタクティク(rewrite /=)の説明です。

Pierre Boutillier,
Simple simpl
https://hal.archives-ouvertes.fr/hal-00816918/document

  • 有名なCoqの教科書ですが、第III部のLtacautoタクティクの解説はMathCompにも適用できます。 たとえば、Hint Constructors は、MathCompのdonebyでも有効です。 ちなみに、日本語訳は長く塩漬け状態です。

[CPDT] Adam Chlipala,
Certified Programming with Dependent Types
http://adam.chlipala.net/cpdt/

Qiita

  • Qiita にもたくさん記事がありますが、これはMathCompで(自然数でなく)整数を使うときに参考になる良記事です。

@junjihashimoto@github,
整数を使った証明(整数精度のHaar変換)のトライアル
https://qiita.com/junjihashimoto@github/items/310d87e504ee79d691af

以上