narrating formal proof
play

Narrating Formal Proof (Work in Progress) Carst Tankink Joint work - PowerPoint PPT Presentation

Narrating Formal Proof (Work in Progress) Carst Tankink Joint work with Herman Geuvers and James McKinna Supported by NWO project: MathWiki Institute for Computing and Information Science Faculty of Science, Radboud University Nijmegen


  1. Narrating Formal Proof (Work in Progress) Carst Tankink Joint work with Herman Geuvers and James McKinna Supported by NWO project: “MathWiki” Institute for Computing and Information Science Faculty of Science, Radboud University Nijmegen and Eindhoven University of Technology The Netherlands 15th July 2010

  2. ( ∗∗ Having made the a s s e r t i o n , we can a l s o ask Coq to v e r i f y it , l i k e t h i s : ∗ ) Proof . simpl . r e f l e x i v i t y . Qed .

  3. ( ∗∗ Having made the a s s e r t i o n , we can a l s o ask Coq to v e r i f y it , l i k e t h i s : ∗ ) + Proof . simpl . r e f l e x i v i t y . Qed .

  4. ( ∗∗ Having made the a s s e r t i o n , we can a l s o ask Coq to v e r i f y it , l i k e t h i s : ∗ ) + Proof . simpl . r e f l e x i v i t y . Qed . = Proviola! Picture by J&R Moviola, CC BY-SA

  5. Demo Resources, examples: http://mws.cs.ru.nl/proviola

  6. Motivation ◮ Mathematics should be explained, not just presented. ◮ From proofs for certainty. . . ◮ . . . to proofs for understanding. ◮ Repository of formal proof should include explanation.

  7. Motivation ◮ Mathematics should be explained, not just presented. ◮ From proofs for certainty. . . ◮ . . . to proofs for understanding. ◮ Repository of formal proof should include explanation.

  8. Assumptions ◮ Two roles: Author and Reader. ◮ Tactic-based prover: there is a notion of state.

  9. How is formal proof communicated? 1. Author writes formalization using a prover → proof script. 2. Reader obtains script. 3. Reader reads script using local installation of prover.

  10. How is formal proof communicated? 1. Author writes formalization using a prover → proof script. 2. Reader obtains script. 3. Reader reads script using local installation of prover.

  11. How is formal proof communicated? 1. Author writes formalization using a prover → proof script. 2. Reader obtains script. 3. Reader reads script using local installation of prover.

  12. What’s the problem? ◮ Author used to the prover, reader (in general) not. ◮ Especially if the reader is a student. ◮ Reader needs to see state transformations, requiring: 1. installation of a prover. 2. computation of state based on script. ◮ Possible solution for installation: online provers ( e.g. ProofWeb) ◮ Still has a computational overhead.

  13. What’s the problem? ◮ Author used to the prover, reader (in general) not. ◮ Especially if the reader is a student. ◮ Reader needs to see state transformations, requiring: 1. installation of a prover. 2. computation of state based on script. ◮ Possible solution for installation: online provers ( e.g. ProofWeb) ◮ Still has a computational overhead.

  14. What’s the problem? ◮ Author used to the prover, reader (in general) not. ◮ Especially if the reader is a student. ◮ Reader needs to see state transformations, requiring: 1. installation of a prover. 2. computation of state based on script. ◮ Possible solution for installation: online provers ( e.g. ProofWeb) ◮ Still has a computational overhead.

  15. What do we need? In summary: the reader should zip through the proof: ◮ Fast access to proof state. ◮ No prover necessary for viewing. ◮ Usable over the web. Additionally: No overhead for the author.

  16. Proof movies ◮ Our solution: Proof Movies ◮ Stores proof states with script, in frames. ◮ Trades space for time. ◮ A few KB, on average: blowup 6 × ◮ Reader’s access to state becomes lookup, not computation. ◮ Construction is automated: no overhead for author.

  17. Proof movies ◮ Movie is implemented as XML. ◮ Prototype implementation based on Coq/CoqIDE. . . . <frame frameNumber="25"> <command > simpl. </command > <response > 1 subgoal ============================ tuesday = tuesday </response > </frame > . . .

  18. Watching a movie: Proviola ◮ ‘Tool’ for reviewing: Proviola (transformation to HTML). ◮ Simplifies the reader’s part of the use case. ◮ Instead of obtaining a proof script, obtain a movie. ◮ Watch, not recompute: point to reveal state.

  19. Building Movies: Camera ◮ Making movies is recording prover input and output. ◮ Input: a proof script. ◮ Cut into commands by camera. ◮ Output: captured directly from the prover, after each command. ◮ The prover is still a part of the workflow.

  20. Extending Movies: Data and Services ◮ Movies are XML: presentation in HTML is easy. ◮ Also possible to add other (meta)data: pretty-printing. In general ◮ Extend frames with additional data. ◮ Programs can read the movie, and add data. ◮ In effect: services based on movies.

  21. Extending Movies: Data and Services ◮ Movies are XML: presentation in HTML is easy. ◮ Also possible to add other (meta)data: pretty-printing. In general ◮ Extend frames with additional data. ◮ Programs can read the movie, and add data. ◮ In effect: services based on movies.

  22. Extending Movies: Narration ◮ Coqdoc: interleave frames with documentation. ◮ Movies: add commentary track. ◮ No longer about single frames, but scenes of frames with commentary. ◮ Problem: create a user-friendly editor.

  23. Extending Movies: Narration ◮ Coqdoc: interleave frames with documentation. ◮ Movies: add commentary track. ◮ No longer about single frames, but scenes of frames with commentary. ◮ Problem: create a user-friendly editor.

  24. Extending Movies: Narration ◮ Coqdoc: interleave frames with documentation. ◮ Movies: add commentary track. ◮ No longer about single frames, but scenes of frames with commentary. ◮ Problem: create a user-friendly editor.

  25. Towards a Movie-based MathWiki ◮ Show movies with documentation to readers of Wiki. ◮ Movies provide a fast overview of files in the repository. Roadmap: ◮ Support other provers: ◮ For the author: implement camera. ◮ For the reader: rendering. ◮ Generate pages: just invoke camera. ◮ Add commentary track to narrate movie. ◮ Editing the movie.

  26. Towards a Movie-based MathWiki ◮ Show movies with documentation to readers of Wiki. ◮ Movies provide a fast overview of files in the repository. Roadmap: ◮ Support other provers: ◮ For the author: implement camera. ◮ For the reader: rendering. ◮ Generate pages: just invoke camera. ◮ Add commentary track to narrate movie. ◮ Editing the movie.

  27. Movies in MathWiki — Dynamic movie editing ◮ Author is also a reader, also benefits from fast lookup. ◮ Author writes movie, prover works in the background. ◮ Prover is a service. ◮ Similar to document-centered approaches & ProofGeneral ◮ Not just a proof script. ◮ A true Wiki: make authors out of readers.

  28. Movies in MathWiki — Dynamic movie editing ◮ Author is also a reader, also benefits from fast lookup. ◮ Author writes movie, prover works in the background. ◮ Prover is a service. ◮ Similar to document-centered approaches & ProofGeneral ◮ Not just a proof script. ◮ A true Wiki: make authors out of readers.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend