├── .dockerignore ├── .github └── workflows │ └── blueprint.yml ├── .gitignore ├── AutoFormalization ├── README.md ├── example │ ├── Book │ │ ├── diagrams │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── formalizations │ │ │ ├── 1.lean │ │ │ ├── 2.lean │ │ │ ├── 3.lean │ │ │ ├── 4.lean │ │ │ └── 5.lean │ │ ├── generate_examples.py │ │ ├── texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ └── texts_proofs │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ └── UniGeo │ │ ├── Congruent │ │ ├── diagrams │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── diagrams2texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ ├── formalizations │ │ │ ├── 1.lean │ │ │ ├── 2.lean │ │ │ ├── 3.lean │ │ │ ├── 4.lean │ │ │ └── 5.lean │ │ ├── proofs │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ └── texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ ├── Parallel │ │ ├── diagrams │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── diagrams2texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ ├── formalizations │ │ │ ├── 1.lean │ │ │ ├── 2.lean │ │ │ ├── 3.lean │ │ │ ├── 4.lean │ │ │ └── 5.lean │ │ ├── proofs │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ └── texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ ├── Quadrilateral │ │ ├── diagrams │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── diagrams2texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ ├── formalizations │ │ │ ├── 1.lean │ │ │ ├── 2.lean │ │ │ ├── 3.lean │ │ │ ├── 4.lean │ │ │ └── 5.lean │ │ ├── proofs │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ └── texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ ├── Similarity │ │ ├── diagrams │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ └── 5.png │ │ ├── diagrams2texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ ├── formalizations │ │ │ ├── 1.lean │ │ │ ├── 2.lean │ │ │ ├── 3.lean │ │ │ ├── 4.lean │ │ │ └── 5.lean │ │ ├── proofs │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ └── texts │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ └── Triangle │ │ ├── diagrams │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ │ ├── diagrams2texts │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ └── 5.txt │ │ ├── formalizations │ │ ├── 1.lean │ │ ├── 2.lean │ │ ├── 3.lean │ │ ├── 4.lean │ │ └── 5.lean │ │ ├── proofs │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ └── 5.txt │ │ └── texts │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ └── 5.txt ├── proof │ ├── autoformalize.py │ ├── book_instruction.txt │ ├── book_propositions.json │ ├── evaluate.py │ └── unigeo_instruction.txt ├── statement │ ├── autoformalize.py │ ├── evaluate.py │ └── instruction.txt └── utils.py ├── Book.lean ├── Book ├── Prop01.lean ├── Prop02.lean ├── Prop03.lean ├── Prop04.lean ├── Prop05.lean ├── Prop06.lean ├── Prop07.lean ├── Prop08.lean ├── Prop09.lean ├── Prop10.lean ├── Prop11.lean ├── Prop12.lean ├── Prop13.lean ├── Prop14.lean ├── Prop15.lean ├── Prop16.lean ├── Prop17.lean ├── Prop18.lean ├── Prop19.lean ├── Prop20.lean ├── Prop21.lean ├── Prop22.lean ├── Prop23.lean ├── Prop24.lean ├── Prop25.lean ├── Prop26.lean ├── Prop27.lean ├── Prop28.lean ├── Prop29.lean ├── Prop30.lean ├── Prop31.lean ├── Prop32.lean ├── Prop33.lean ├── Prop34.lean ├── Prop35.lean ├── Prop36.lean ├── Prop37.lean ├── Prop38.lean ├── Prop39.lean ├── Prop40.lean ├── Prop41.lean ├── Prop42.lean ├── Prop43.lean ├── Prop44.lean ├── Prop45.lean ├── Prop46.lean ├── Prop47.lean ├── Prop48.lean ├── diagrams │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 3.png │ ├── 30.png │ ├── 31.png │ ├── 32.png │ ├── 33.png │ ├── 34.png │ ├── 35.png │ ├── 36.png │ ├── 37.png │ ├── 38.png │ ├── 39.png │ ├── 4.png │ ├── 40.png │ ├── 41.png │ ├── 42.png │ ├── 43.png │ ├── 44.png │ ├── 45.png │ ├── 46.png │ ├── 47.png │ ├── 48.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── texts │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ ├── 26.txt │ ├── 27.txt │ ├── 28.txt │ ├── 29.txt │ ├── 3.txt │ ├── 30.txt │ ├── 31.txt │ ├── 32.txt │ ├── 33.txt │ ├── 34.txt │ ├── 35.txt │ ├── 36.txt │ ├── 37.txt │ ├── 38.txt │ ├── 39.txt │ ├── 4.txt │ ├── 40.txt │ ├── 41.txt │ ├── 42.txt │ ├── 43.txt │ ├── 44.txt │ ├── 45.txt │ ├── 46.txt │ ├── 47.txt │ ├── 48.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt └── texts_proofs │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ ├── 26.txt │ ├── 27.txt │ ├── 28.txt │ ├── 29.txt │ ├── 3.txt │ ├── 30.txt │ ├── 31.txt │ ├── 32.txt │ ├── 33.txt │ ├── 34.txt │ ├── 35.txt │ ├── 36.txt │ ├── 37.txt │ ├── 38.txt │ ├── 39.txt │ ├── 4.txt │ ├── 40.txt │ ├── 41.txt │ ├── 42.txt │ ├── 43.txt │ ├── 44.txt │ ├── 45.txt │ ├── 46.txt │ ├── 47.txt │ ├── 48.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt ├── Dockerfile ├── E3.lean ├── E3 ├── Data.lean ├── Data │ ├── ApproxResult.lean │ ├── BoundVars.lean │ ├── Config.lean │ ├── E3Result.lean │ ├── EquivResult.lean │ └── EvalCtx.lean ├── Engine │ ├── EquivCheck.lean │ ├── Main.lean │ ├── Preprocess.lean │ ├── Wf.lean │ └── choosePerms.py ├── Examples │ └── example.lean ├── README.md ├── Util │ ├── Expr.lean │ ├── IO.lean │ └── String.lean ├── checker.py ├── utils.py └── validator.py ├── LICENSE ├── README.md ├── SystemE.lean ├── SystemE ├── Meta │ ├── Smt │ │ ├── ELang.lean │ │ ├── Esmt.lean │ │ ├── EuclidTheory.lean │ │ ├── Solver.lean │ │ ├── Translator.lean │ │ └── UniGeo.lean │ └── Tactics │ │ ├── Formalization │ │ ├── AddFormal.lean │ │ ├── Export.lean │ │ └── test.lean │ │ ├── Intros.lean │ │ ├── Solve.lean │ │ └── Util.lean ├── README.md ├── Smt.lean ├── Tactics.lean ├── Theory.lean └── Theory │ ├── Constructions.lean │ ├── Constructions │ ├── Intersections.lean │ ├── LinesAndCircles.lean │ └── Points.lean │ ├── Inferences.lean │ ├── Inferences │ ├── Diagrammatic.lean │ ├── Metric.lean │ ├── Superposition.lean │ └── Transfer.lean │ ├── Relations.lean │ ├── Sorts.lean │ └── Sorts │ ├── Angles.lean │ ├── Primitives.lean │ ├── Segments.lean │ └── Triangles.lean ├── UniGeo.lean ├── UniGeo ├── Congruent.lean ├── Congruent │ ├── Thm01.lean │ ├── Thm02.lean │ ├── Thm03.lean │ ├── Thm04.lean │ ├── Thm05.lean │ ├── Thm06.lean │ ├── Thm07.lean │ ├── Thm08.lean │ ├── Thm09.lean │ ├── Thm10.lean │ ├── Thm11.lean │ ├── Thm12.lean │ ├── Thm13.lean │ ├── Thm14.lean │ ├── Thm15.lean │ ├── Thm16.lean │ ├── Thm17.lean │ ├── Thm18.lean │ ├── Thm19.lean │ ├── Thm20.lean │ ├── diagrams │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── diagrams2texts │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── proofs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ └── texts │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt ├── Parallel.lean ├── Parallel │ ├── Thm01.lean │ ├── Thm02.lean │ ├── Thm03.lean │ ├── Thm04.lean │ ├── Thm05.lean │ ├── Thm06.lean │ ├── Thm07.lean │ ├── Thm08.lean │ ├── Thm09.lean │ ├── Thm10.lean │ ├── Thm11.lean │ ├── Thm12.lean │ ├── Thm13.lean │ ├── Thm14.lean │ ├── Thm15.lean │ ├── Thm16.lean │ ├── Thm17.lean │ ├── Thm18.lean │ ├── Thm19.lean │ ├── Thm20.lean │ ├── diagrams │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── diagrams2texts │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── proofs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ └── texts │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt ├── Quadrilateral.lean ├── Quadrilateral │ ├── Thm01.lean │ ├── Thm02.lean │ ├── Thm03.lean │ ├── Thm04.lean │ ├── Thm05.lean │ ├── Thm06.lean │ ├── Thm07.lean │ ├── Thm08.lean │ ├── Thm09.lean │ ├── Thm10.lean │ ├── Thm11.lean │ ├── Thm12.lean │ ├── Thm13.lean │ ├── Thm14.lean │ ├── Thm15.lean │ ├── Thm16.lean │ ├── Thm17.lean │ ├── Thm18.lean │ ├── Thm19.lean │ ├── Thm20.lean │ ├── diagrams │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── diagrams2texts │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── proofs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ └── texts │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt ├── Relations.lean ├── Similarity.lean ├── Similarity │ ├── Thm01.lean │ ├── Thm02.lean │ ├── Thm03.lean │ ├── Thm04.lean │ ├── Thm05.lean │ ├── Thm06.lean │ ├── Thm07.lean │ ├── Thm08.lean │ ├── Thm09.lean │ ├── Thm10.lean │ ├── Thm11.lean │ ├── Thm12.lean │ ├── Thm13.lean │ ├── Thm14.lean │ ├── Thm15.lean │ ├── Thm16.lean │ ├── Thm17.lean │ ├── Thm18.lean │ ├── Thm19.lean │ ├── Thm20.lean │ ├── diagrams │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── diagrams2texts │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── proofs │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ └── texts │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 2.txt │ │ ├── 20.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt ├── Triangle.lean └── Triangle │ ├── Thm01.lean │ ├── Thm02.lean │ ├── Thm03.lean │ ├── Thm04.lean │ ├── Thm05.lean │ ├── Thm06.lean │ ├── Thm07.lean │ ├── Thm08.lean │ ├── Thm09.lean │ ├── Thm10.lean │ ├── Thm11.lean │ ├── Thm12.lean │ ├── Thm13.lean │ ├── Thm14.lean │ ├── Thm15.lean │ ├── Thm16.lean │ ├── Thm17.lean │ ├── Thm18.lean │ ├── Thm19.lean │ ├── Thm20.lean │ ├── diagrams │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── diagrams2texts │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt │ ├── proofs │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt │ └── texts │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt ├── blueprint ├── print │ ├── print.aux │ ├── print.fdb_latexmk │ ├── print.fls │ ├── print.out │ ├── print.pdf │ └── print.synctex.gz └── src │ ├── blueprint.sty │ ├── common_notions.tex │ ├── content.tex │ ├── definitions.tex │ ├── extra_styles.css │ ├── figures │ ├── fig01e.eps │ ├── fig01g.eps │ ├── fig02e.eps │ ├── fig02g.eps │ ├── fig03e.eps │ ├── fig03g.eps │ ├── fig04e.eps │ ├── fig04g.eps │ ├── fig05e.eps │ ├── fig05g.eps │ ├── fig06e.eps │ ├── fig06g.eps │ ├── fig07e.eps │ ├── fig07g.eps │ ├── fig08e.eps │ ├── fig08g.eps │ ├── fig09e.eps │ ├── fig09g.eps │ ├── fig10e.eps │ ├── fig10g.eps │ ├── fig11e.eps │ ├── fig11g.eps │ ├── fig12e.eps │ ├── fig12g.eps │ ├── fig13e.eps │ ├── fig13g.eps │ ├── fig14e.eps │ ├── fig14g.eps │ ├── fig15e.eps │ ├── fig15g.eps │ ├── fig16e.eps │ ├── fig16g.eps │ ├── fig17e.eps │ ├── fig17g.eps │ ├── fig18e.eps │ ├── fig18g.eps │ ├── fig19e.eps │ ├── fig19g.eps │ ├── fig20e.eps │ ├── fig20g.eps │ ├── fig21e.eps │ ├── fig21g.eps │ ├── fig22e.eps │ ├── fig22g.eps │ ├── fig23e.eps │ ├── fig23g.eps │ ├── fig24e.eps │ ├── fig24g.eps │ ├── fig25e.eps │ ├── fig25g.eps │ ├── fig26e.eps │ ├── fig26g.eps │ ├── fig27e.eps │ ├── fig27g.eps │ ├── fig28e.eps │ ├── fig28g.eps │ ├── fig30e.eps │ ├── fig30g.eps │ ├── fig31e.eps │ ├── fig31g.eps │ ├── fig32e.eps │ ├── fig32g.eps │ ├── fig33e.eps │ ├── fig33g.eps │ ├── fig34e.eps │ ├── fig34g.eps │ ├── fig35e.eps │ ├── fig35g.eps │ ├── fig36e.eps │ ├── fig36g.eps │ ├── fig37e.eps │ ├── fig37g.eps │ ├── fig38e.eps │ ├── fig38g.eps │ ├── fig39e.eps │ ├── fig39g.eps │ ├── fig40e.eps │ ├── fig40g.eps │ ├── fig41e.eps │ ├── fig41g.eps │ ├── fig42e.eps │ ├── fig42g.eps │ ├── fig43e.eps │ ├── fig43g.eps │ ├── fig44e.eps │ ├── fig44g.eps │ ├── fig45e.eps │ ├── fig45g.eps │ ├── fig46e.eps │ ├── fig46g.eps │ ├── fig47e.eps │ ├── fig47g.eps │ ├── fig48e.eps │ ├── fig48g.eps │ ├── proposition_24.png │ ├── proposition_7'''.png │ ├── proposition_7''.png │ ├── proposition_7'.png │ └── proposition_9.png │ ├── intro.tex │ ├── latexmkrc │ ├── macros │ ├── common.tex │ ├── print.tex │ └── web.tex │ ├── plastex.cfg │ ├── postulates.tex │ ├── print.tex │ ├── propositions │ ├── proposition_1.tex │ ├── proposition_10.tex │ ├── proposition_11.tex │ ├── proposition_12.tex │ ├── proposition_13.tex │ ├── proposition_14.tex │ ├── proposition_15.tex │ ├── proposition_16.tex │ ├── proposition_17.tex │ ├── proposition_18.tex │ ├── proposition_19.tex │ ├── proposition_2.tex │ ├── proposition_20.tex │ ├── proposition_21.tex │ ├── proposition_22.tex │ ├── proposition_23.tex │ ├── proposition_24.tex │ ├── proposition_25.tex │ ├── proposition_26.tex │ ├── proposition_27.tex │ ├── proposition_28.tex │ ├── proposition_3.tex │ ├── proposition_4.tex │ ├── proposition_5.tex │ ├── proposition_6.tex │ ├── proposition_7.tex │ ├── proposition_8.tex │ └── proposition_9.tex │ └── web.tex ├── images ├── Elements_prop1.png ├── Elements_prop1_Euclid.png ├── LeanEuclid.jpg └── UniGeo_congruent_1.png ├── lake-manifest.json ├── lakefile.lean ├── lean-toolchain └── scripts └── build.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | tmp 3 | .lake 4 | python/__pycache__ 5 | */.DS_Store -------------------------------------------------------------------------------- /.github/workflows/blueprint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/.github/workflows/blueprint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoFormalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/AutoFormalization/README.md -------------------------------------------------------------------------------- /AutoFormalization/example/UniGeo/Quadrilateral/diagrams2texts/1.txt: -------------------------------------------------------------------------------- 1 | There is a quadrilateral □TUWV with a diagonal line TV. -------------------------------------------------------------------------------- /AutoFormalization/proof/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/AutoFormalization/proof/evaluate.py -------------------------------------------------------------------------------- /AutoFormalization/statement/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/AutoFormalization/statement/evaluate.py -------------------------------------------------------------------------------- /AutoFormalization/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/AutoFormalization/utils.py -------------------------------------------------------------------------------- /Book.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book.lean -------------------------------------------------------------------------------- /Book/Prop01.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop01.lean -------------------------------------------------------------------------------- /Book/Prop02.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop02.lean -------------------------------------------------------------------------------- /Book/Prop03.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop03.lean -------------------------------------------------------------------------------- /Book/Prop04.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop04.lean -------------------------------------------------------------------------------- /Book/Prop05.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop05.lean -------------------------------------------------------------------------------- /Book/Prop06.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop06.lean -------------------------------------------------------------------------------- /Book/Prop07.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop07.lean -------------------------------------------------------------------------------- /Book/Prop08.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop08.lean -------------------------------------------------------------------------------- /Book/Prop09.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop09.lean -------------------------------------------------------------------------------- /Book/Prop10.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop10.lean -------------------------------------------------------------------------------- /Book/Prop11.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop11.lean -------------------------------------------------------------------------------- /Book/Prop12.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop12.lean -------------------------------------------------------------------------------- /Book/Prop13.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop13.lean -------------------------------------------------------------------------------- /Book/Prop14.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop14.lean -------------------------------------------------------------------------------- /Book/Prop15.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop15.lean -------------------------------------------------------------------------------- /Book/Prop16.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop16.lean -------------------------------------------------------------------------------- /Book/Prop17.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop17.lean -------------------------------------------------------------------------------- /Book/Prop18.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop18.lean -------------------------------------------------------------------------------- /Book/Prop19.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop19.lean -------------------------------------------------------------------------------- /Book/Prop20.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop20.lean -------------------------------------------------------------------------------- /Book/Prop21.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop21.lean -------------------------------------------------------------------------------- /Book/Prop22.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop22.lean -------------------------------------------------------------------------------- /Book/Prop23.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop23.lean -------------------------------------------------------------------------------- /Book/Prop24.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop24.lean -------------------------------------------------------------------------------- /Book/Prop25.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop25.lean -------------------------------------------------------------------------------- /Book/Prop26.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop26.lean -------------------------------------------------------------------------------- /Book/Prop27.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop27.lean -------------------------------------------------------------------------------- /Book/Prop28.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop28.lean -------------------------------------------------------------------------------- /Book/Prop29.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop29.lean -------------------------------------------------------------------------------- /Book/Prop30.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop30.lean -------------------------------------------------------------------------------- /Book/Prop31.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop31.lean -------------------------------------------------------------------------------- /Book/Prop32.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop32.lean -------------------------------------------------------------------------------- /Book/Prop33.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop33.lean -------------------------------------------------------------------------------- /Book/Prop34.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop34.lean -------------------------------------------------------------------------------- /Book/Prop35.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop35.lean -------------------------------------------------------------------------------- /Book/Prop36.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop36.lean -------------------------------------------------------------------------------- /Book/Prop37.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop37.lean -------------------------------------------------------------------------------- /Book/Prop38.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop38.lean -------------------------------------------------------------------------------- /Book/Prop39.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop39.lean -------------------------------------------------------------------------------- /Book/Prop40.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop40.lean -------------------------------------------------------------------------------- /Book/Prop41.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop41.lean -------------------------------------------------------------------------------- /Book/Prop42.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop42.lean -------------------------------------------------------------------------------- /Book/Prop43.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop43.lean -------------------------------------------------------------------------------- /Book/Prop44.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop44.lean -------------------------------------------------------------------------------- /Book/Prop45.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop45.lean -------------------------------------------------------------------------------- /Book/Prop46.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop46.lean -------------------------------------------------------------------------------- /Book/Prop47.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop47.lean -------------------------------------------------------------------------------- /Book/Prop48.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/Prop48.lean -------------------------------------------------------------------------------- /Book/diagrams/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/1.png -------------------------------------------------------------------------------- /Book/diagrams/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/10.png -------------------------------------------------------------------------------- /Book/diagrams/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/11.png -------------------------------------------------------------------------------- /Book/diagrams/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/12.png -------------------------------------------------------------------------------- /Book/diagrams/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/13.png -------------------------------------------------------------------------------- /Book/diagrams/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/14.png -------------------------------------------------------------------------------- /Book/diagrams/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/15.png -------------------------------------------------------------------------------- /Book/diagrams/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/16.png -------------------------------------------------------------------------------- /Book/diagrams/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/17.png -------------------------------------------------------------------------------- /Book/diagrams/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/18.png -------------------------------------------------------------------------------- /Book/diagrams/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/19.png -------------------------------------------------------------------------------- /Book/diagrams/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/2.png -------------------------------------------------------------------------------- /Book/diagrams/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/20.png -------------------------------------------------------------------------------- /Book/diagrams/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/21.png -------------------------------------------------------------------------------- /Book/diagrams/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/22.png -------------------------------------------------------------------------------- /Book/diagrams/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/23.png -------------------------------------------------------------------------------- /Book/diagrams/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/24.png -------------------------------------------------------------------------------- /Book/diagrams/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/25.png -------------------------------------------------------------------------------- /Book/diagrams/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/26.png -------------------------------------------------------------------------------- /Book/diagrams/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/27.png -------------------------------------------------------------------------------- /Book/diagrams/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/28.png -------------------------------------------------------------------------------- /Book/diagrams/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/29.png -------------------------------------------------------------------------------- /Book/diagrams/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/3.png -------------------------------------------------------------------------------- /Book/diagrams/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/30.png -------------------------------------------------------------------------------- /Book/diagrams/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/31.png -------------------------------------------------------------------------------- /Book/diagrams/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/32.png -------------------------------------------------------------------------------- /Book/diagrams/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/33.png -------------------------------------------------------------------------------- /Book/diagrams/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/34.png -------------------------------------------------------------------------------- /Book/diagrams/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/35.png -------------------------------------------------------------------------------- /Book/diagrams/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/36.png -------------------------------------------------------------------------------- /Book/diagrams/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/37.png -------------------------------------------------------------------------------- /Book/diagrams/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/38.png -------------------------------------------------------------------------------- /Book/diagrams/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/39.png -------------------------------------------------------------------------------- /Book/diagrams/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/4.png -------------------------------------------------------------------------------- /Book/diagrams/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/40.png -------------------------------------------------------------------------------- /Book/diagrams/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/41.png -------------------------------------------------------------------------------- /Book/diagrams/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/42.png -------------------------------------------------------------------------------- /Book/diagrams/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/43.png -------------------------------------------------------------------------------- /Book/diagrams/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/44.png -------------------------------------------------------------------------------- /Book/diagrams/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/45.png -------------------------------------------------------------------------------- /Book/diagrams/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/46.png -------------------------------------------------------------------------------- /Book/diagrams/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/47.png -------------------------------------------------------------------------------- /Book/diagrams/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/48.png -------------------------------------------------------------------------------- /Book/diagrams/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/5.png -------------------------------------------------------------------------------- /Book/diagrams/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/6.png -------------------------------------------------------------------------------- /Book/diagrams/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/7.png -------------------------------------------------------------------------------- /Book/diagrams/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/8.png -------------------------------------------------------------------------------- /Book/diagrams/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/diagrams/9.png -------------------------------------------------------------------------------- /Book/texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/1.txt -------------------------------------------------------------------------------- /Book/texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/10.txt -------------------------------------------------------------------------------- /Book/texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/11.txt -------------------------------------------------------------------------------- /Book/texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/12.txt -------------------------------------------------------------------------------- /Book/texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/13.txt -------------------------------------------------------------------------------- /Book/texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/14.txt -------------------------------------------------------------------------------- /Book/texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/15.txt -------------------------------------------------------------------------------- /Book/texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/16.txt -------------------------------------------------------------------------------- /Book/texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/17.txt -------------------------------------------------------------------------------- /Book/texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/18.txt -------------------------------------------------------------------------------- /Book/texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/19.txt -------------------------------------------------------------------------------- /Book/texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/2.txt -------------------------------------------------------------------------------- /Book/texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/20.txt -------------------------------------------------------------------------------- /Book/texts/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/21.txt -------------------------------------------------------------------------------- /Book/texts/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/22.txt -------------------------------------------------------------------------------- /Book/texts/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/23.txt -------------------------------------------------------------------------------- /Book/texts/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/24.txt -------------------------------------------------------------------------------- /Book/texts/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/25.txt -------------------------------------------------------------------------------- /Book/texts/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/26.txt -------------------------------------------------------------------------------- /Book/texts/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/27.txt -------------------------------------------------------------------------------- /Book/texts/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/28.txt -------------------------------------------------------------------------------- /Book/texts/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/29.txt -------------------------------------------------------------------------------- /Book/texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/3.txt -------------------------------------------------------------------------------- /Book/texts/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/30.txt -------------------------------------------------------------------------------- /Book/texts/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/31.txt -------------------------------------------------------------------------------- /Book/texts/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/32.txt -------------------------------------------------------------------------------- /Book/texts/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/33.txt -------------------------------------------------------------------------------- /Book/texts/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/34.txt -------------------------------------------------------------------------------- /Book/texts/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/35.txt -------------------------------------------------------------------------------- /Book/texts/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/36.txt -------------------------------------------------------------------------------- /Book/texts/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/37.txt -------------------------------------------------------------------------------- /Book/texts/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/38.txt -------------------------------------------------------------------------------- /Book/texts/39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/39.txt -------------------------------------------------------------------------------- /Book/texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/4.txt -------------------------------------------------------------------------------- /Book/texts/40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/40.txt -------------------------------------------------------------------------------- /Book/texts/41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/41.txt -------------------------------------------------------------------------------- /Book/texts/42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/42.txt -------------------------------------------------------------------------------- /Book/texts/43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/43.txt -------------------------------------------------------------------------------- /Book/texts/44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/44.txt -------------------------------------------------------------------------------- /Book/texts/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/45.txt -------------------------------------------------------------------------------- /Book/texts/46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/46.txt -------------------------------------------------------------------------------- /Book/texts/47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/47.txt -------------------------------------------------------------------------------- /Book/texts/48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/48.txt -------------------------------------------------------------------------------- /Book/texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/5.txt -------------------------------------------------------------------------------- /Book/texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/6.txt -------------------------------------------------------------------------------- /Book/texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/7.txt -------------------------------------------------------------------------------- /Book/texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/8.txt -------------------------------------------------------------------------------- /Book/texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts/9.txt -------------------------------------------------------------------------------- /Book/texts_proofs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/1.txt -------------------------------------------------------------------------------- /Book/texts_proofs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/10.txt -------------------------------------------------------------------------------- /Book/texts_proofs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/11.txt -------------------------------------------------------------------------------- /Book/texts_proofs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/12.txt -------------------------------------------------------------------------------- /Book/texts_proofs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/13.txt -------------------------------------------------------------------------------- /Book/texts_proofs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/14.txt -------------------------------------------------------------------------------- /Book/texts_proofs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/15.txt -------------------------------------------------------------------------------- /Book/texts_proofs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/16.txt -------------------------------------------------------------------------------- /Book/texts_proofs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/17.txt -------------------------------------------------------------------------------- /Book/texts_proofs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/18.txt -------------------------------------------------------------------------------- /Book/texts_proofs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/19.txt -------------------------------------------------------------------------------- /Book/texts_proofs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/2.txt -------------------------------------------------------------------------------- /Book/texts_proofs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/20.txt -------------------------------------------------------------------------------- /Book/texts_proofs/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/21.txt -------------------------------------------------------------------------------- /Book/texts_proofs/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/22.txt -------------------------------------------------------------------------------- /Book/texts_proofs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/23.txt -------------------------------------------------------------------------------- /Book/texts_proofs/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/24.txt -------------------------------------------------------------------------------- /Book/texts_proofs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/25.txt -------------------------------------------------------------------------------- /Book/texts_proofs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/26.txt -------------------------------------------------------------------------------- /Book/texts_proofs/27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/27.txt -------------------------------------------------------------------------------- /Book/texts_proofs/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/28.txt -------------------------------------------------------------------------------- /Book/texts_proofs/29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/29.txt -------------------------------------------------------------------------------- /Book/texts_proofs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/3.txt -------------------------------------------------------------------------------- /Book/texts_proofs/30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/30.txt -------------------------------------------------------------------------------- /Book/texts_proofs/31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/31.txt -------------------------------------------------------------------------------- /Book/texts_proofs/32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/32.txt -------------------------------------------------------------------------------- /Book/texts_proofs/33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/33.txt -------------------------------------------------------------------------------- /Book/texts_proofs/34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/34.txt -------------------------------------------------------------------------------- /Book/texts_proofs/35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/35.txt -------------------------------------------------------------------------------- /Book/texts_proofs/36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/36.txt -------------------------------------------------------------------------------- /Book/texts_proofs/37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/37.txt -------------------------------------------------------------------------------- /Book/texts_proofs/38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/38.txt -------------------------------------------------------------------------------- /Book/texts_proofs/39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/39.txt -------------------------------------------------------------------------------- /Book/texts_proofs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/4.txt -------------------------------------------------------------------------------- /Book/texts_proofs/40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/40.txt -------------------------------------------------------------------------------- /Book/texts_proofs/41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/41.txt -------------------------------------------------------------------------------- /Book/texts_proofs/42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/42.txt -------------------------------------------------------------------------------- /Book/texts_proofs/43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/43.txt -------------------------------------------------------------------------------- /Book/texts_proofs/44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/44.txt -------------------------------------------------------------------------------- /Book/texts_proofs/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/45.txt -------------------------------------------------------------------------------- /Book/texts_proofs/46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/46.txt -------------------------------------------------------------------------------- /Book/texts_proofs/47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/47.txt -------------------------------------------------------------------------------- /Book/texts_proofs/48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/48.txt -------------------------------------------------------------------------------- /Book/texts_proofs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/5.txt -------------------------------------------------------------------------------- /Book/texts_proofs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/6.txt -------------------------------------------------------------------------------- /Book/texts_proofs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/7.txt -------------------------------------------------------------------------------- /Book/texts_proofs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/8.txt -------------------------------------------------------------------------------- /Book/texts_proofs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Book/texts_proofs/9.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/Dockerfile -------------------------------------------------------------------------------- /E3.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3.lean -------------------------------------------------------------------------------- /E3/Data.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Data.lean -------------------------------------------------------------------------------- /E3/Data/ApproxResult.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Data/ApproxResult.lean -------------------------------------------------------------------------------- /E3/Data/BoundVars.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Data/BoundVars.lean -------------------------------------------------------------------------------- /E3/Data/Config.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Data/Config.lean -------------------------------------------------------------------------------- /E3/Data/E3Result.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Data/E3Result.lean -------------------------------------------------------------------------------- /E3/Data/EquivResult.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Data/EquivResult.lean -------------------------------------------------------------------------------- /E3/Data/EvalCtx.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Data/EvalCtx.lean -------------------------------------------------------------------------------- /E3/Engine/EquivCheck.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Engine/EquivCheck.lean -------------------------------------------------------------------------------- /E3/Engine/Main.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Engine/Main.lean -------------------------------------------------------------------------------- /E3/Engine/Preprocess.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Engine/Preprocess.lean -------------------------------------------------------------------------------- /E3/Engine/Wf.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Engine/Wf.lean -------------------------------------------------------------------------------- /E3/Engine/choosePerms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Engine/choosePerms.py -------------------------------------------------------------------------------- /E3/Examples/example.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Examples/example.lean -------------------------------------------------------------------------------- /E3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/README.md -------------------------------------------------------------------------------- /E3/Util/Expr.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Util/Expr.lean -------------------------------------------------------------------------------- /E3/Util/IO.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Util/IO.lean -------------------------------------------------------------------------------- /E3/Util/String.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/Util/String.lean -------------------------------------------------------------------------------- /E3/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/checker.py -------------------------------------------------------------------------------- /E3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/utils.py -------------------------------------------------------------------------------- /E3/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/E3/validator.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/README.md -------------------------------------------------------------------------------- /SystemE.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE.lean -------------------------------------------------------------------------------- /SystemE/Meta/Smt/ELang.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Smt/ELang.lean -------------------------------------------------------------------------------- /SystemE/Meta/Smt/Esmt.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Smt/Esmt.lean -------------------------------------------------------------------------------- /SystemE/Meta/Smt/EuclidTheory.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Smt/EuclidTheory.lean -------------------------------------------------------------------------------- /SystemE/Meta/Smt/Solver.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Smt/Solver.lean -------------------------------------------------------------------------------- /SystemE/Meta/Smt/Translator.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Smt/Translator.lean -------------------------------------------------------------------------------- /SystemE/Meta/Smt/UniGeo.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Smt/UniGeo.lean -------------------------------------------------------------------------------- /SystemE/Meta/Tactics/Intros.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Tactics/Intros.lean -------------------------------------------------------------------------------- /SystemE/Meta/Tactics/Solve.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Tactics/Solve.lean -------------------------------------------------------------------------------- /SystemE/Meta/Tactics/Util.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Meta/Tactics/Util.lean -------------------------------------------------------------------------------- /SystemE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/README.md -------------------------------------------------------------------------------- /SystemE/Smt.lean: -------------------------------------------------------------------------------- 1 | import SystemE.Meta.Smt.Solver 2 | -------------------------------------------------------------------------------- /SystemE/Tactics.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Tactics.lean -------------------------------------------------------------------------------- /SystemE/Theory.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory.lean -------------------------------------------------------------------------------- /SystemE/Theory/Constructions.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Constructions.lean -------------------------------------------------------------------------------- /SystemE/Theory/Inferences.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Inferences.lean -------------------------------------------------------------------------------- /SystemE/Theory/Inferences/Metric.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Inferences/Metric.lean -------------------------------------------------------------------------------- /SystemE/Theory/Inferences/Transfer.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Inferences/Transfer.lean -------------------------------------------------------------------------------- /SystemE/Theory/Relations.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Relations.lean -------------------------------------------------------------------------------- /SystemE/Theory/Sorts.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Sorts.lean -------------------------------------------------------------------------------- /SystemE/Theory/Sorts/Angles.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Sorts/Angles.lean -------------------------------------------------------------------------------- /SystemE/Theory/Sorts/Primitives.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Sorts/Primitives.lean -------------------------------------------------------------------------------- /SystemE/Theory/Sorts/Segments.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Sorts/Segments.lean -------------------------------------------------------------------------------- /SystemE/Theory/Sorts/Triangles.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/SystemE/Theory/Sorts/Triangles.lean -------------------------------------------------------------------------------- /UniGeo.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo.lean -------------------------------------------------------------------------------- /UniGeo/Congruent.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm01.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm01.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm02.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm02.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm03.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm03.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm04.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm04.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm05.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm05.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm06.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm06.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm07.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm07.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm08.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm08.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm09.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm09.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm10.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm10.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm11.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm11.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm12.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm12.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm13.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm13.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm14.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm14.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm15.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm15.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm16.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm16.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm17.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm17.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm18.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm18.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm19.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm19.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/Thm20.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/Thm20.lean -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/1.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/10.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/11.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/12.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/13.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/14.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/15.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/16.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/17.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/18.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/19.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/2.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/20.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/3.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/4.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/5.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/6.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/7.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/8.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams/9.png -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/15.txt: -------------------------------------------------------------------------------- 1 | There is a quadrilateral □VSUT with a diagonal line SU. -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/diagrams2texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/diagrams2texts/9.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/1.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/10.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/11.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/12.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/13.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/14.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/15.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/16.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/17.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/18.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/19.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/2.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/20.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/3.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/4.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/5.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/6.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/7.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/8.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/proofs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/proofs/9.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/15.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Congruent/texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Congruent/texts/9.txt -------------------------------------------------------------------------------- /UniGeo/Parallel.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm01.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm01.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm02.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm02.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm03.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm03.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm04.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm04.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm05.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm05.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm06.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm06.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm07.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm07.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm08.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm08.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm09.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm09.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm10.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm10.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm11.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm11.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm12.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm12.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm13.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm13.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm14.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm14.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm15.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm15.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm16.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm16.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm17.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm17.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm18.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm18.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm19.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm19.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/Thm20.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/Thm20.lean -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/1.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/10.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/11.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/12.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/13.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/14.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/15.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/16.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/17.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/18.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/19.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/2.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/20.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/3.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/4.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/5.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/6.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/7.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/8.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams/9.png -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/15.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/diagrams2texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/diagrams2texts/9.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/1.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/10.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/11.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/12.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/13.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/14.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/15.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/16.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/17.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/18.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/19.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/2.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/20.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/3.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/4.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/5.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/6.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/7.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/8.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/proofs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/proofs/9.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/15.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Parallel/texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Parallel/texts/9.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm01.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm01.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm02.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm02.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm03.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm03.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm04.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm04.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm05.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm05.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm06.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm06.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm07.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm07.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm08.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm08.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm09.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm09.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm10.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm10.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm11.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm11.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm12.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm12.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm13.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm13.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm14.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm14.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm15.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm15.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm16.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm16.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm17.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm17.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm18.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm18.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm19.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm19.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/Thm20.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/Thm20.lean -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/1.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/10.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/11.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/12.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/13.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/14.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/15.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/16.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/17.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/18.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/19.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/2.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/20.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/3.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/4.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/5.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/6.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/7.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/8.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/diagrams/9.png -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams2texts/10.txt: -------------------------------------------------------------------------------- 1 | There is a quadrilateral □TUWV with a diagonal line TV. -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams2texts/14.txt: -------------------------------------------------------------------------------- 1 | There is a quadrilateral □GHJI with a diagonal line GI. -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams2texts/16.txt: -------------------------------------------------------------------------------- 1 | There is a quadrilateral □FGIH with a diagonal line FH. -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams2texts/17.txt: -------------------------------------------------------------------------------- 1 | There is a quadrilateral □PQSR with a diagonal line PR. -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/diagrams2texts/8.txt: -------------------------------------------------------------------------------- 1 | There is a quadrilateral □VWYX with a diagonal line VX. -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/1.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/10.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/11.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/12.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/13.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/14.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/15.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/16.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/17.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/18.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/19.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/2.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/20.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/3.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/4.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/5.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/6.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/7.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/8.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/proofs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/proofs/9.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/15.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Quadrilateral/texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Quadrilateral/texts/9.txt -------------------------------------------------------------------------------- /UniGeo/Relations.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Relations.lean -------------------------------------------------------------------------------- /UniGeo/Similarity.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm01.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm01.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm02.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm02.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm03.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm03.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm04.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm04.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm05.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm05.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm06.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm06.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm07.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm07.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm08.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm08.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm09.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm09.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm10.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm10.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm11.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm11.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm12.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm12.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm13.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm13.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm14.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm14.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm15.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm15.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm16.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm16.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm17.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm17.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm18.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm18.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm19.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm19.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/Thm20.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/Thm20.lean -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/1.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/10.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/11.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/12.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/13.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/14.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/15.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/16.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/17.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/18.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/19.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/2.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/20.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/3.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/4.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/5.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/6.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/7.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/8.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams/9.png -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/15.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/diagrams2texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/diagrams2texts/9.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/1.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/10.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/11.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/12.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/13.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/14.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/15.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/16.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/17.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/18.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/19.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/2.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/20.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/3.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/4.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/5.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/6.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/7.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/8.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/proofs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/proofs/9.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/15.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Similarity/texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Similarity/texts/9.txt -------------------------------------------------------------------------------- /UniGeo/Triangle.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm01.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm01.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm02.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm02.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm03.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm03.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm04.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm04.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm05.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm05.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm06.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm06.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm07.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm07.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm08.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm08.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm09.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm09.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm10.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm10.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm11.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm11.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm12.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm12.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm13.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm13.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm14.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm14.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm15.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm15.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm16.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm16.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm17.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm17.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm18.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm18.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm19.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm19.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/Thm20.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/Thm20.lean -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/1.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/10.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/11.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/12.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/13.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/14.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/15.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/16.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/17.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/18.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/19.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/2.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/20.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/3.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/4.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/5.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/6.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/7.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/8.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams/9.png -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/15.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/diagrams2texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/diagrams2texts/9.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/1.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/10.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/11.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/12.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/13.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/14.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/15.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/16.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/17.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/18.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/19.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/2.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/20.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/3.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/4.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/5.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/6.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/7.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/8.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/proofs/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/proofs/9.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/1.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/10.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/11.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/12.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/13.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/14.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/15.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/16.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/17.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/18.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/19.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/2.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/20.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/3.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/4.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/5.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/6.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/7.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/8.txt -------------------------------------------------------------------------------- /UniGeo/Triangle/texts/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/UniGeo/Triangle/texts/9.txt -------------------------------------------------------------------------------- /blueprint/print/print.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/print/print.aux -------------------------------------------------------------------------------- /blueprint/print/print.fdb_latexmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/print/print.fdb_latexmk -------------------------------------------------------------------------------- /blueprint/print/print.fls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/print/print.fls -------------------------------------------------------------------------------- /blueprint/print/print.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/print/print.out -------------------------------------------------------------------------------- /blueprint/print/print.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/print/print.pdf -------------------------------------------------------------------------------- /blueprint/print/print.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/print/print.synctex.gz -------------------------------------------------------------------------------- /blueprint/src/blueprint.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/blueprint.sty -------------------------------------------------------------------------------- /blueprint/src/common_notions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/common_notions.tex -------------------------------------------------------------------------------- /blueprint/src/content.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/content.tex -------------------------------------------------------------------------------- /blueprint/src/definitions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/definitions.tex -------------------------------------------------------------------------------- /blueprint/src/extra_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/extra_styles.css -------------------------------------------------------------------------------- /blueprint/src/figures/fig01e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig01e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig01g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig01g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig02e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig02e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig02g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig02g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig03e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig03e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig03g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig03g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig04e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig04e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig04g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig04g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig05e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig05e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig05g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig05g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig06e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig06e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig06g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig06g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig07e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig07e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig07g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig07g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig08e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig08e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig08g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig08g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig09e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig09e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig09g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig09g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig10e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig10e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig10g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig10g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig11e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig11e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig11g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig11g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig12e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig12e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig12g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig12g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig13e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig13e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig13g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig13g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig14e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig14e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig14g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig14g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig15e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig15e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig15g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig15g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig16e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig16e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig16g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig16g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig17e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig17e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig17g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig17g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig18e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig18e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig18g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig18g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig19e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig19e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig19g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig19g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig20e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig20e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig20g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig20g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig21e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig21e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig21g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig21g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig22e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig22e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig22g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig22g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig23e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig23e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig23g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig23g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig24e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig24e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig24g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig24g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig25e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig25e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig25g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig25g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig26e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig26e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig26g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig26g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig27e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig27e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig27g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig27g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig28e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig28e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig28g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig28g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig30e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig30e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig30g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig30g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig31e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig31e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig31g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig31g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig32e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig32e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig32g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig32g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig33e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig33e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig33g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig33g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig34e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig34e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig34g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig34g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig35e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig35e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig35g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig35g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig36e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig36e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig36g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig36g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig37e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig37e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig37g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig37g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig38e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig38e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig38g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig38g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig39e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig39e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig39g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig39g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig40e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig40e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig40g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig40g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig41e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig41e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig41g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig41g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig42e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig42e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig42g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig42g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig43e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig43e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig43g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig43g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig44e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig44e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig44g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig44g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig45e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig45e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig45g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig45g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig46e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig46e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig46g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig46g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig47e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig47e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig47g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig47g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig48e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig48e.eps -------------------------------------------------------------------------------- /blueprint/src/figures/fig48g.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/fig48g.eps -------------------------------------------------------------------------------- /blueprint/src/figures/proposition_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/figures/proposition_9.png -------------------------------------------------------------------------------- /blueprint/src/intro.tex: -------------------------------------------------------------------------------- 1 | \chapter{Introduction} -------------------------------------------------------------------------------- /blueprint/src/latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/latexmkrc -------------------------------------------------------------------------------- /blueprint/src/macros/common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/macros/common.tex -------------------------------------------------------------------------------- /blueprint/src/macros/print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/macros/print.tex -------------------------------------------------------------------------------- /blueprint/src/macros/web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/macros/web.tex -------------------------------------------------------------------------------- /blueprint/src/plastex.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/plastex.cfg -------------------------------------------------------------------------------- /blueprint/src/postulates.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/postulates.tex -------------------------------------------------------------------------------- /blueprint/src/print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/print.tex -------------------------------------------------------------------------------- /blueprint/src/web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/blueprint/src/web.tex -------------------------------------------------------------------------------- /images/Elements_prop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/images/Elements_prop1.png -------------------------------------------------------------------------------- /images/Elements_prop1_Euclid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/images/Elements_prop1_Euclid.png -------------------------------------------------------------------------------- /images/LeanEuclid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/images/LeanEuclid.jpg -------------------------------------------------------------------------------- /images/UniGeo_congruent_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/images/UniGeo_congruent_1.png -------------------------------------------------------------------------------- /lake-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/lake-manifest.json -------------------------------------------------------------------------------- /lakefile.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/lakefile.lean -------------------------------------------------------------------------------- /lean-toolchain: -------------------------------------------------------------------------------- 1 | leanprover/lean4:v4.19.0 2 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganrjmurphy/LeanEuclid/HEAD/scripts/build.sh --------------------------------------------------------------------------------