itp-interface 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (485) hide show
  1. itp_interface/__init__.py +0 -0
  2. itp_interface/agent/__init__.py +0 -0
  3. itp_interface/agent/simple_proof_agent.py +100 -0
  4. itp_interface/coq_ser_api/__init__.py +165 -0
  5. itp_interface/coq_ser_api/contexts.py +283 -0
  6. itp_interface/coq_ser_api/coq_agent.py +459 -0
  7. itp_interface/coq_ser_api/coq_backend.py +135 -0
  8. itp_interface/coq_ser_api/coq_util.py +839 -0
  9. itp_interface/coq_ser_api/example.py +67 -0
  10. itp_interface/coq_ser_api/lsp_backend.py +375 -0
  11. itp_interface/coq_ser_api/py.typed +0 -0
  12. itp_interface/coq_ser_api/serapi_backend.py +841 -0
  13. itp_interface/coq_ser_api/util.py +145 -0
  14. itp_interface/coq_ser_api_old/__init__.py +2583 -0
  15. itp_interface/coq_ser_api_old/contexts.py +172 -0
  16. itp_interface/coq_ser_api_old/util.py +146 -0
  17. itp_interface/lean_server/__init__.py +0 -0
  18. itp_interface/lean_server/commands.py +484 -0
  19. itp_interface/lean_server/lean3_search_tool.py +358 -0
  20. itp_interface/lean_server/lean4_repl_interface.py +151 -0
  21. itp_interface/lean_server/lean4_utils.py +255 -0
  22. itp_interface/lean_server/lean_cmd_server.py +111 -0
  23. itp_interface/lean_server/lean_context.py +60 -0
  24. itp_interface/lean_server/lean_sync_server.py +174 -0
  25. itp_interface/lean_server/lean_utils.py +199 -0
  26. itp_interface/lean_server/py.typed +1 -0
  27. itp_interface/main/__init__.py +0 -0
  28. itp_interface/main/config/afp_data_gen.yaml +14 -0
  29. itp_interface/main/config/benchmark/CompCert.yaml +366 -0
  30. itp_interface/main/config/benchmark/GeoCoq.yaml +930 -0
  31. itp_interface/main/config/benchmark/UniMath.yaml +2690 -0
  32. itp_interface/main/config/benchmark/afp_isabelle.yaml +29200 -0
  33. itp_interface/main/config/benchmark/agent_proverbot_hard.yaml +247 -0
  34. itp_interface/main/config/benchmark/category-theory.yaml +470 -0
  35. itp_interface/main/config/benchmark/compcert_118_subset.yaml +148 -0
  36. itp_interface/main/config/benchmark/compcert_benchmark.yaml +36 -0
  37. itp_interface/main/config/benchmark/compcert_benchmark_hard.yaml +498 -0
  38. itp_interface/main/config/benchmark/compcert_benchmark_hard_1.yaml +55 -0
  39. itp_interface/main/config/benchmark/compcert_benchmark_hard_2.yaml +24 -0
  40. itp_interface/main/config/benchmark/compcert_benchmark_hard_3.yaml +95 -0
  41. itp_interface/main/config/benchmark/compcert_benchmark_hard_7_per_cent.yaml +78 -0
  42. itp_interface/main/config/benchmark/compcert_benchmark_test.yaml +38 -0
  43. itp_interface/main/config/benchmark/compcert_benchmark_train.yaml +340 -0
  44. itp_interface/main/config/benchmark/leandojo_novel_premises_test.yaml +2908 -0
  45. itp_interface/main/config/benchmark/leandojo_novel_premises_train.yaml +98645 -0
  46. itp_interface/main/config/benchmark/leandojo_novel_premises_val.yaml +2912 -0
  47. itp_interface/main/config/benchmark/leandojo_random.yaml +2889 -0
  48. itp_interface/main/config/benchmark/leandojo_random_test.yaml +2421 -0
  49. itp_interface/main/config/benchmark/leandojo_random_train.yaml +62729 -0
  50. itp_interface/main/config/benchmark/leandojo_random_val.yaml +2504 -0
  51. itp_interface/main/config/benchmark/math-comp.yaml +200 -0
  52. itp_interface/main/config/benchmark/miniF2F_test.yaml +12 -0
  53. itp_interface/main/config/benchmark/miniF2F_test_aime.yaml +27 -0
  54. itp_interface/main/config/benchmark/miniF2F_test_algebra.yaml +30 -0
  55. itp_interface/main/config/benchmark/miniF2F_test_amc12.yaml +57 -0
  56. itp_interface/main/config/benchmark/miniF2F_test_few_shot_hard.yaml +231 -0
  57. itp_interface/main/config/benchmark/miniF2F_test_imo.yaml +32 -0
  58. itp_interface/main/config/benchmark/miniF2F_test_induction.yaml +20 -0
  59. itp_interface/main/config/benchmark/miniF2F_test_mathd_algebra.yaml +82 -0
  60. itp_interface/main/config/benchmark/miniF2F_test_mathd_algebra_hard.yaml +72 -0
  61. itp_interface/main/config/benchmark/miniF2F_test_mathd_numbertheory.yaml +72 -0
  62. itp_interface/main/config/benchmark/miniF2F_test_numbertheory.yaml +20 -0
  63. itp_interface/main/config/benchmark/minicompcert_benchmark_1.yaml +14 -0
  64. itp_interface/main/config/benchmark/proverbot_hard.yaml +104 -0
  65. itp_interface/main/config/benchmark/re_prover.yaml +66 -0
  66. itp_interface/main/config/benchmark/re_prover_hard.yaml +41 -0
  67. itp_interface/main/config/benchmark/re_prover_very_hard.yaml +22 -0
  68. itp_interface/main/config/benchmark/reprover_with_retrieval.yaml +73 -0
  69. itp_interface/main/config/benchmark/reprover_with_retrieval_hard.yaml +30 -0
  70. itp_interface/main/config/benchmark/reprover_with_retrieval_neg.yaml +195 -0
  71. itp_interface/main/config/benchmark/simple_benchmark_1.yaml +24 -0
  72. itp_interface/main/config/benchmark/simple_benchmark_8.yaml +50 -0
  73. itp_interface/main/config/benchmark/simple_benchmark_9.yaml +65 -0
  74. itp_interface/main/config/benchmark/simple_benchmark_isabelle.yaml +18 -0
  75. itp_interface/main/config/benchmark/simple_benchmark_lean.yaml +12 -0
  76. itp_interface/main/config/benchmark/simple_benchmark_lean_training_data.yaml +12 -0
  77. itp_interface/main/config/benchmark/simple_rl_benchmark_lean.yaml +14 -0
  78. itp_interface/main/config/benchmark/stack_machine.yaml +13 -0
  79. itp_interface/main/config/benchmark/stack_machine_hard.yaml +15 -0
  80. itp_interface/main/config/category_theory_data_gen.yaml +14 -0
  81. itp_interface/main/config/category_theory_data_gen_random.yaml +16 -0
  82. itp_interface/main/config/compcert_data_gen_test.yaml +10 -0
  83. itp_interface/main/config/compcert_data_gen_train.yaml +7 -0
  84. itp_interface/main/config/env_settings/bm25_retrieval.yaml +2 -0
  85. itp_interface/main/config/env_settings/bm25_retrieval_no_dfns.yaml +2 -0
  86. itp_interface/main/config/env_settings/bm25_retrieval_only_local_no_dfns.yaml +2 -0
  87. itp_interface/main/config/env_settings/bm25_retrieval_with_print.yaml +2 -0
  88. itp_interface/main/config/env_settings/bm25_retrieval_with_print_only_local.yaml +2 -0
  89. itp_interface/main/config/env_settings/bm25_retrieval_with_print_only_local_no_dfns.yaml +2 -0
  90. itp_interface/main/config/env_settings/no_retrieval.yaml +2 -0
  91. itp_interface/main/config/experiments.yaml +12 -0
  92. itp_interface/main/config/geo_coq_data_gen.yaml +14 -0
  93. itp_interface/main/config/geo_coq_data_gen_random.yaml +16 -0
  94. itp_interface/main/config/leandojo_random_data_gen.yaml +16 -0
  95. itp_interface/main/config/math_comp_data_gen.yaml +14 -0
  96. itp_interface/main/config/math_comp_data_gen_random.yaml +16 -0
  97. itp_interface/main/config/mathlib_data_gen.yaml +14 -0
  98. itp_interface/main/config/repo/coq_repos.yaml +191 -0
  99. itp_interface/main/config/run_settings/default_coq_data_generation_transforms.yaml +24 -0
  100. itp_interface/main/config/run_settings/default_isabelle_data_generation_transforms.yaml +24 -0
  101. itp_interface/main/config/run_settings/default_lean4_data_generation_transforms.yaml +24 -0
  102. itp_interface/main/config/run_settings/default_lean_data_generation_transforms.yaml +24 -0
  103. itp_interface/main/config/simple_coq_data_gen.yaml +12 -0
  104. itp_interface/main/config/simple_coq_data_gen_random.yaml +17 -0
  105. itp_interface/main/config/simple_lean_data_gen.yaml +12 -0
  106. itp_interface/main/config/simple_rl_lean_data_gen.yaml +12 -0
  107. itp_interface/main/config/uni_math_data_gen.yaml +14 -0
  108. itp_interface/main/config.py +192 -0
  109. itp_interface/main/extract_benchmark_dataset.py +106 -0
  110. itp_interface/main/filter_dataset.py +107 -0
  111. itp_interface/main/install.py +92 -0
  112. itp_interface/main/merge_dataset.py +96 -0
  113. itp_interface/main/run_tool.py +444 -0
  114. itp_interface/pisa/.git +1 -0
  115. itp_interface/pisa/.gitignore +125 -0
  116. itp_interface/pisa/.idea/.gitignore +8 -0
  117. itp_interface/pisa/.idea/ClojureProjectResolveSettings.xml +6 -0
  118. itp_interface/pisa/.idea/codeStyles/Project.xml +7 -0
  119. itp_interface/pisa/.idea/codeStyles/codeStyleConfig.xml +5 -0
  120. itp_interface/pisa/.idea/inspectionProfiles/Project_Default.xml +16 -0
  121. itp_interface/pisa/.idea/libraries/sbt__com_google_android_annotations_4_1_1_4_jar.xml +13 -0
  122. itp_interface/pisa/.idea/libraries/sbt__com_google_api_grpc_proto_google_common_protos_1_17_0_jar.xml +13 -0
  123. itp_interface/pisa/.idea/libraries/sbt__com_google_code_findbugs_jsr305_3_0_2_jar.xml +13 -0
  124. itp_interface/pisa/.idea/libraries/sbt__com_google_code_gson_gson_2_8_6_jar.xml +13 -0
  125. itp_interface/pisa/.idea/libraries/sbt__com_google_errorprone_error_prone_annotations_2_3_4_jar.xml +13 -0
  126. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_failureaccess_1_0_1_jar.xml +13 -0
  127. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_guava_30_0_jre_jar.xml +13 -0
  128. itp_interface/pisa/.idea/libraries/sbt__com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava_jar.xml +9 -0
  129. itp_interface/pisa/.idea/libraries/sbt__com_google_j2objc_j2objc_annotations_1_3_jar.xml +13 -0
  130. itp_interface/pisa/.idea/libraries/sbt__com_google_protobuf_protobuf_java_3_12_0_jar.xml +13 -0
  131. itp_interface/pisa/.idea/libraries/sbt__com_google_protobuf_protobuf_java_util_3_12_0_jar.xml +13 -0
  132. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_fastparse_2_13_2_3_0_jar.xml +13 -0
  133. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_geny_2_13_0_6_0_jar.xml +13 -0
  134. itp_interface/pisa/.idea/libraries/sbt__com_lihaoyi_sourcecode_2_13_0_2_1_jar.xml +13 -0
  135. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_lenses_2_13_0_10_9_jar.xml +13 -0
  136. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_scalapb_runtime_2_13_0_10_9_jar.xml +13 -0
  137. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_scalapb_runtime_grpc_2_13_0_10_9_jar.xml +13 -0
  138. itp_interface/pisa/.idea/libraries/sbt__com_thesamet_scalapb_zio_grpc_zio_grpc_core_2_13_0_4_2_jar.xml +13 -0
  139. itp_interface/pisa/.idea/libraries/sbt__com_thoughtworks_paranamer_paranamer_2_8_jar.xml +13 -0
  140. itp_interface/pisa/.idea/libraries/sbt__commons_io_commons_io_2_8_0_jar.xml +13 -0
  141. itp_interface/pisa/.idea/libraries/sbt__de_unruh_java_patterns_0_1_0_jar.xml +13 -0
  142. itp_interface/pisa/.idea/libraries/sbt__de_unruh_scala_isabelle_2_13_master_SNAPSHOT_jar.xml +13 -0
  143. itp_interface/pisa/.idea/libraries/sbt__dev_zio_izumi_reflect_2_13_1_0_0_M9_jar.xml +13 -0
  144. itp_interface/pisa/.idea/libraries/sbt__dev_zio_izumi_reflect_thirdparty_boopickle_shaded_2_13_1_0_0_M9_jar.xml +13 -0
  145. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_2_13_1_0_3_jar.xml +13 -0
  146. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_stacktracer_2_13_1_0_3_jar.xml +13 -0
  147. itp_interface/pisa/.idea/libraries/sbt__dev_zio_zio_streams_2_13_1_0_3_jar.xml +13 -0
  148. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_api_1_34_0_jar.xml +13 -0
  149. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_context_1_34_0_jar.xml +13 -0
  150. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_core_1_34_0_jar.xml +13 -0
  151. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_netty_1_34_0_jar.xml +13 -0
  152. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_protobuf_1_34_0_jar.xml +13 -0
  153. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_protobuf_lite_1_34_0_jar.xml +13 -0
  154. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_services_1_34_0_jar.xml +13 -0
  155. itp_interface/pisa/.idea/libraries/sbt__io_grpc_grpc_stub_1_34_0_jar.xml +13 -0
  156. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_buffer_4_1_51_Final_jar.xml +13 -0
  157. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_4_1_51_Final_jar.xml +13 -0
  158. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_http2_4_1_51_Final_jar.xml +13 -0
  159. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_http_4_1_51_Final_jar.xml +13 -0
  160. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_codec_socks_4_1_51_Final_jar.xml +13 -0
  161. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_common_4_1_51_Final_jar.xml +13 -0
  162. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_handler_4_1_51_Final_jar.xml +13 -0
  163. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_handler_proxy_4_1_51_Final_jar.xml +13 -0
  164. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_resolver_4_1_51_Final_jar.xml +13 -0
  165. itp_interface/pisa/.idea/libraries/sbt__io_netty_netty_transport_4_1_51_Final_jar.xml +13 -0
  166. itp_interface/pisa/.idea/libraries/sbt__io_perfmark_perfmark_api_0_19_0_jar.xml +13 -0
  167. itp_interface/pisa/.idea/libraries/sbt__net_java_dev_jna_jna_5_3_1_jar.xml +13 -0
  168. itp_interface/pisa/.idea/libraries/sbt__net_liftweb_lift_json_2_13_3_4_3_jar.xml +13 -0
  169. itp_interface/pisa/.idea/libraries/sbt__org_apache_commons_commons_lang3_3_11_jar.xml +13 -0
  170. itp_interface/pisa/.idea/libraries/sbt__org_apache_commons_commons_text_1_9_jar.xml +13 -0
  171. itp_interface/pisa/.idea/libraries/sbt__org_checkerframework_checker_qual_3_5_0_jar.xml +13 -0
  172. itp_interface/pisa/.idea/libraries/sbt__org_codehaus_mojo_animal_sniffer_annotations_1_18_jar.xml +13 -0
  173. itp_interface/pisa/.idea/libraries/sbt__org_jetbrains_annotations_20_1_0_jar.xml +13 -0
  174. itp_interface/pisa/.idea/libraries/sbt__org_jline_jline_3_16_0_jar.xml +13 -0
  175. itp_interface/pisa/.idea/libraries/sbt__org_log4s_log4s_2_13_1_9_0_jar.xml +13 -0
  176. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_modules_scala_collection_compat_2_13_2_1_6_jar.xml +13 -0
  177. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_modules_scala_xml_2_13_1_3_0_jar.xml +13 -0
  178. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_compiler_2_13_4_jar.xml +13 -0
  179. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_library_2_13_4_jar.xml +23 -0
  180. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scala_reflect_2_13_4_jar.xml +13 -0
  181. itp_interface/pisa/.idea/libraries/sbt__org_scala_lang_scalap_2_13_4_jar.xml +13 -0
  182. itp_interface/pisa/.idea/libraries/sbt__org_scalaz_scalaz_core_2_13_7_3_2_jar.xml +13 -0
  183. itp_interface/pisa/.idea/libraries/sbt__org_slf4j_slf4j_api_1_7_30_jar.xml +13 -0
  184. itp_interface/pisa/.idea/libraries/sbt__org_slf4j_slf4j_simple_1_7_30_jar.xml +13 -0
  185. itp_interface/pisa/.idea/misc.xml +7 -0
  186. itp_interface/pisa/.idea/modules/PISA-build.iml +127 -0
  187. itp_interface/pisa/.idea/modules/PISA.iml +94 -0
  188. itp_interface/pisa/.idea/modules.xml +9 -0
  189. itp_interface/pisa/.idea/other.xml +6 -0
  190. itp_interface/pisa/.idea/sbt.xml +20 -0
  191. itp_interface/pisa/.idea/scala_compiler.xml +6 -0
  192. itp_interface/pisa/.idea/uiDesigner.xml +124 -0
  193. itp_interface/pisa/.idea/vcs.xml +6 -0
  194. itp_interface/pisa/.scalafmt.conf +2 -0
  195. itp_interface/pisa/LICENSE +29 -0
  196. itp_interface/pisa/README.md +262 -0
  197. itp_interface/pisa/build.sbt +49 -0
  198. itp_interface/pisa/build.sh +26 -0
  199. itp_interface/pisa/command_generation/close_gaps.py +44 -0
  200. itp_interface/pisa/command_generation/conjecture_normal_order.py +62 -0
  201. itp_interface/pisa/command_generation/conjecturer_command_generator.py +36 -0
  202. itp_interface/pisa/command_generation/create_dirs.py +11 -0
  203. itp_interface/pisa/command_generation/find_std.py +67 -0
  204. itp_interface/pisa/command_generation/generate_build_commands_afp.py +15 -0
  205. itp_interface/pisa/command_generation/generate_build_commands_std.py +15 -0
  206. itp_interface/pisa/command_generation/generate_commands_afp.py +103 -0
  207. itp_interface/pisa/command_generation/generate_commands_mini.py +73 -0
  208. itp_interface/pisa/command_generation/generate_commands_std.py +69 -0
  209. itp_interface/pisa/command_generation/generate_hammer_extraction_text.py +5 -0
  210. itp_interface/pisa/command_generation/hammer_command_generator.py +40 -0
  211. itp_interface/pisa/command_generation/hp_search_command_generator.py +63 -0
  212. itp_interface/pisa/command_generation/oracle_command_generator.py +56 -0
  213. itp_interface/pisa/command_generation/search_command_generator.py +69 -0
  214. itp_interface/pisa/command_generation/summarise_problem_names.py +45 -0
  215. itp_interface/pisa/command_generation/tpu_hp_search.py +75 -0
  216. itp_interface/pisa/docker/Dockerfile +34 -0
  217. itp_interface/pisa/docker/docker_tutorial.md +64 -0
  218. itp_interface/pisa/eval_setup/copy_isabelle.py +42 -0
  219. itp_interface/pisa/eval_setup/copy_pisa_jars.py +18 -0
  220. itp_interface/pisa/mesh_transformer_utils/tokenization.py +86 -0
  221. itp_interface/pisa/project/build.properties +1 -0
  222. itp_interface/pisa/project/plugins.sbt +5 -0
  223. itp_interface/pisa/requirements.txt +4 -0
  224. itp_interface/pisa/scripts/extract_last_k_steps.py +28 -0
  225. itp_interface/pisa/scripts/extract_proof_corpus.py +26 -0
  226. itp_interface/pisa/scripts/gather_hammer_results.py +27 -0
  227. itp_interface/pisa/scripts/length_in_char_stats.py +20 -0
  228. itp_interface/pisa/scripts/mix.py +127 -0
  229. itp_interface/pisa/scripts/results_stat.py +52 -0
  230. itp_interface/pisa/scripts/test_array_job.sh +34 -0
  231. itp_interface/pisa/setup.sh +25 -0
  232. itp_interface/pisa/src/main/protobuf/server.proto +60 -0
  233. itp_interface/pisa/src/main/python/.idea/.gitignore +8 -0
  234. itp_interface/pisa/src/main/python/.idea/inspectionProfiles/Project_Default.xml +18 -0
  235. itp_interface/pisa/src/main/python/.idea/inspectionProfiles/profiles_settings.xml +6 -0
  236. itp_interface/pisa/src/main/python/.idea/misc.xml +4 -0
  237. itp_interface/pisa/src/main/python/.idea/modules.xml +8 -0
  238. itp_interface/pisa/src/main/python/.idea/python.iml +12 -0
  239. itp_interface/pisa/src/main/python/.idea/vcs.xml +6 -0
  240. itp_interface/pisa/src/main/python/conjecturing_parsing/conjecturer_postprocessing.py +59 -0
  241. itp_interface/pisa/src/main/python/data_extraction/extract_data.py +184 -0
  242. itp_interface/pisa/src/main/python/data_extraction/find_premises.py +221 -0
  243. itp_interface/pisa/src/main/python/data_extraction/process_data.py +129 -0
  244. itp_interface/pisa/src/main/python/legacy/PisaFlexibleClient.py +167 -0
  245. itp_interface/pisa/src/main/python/legacy/autof_test.py +74 -0
  246. itp_interface/pisa/src/main/python/legacy/cmd_client.py +23 -0
  247. itp_interface/pisa/src/main/python/legacy/convert_scala_dump_to_test_name_jsons.py +14 -0
  248. itp_interface/pisa/src/main/python/legacy/create_data_txt.py +72 -0
  249. itp_interface/pisa/src/main/python/legacy/create_finetune_tfrecords.py +311 -0
  250. itp_interface/pisa/src/main/python/legacy/demo.py +49 -0
  251. itp_interface/pisa/src/main/python/legacy/evaluate.py +108 -0
  252. itp_interface/pisa/src/main/python/legacy/extract_first_step.py +25 -0
  253. itp_interface/pisa/src/main/python/legacy/get_global_facts.py +35 -0
  254. itp_interface/pisa/src/main/python/legacy/mix_data.py +19 -0
  255. itp_interface/pisa/src/main/python/legacy/one_stage_extraction.py +111 -0
  256. itp_interface/pisa/src/main/python/legacy/prepare_episodic_transitions.py +137 -0
  257. itp_interface/pisa/src/main/python/legacy/prepare_translation_pairs.py +277 -0
  258. itp_interface/pisa/src/main/python/pisa_client.py +322 -0
  259. itp_interface/pisa/src/main/python/server_pb2.py +394 -0
  260. itp_interface/pisa/src/main/python/server_pb2_grpc.py +230 -0
  261. itp_interface/pisa/src/main/python/test_client.py +17 -0
  262. itp_interface/pisa/src/main/python/test_client2.py +79 -0
  263. itp_interface/pisa/src/main/python/utils/filters.py +59 -0
  264. itp_interface/pisa/src/main/python/utils/pisa_server_control.py +29 -0
  265. itp_interface/pisa/src/main/scala/pisa/agent/CheckSyntax.scala +257 -0
  266. itp_interface/pisa/src/main/scala/pisa/agent/DepThms.scala +29 -0
  267. itp_interface/pisa/src/main/scala/pisa/agent/PisaStat.scala +46 -0
  268. itp_interface/pisa/src/main/scala/pisa/agent/RefactorTest.scala +40 -0
  269. itp_interface/pisa/src/main/scala/pisa/agent/RepHammer.scala +95 -0
  270. itp_interface/pisa/src/main/scala/pisa/server/HammFacts.scala +63 -0
  271. itp_interface/pisa/src/main/scala/pisa/server/PisaOS.scala +881 -0
  272. itp_interface/pisa/src/main/scala/pisa/server/PisaOneStage.scala +540 -0
  273. itp_interface/pisa/src/main/scala/pisa/server/PisaOneStageServers.scala +1048 -0
  274. itp_interface/pisa/src/main/scala/pisa/utils/TheoryManager.scala +95 -0
  275. itp_interface/pisa/src/test/python/analyse_debug.py +33 -0
  276. itp_interface/pisa/src/test/python/extract_test_seq2seq.py +53 -0
  277. itp_interface/pisa/src/test/python/extract_test_theorem_ground_truth_indices.py +31 -0
  278. itp_interface/pisa/src/test/python/proof_originality.py +24 -0
  279. itp_interface/pisa/src/test/python/test_command_generator.py +25 -0
  280. itp_interface/pisa/src/test/python/test_model_sequence_accuracy.py +70 -0
  281. itp_interface/pisa/src/test/scala/pisa/Easy.scala +26 -0
  282. itp_interface/pisa/src/test/scala/pisa/TestCurl.scala +82 -0
  283. itp_interface/pisa/src/test/scala/pisa/TestIsa.scala +27 -0
  284. itp_interface/pisa/test.sh +19 -0
  285. itp_interface/pisa/universal_test_theorems.tar.gz +0 -0
  286. itp_interface/repo/build.py +78 -0
  287. itp_interface/repo/clone.py +79 -0
  288. itp_interface/repo/dataset_discovery.py +99 -0
  289. itp_interface/retrieval/__init__.py +0 -0
  290. itp_interface/retrieval/abstraction.py +35 -0
  291. itp_interface/retrieval/coq_bm25_reranker.py +153 -0
  292. itp_interface/retrieval/isabelle_bm25_reranker.py +86 -0
  293. itp_interface/retrieval/lean3_bm25_reranker.py +86 -0
  294. itp_interface/rl/__init__.py +0 -0
  295. itp_interface/rl/abstraction.py +168 -0
  296. itp_interface/rl/proof_action.py +172 -0
  297. itp_interface/rl/proof_state.py +149 -0
  298. itp_interface/rl/proof_tree.py +109 -0
  299. itp_interface/rl/simpl_proof_env_pool.py +16 -0
  300. itp_interface/rl/simple_proof_env.py +713 -0
  301. itp_interface/rl/simple_proof_env_pool.py +591 -0
  302. itp_interface/scripts/setup.sh +228 -0
  303. itp_interface/tools/__init__.py +0 -0
  304. itp_interface/tools/basic_utils.py +172 -0
  305. itp_interface/tools/bin_packing.py +61 -0
  306. itp_interface/tools/cache.py +93 -0
  307. itp_interface/tools/coq_build_spec.py +31 -0
  308. itp_interface/tools/coq_build_tool.py +319 -0
  309. itp_interface/tools/coq_context_helper.py +354 -0
  310. itp_interface/tools/coq_executor.py +508 -0
  311. itp_interface/tools/coq_local_data_generation_transform.py +158 -0
  312. itp_interface/tools/coq_parse_utils.py +154 -0
  313. itp_interface/tools/coq_raw_proofs.py +193 -0
  314. itp_interface/tools/coq_theorem_proof_pair_generation_transform.py +146 -0
  315. itp_interface/tools/coq_training_data_generator.py +76 -0
  316. itp_interface/tools/dynamic_coq_proof_exec.py +220 -0
  317. itp_interface/tools/dynamic_isabelle_proof_exec.py +229 -0
  318. itp_interface/tools/dynamic_lean4_proof_exec.py +236 -0
  319. itp_interface/tools/dynamic_lean_proof_exec.py +228 -0
  320. itp_interface/tools/isabelle_context_helper.py +66 -0
  321. itp_interface/tools/isabelle_executor.py +862 -0
  322. itp_interface/tools/isabelle_local_data_generation_transform.py +149 -0
  323. itp_interface/tools/isabelle_parse_utils.py +131 -0
  324. itp_interface/tools/isabelle_server.py +106 -0
  325. itp_interface/tools/lean4_context_helper.py +72 -0
  326. itp_interface/tools/lean4_local_data_generation_transform.py +122 -0
  327. itp_interface/tools/lean4_sync_executor.py +1193 -0
  328. itp_interface/tools/lean_cmd_executor.py +804 -0
  329. itp_interface/tools/lean_context_helper.py +327 -0
  330. itp_interface/tools/lean_dojo_data_generation_transform.py +206 -0
  331. itp_interface/tools/lean_executor.py +687 -0
  332. itp_interface/tools/lean_local_data_generation_transform.py +136 -0
  333. itp_interface/tools/lean_parse_utils.py +32 -0
  334. itp_interface/tools/log_utils.py +20 -0
  335. itp_interface/tools/proof_exec_callback.py +76 -0
  336. itp_interface/tools/ray_utils.py +265 -0
  337. itp_interface/tools/repl/.git +1 -0
  338. itp_interface/tools/repl/.github/workflows/ci.yml +24 -0
  339. itp_interface/tools/repl/.gitignore +7 -0
  340. itp_interface/tools/repl/.vscode/copyright.code-snippets +13 -0
  341. itp_interface/tools/repl/.vscode/extensions.json +13 -0
  342. itp_interface/tools/repl/.vscode/module-docstring.code-snippets +35 -0
  343. itp_interface/tools/repl/.vscode/settings.json +11 -0
  344. itp_interface/tools/repl/README.md +174 -0
  345. itp_interface/tools/repl/REPL/Frontend.lean +47 -0
  346. itp_interface/tools/repl/REPL/JSON.lean +186 -0
  347. itp_interface/tools/repl/REPL/Lean/ContextInfo.lean +9 -0
  348. itp_interface/tools/repl/REPL/Lean/Environment.lean +31 -0
  349. itp_interface/tools/repl/REPL/Lean/InfoTree/ToJson.lean +114 -0
  350. itp_interface/tools/repl/REPL/Lean/InfoTree.lean +272 -0
  351. itp_interface/tools/repl/REPL/Main.lean +323 -0
  352. itp_interface/tools/repl/REPL/Snapshots.lean +306 -0
  353. itp_interface/tools/repl/REPL/Util/Path.lean +36 -0
  354. itp_interface/tools/repl/REPL/Util/Pickle.lean +44 -0
  355. itp_interface/tools/repl/REPL.lean +4 -0
  356. itp_interface/tools/repl/lake-manifest.json +5 -0
  357. itp_interface/tools/repl/lakefile.lean +15 -0
  358. itp_interface/tools/repl/lean-toolchain +1 -0
  359. itp_interface/tools/repl/test/Mathlib/.gitignore +5 -0
  360. itp_interface/tools/repl/test/Mathlib/H20231110.sh +2 -0
  361. itp_interface/tools/repl/test/Mathlib/ReplMathlibTests.lean +1 -0
  362. itp_interface/tools/repl/test/Mathlib/lake-manifest.json +68 -0
  363. itp_interface/tools/repl/test/Mathlib/lakefile.lean +11 -0
  364. itp_interface/tools/repl/test/Mathlib/lean-toolchain +1 -0
  365. itp_interface/tools/repl/test/Mathlib/test/20240209.expected.out +20 -0
  366. itp_interface/tools/repl/test/Mathlib/test/20240209.in +3 -0
  367. itp_interface/tools/repl/test/Mathlib/test/20240209.lean +4 -0
  368. itp_interface/tools/repl/test/Mathlib/test/H20231020.expected.out +8 -0
  369. itp_interface/tools/repl/test/Mathlib/test/H20231020.in +8 -0
  370. itp_interface/tools/repl/test/Mathlib/test/H20231020.lean +22 -0
  371. itp_interface/tools/repl/test/Mathlib/test/H20231110.expected.out +4 -0
  372. itp_interface/tools/repl/test/Mathlib/test/H20231110.in +4 -0
  373. itp_interface/tools/repl/test/Mathlib/test/H20231115.expected.out +19 -0
  374. itp_interface/tools/repl/test/Mathlib/test/H20231115.in +5 -0
  375. itp_interface/tools/repl/test/Mathlib/test/H20231115_2.expected.out +18 -0
  376. itp_interface/tools/repl/test/Mathlib/test/H20231115_2.in +4 -0
  377. itp_interface/tools/repl/test/Mathlib/test/H20231115_3.expected.out +10 -0
  378. itp_interface/tools/repl/test/Mathlib/test/H20231115_3.in +4 -0
  379. itp_interface/tools/repl/test/Mathlib/test/H20231214.in +9 -0
  380. itp_interface/tools/repl/test/Mathlib/test/H20231214.lean +30 -0
  381. itp_interface/tools/repl/test/Mathlib/test/H20231215.expected.out +4 -0
  382. itp_interface/tools/repl/test/Mathlib/test/H20231215.in +4 -0
  383. itp_interface/tools/repl/test/Mathlib/test/H20231215_2.expected.out +14 -0
  384. itp_interface/tools/repl/test/Mathlib/test/H20231215_2.in +3 -0
  385. itp_interface/tools/repl/test/Mathlib/test/exact.expected.out +37 -0
  386. itp_interface/tools/repl/test/Mathlib/test/exact.in +10 -0
  387. itp_interface/tools/repl/test/Mathlib/test/import_Mathlib.lean +1 -0
  388. itp_interface/tools/repl/test/Mathlib/test/induction.expected.out +29 -0
  389. itp_interface/tools/repl/test/Mathlib/test/induction.in +10 -0
  390. itp_interface/tools/repl/test/Mathlib/test/induction.lean +6 -0
  391. itp_interface/tools/repl/test/Mathlib/test/on_goal.expected.out +22 -0
  392. itp_interface/tools/repl/test/Mathlib/test/on_goal.in +5 -0
  393. itp_interface/tools/repl/test/Mathlib/test/pickle.expected.out +16 -0
  394. itp_interface/tools/repl/test/Mathlib/test/pickle.in +6 -0
  395. itp_interface/tools/repl/test/Mathlib/test/pickle_2.expected.out +4 -0
  396. itp_interface/tools/repl/test/Mathlib/test/pickle_2.in +4 -0
  397. itp_interface/tools/repl/test/Mathlib/test.sh +41 -0
  398. itp_interface/tools/repl/test/all_tactics.expected.out +13 -0
  399. itp_interface/tools/repl/test/all_tactics.in +1 -0
  400. itp_interface/tools/repl/test/by_cases.expected.out +25 -0
  401. itp_interface/tools/repl/test/by_cases.in +8 -0
  402. itp_interface/tools/repl/test/by_cases.lean +4 -0
  403. itp_interface/tools/repl/test/calc.expected.out +32 -0
  404. itp_interface/tools/repl/test/calc.in +1 -0
  405. itp_interface/tools/repl/test/def_eval.expected.out +9 -0
  406. itp_interface/tools/repl/test/def_eval.in +3 -0
  407. itp_interface/tools/repl/test/enableInitializersExecution.expected.out +2 -0
  408. itp_interface/tools/repl/test/enableInitializersExecution.in +1 -0
  409. itp_interface/tools/repl/test/file.expected.out +8 -0
  410. itp_interface/tools/repl/test/file.in +1 -0
  411. itp_interface/tools/repl/test/file.lean +5 -0
  412. itp_interface/tools/repl/test/have_by_sorry.expected.out +28 -0
  413. itp_interface/tools/repl/test/have_by_sorry.in +6 -0
  414. itp_interface/tools/repl/test/import_lean.in +1 -0
  415. itp_interface/tools/repl/test/incomplete.expected.out +18 -0
  416. itp_interface/tools/repl/test/incomplete.in +3 -0
  417. itp_interface/tools/repl/test/incomplete.lean +0 -0
  418. itp_interface/tools/repl/test/infotree.expected.out +20 -0
  419. itp_interface/tools/repl/test/infotree.in +2 -0
  420. itp_interface/tools/repl/test/invalid_tactic.expected.out +20 -0
  421. itp_interface/tools/repl/test/invalid_tactic.in +3 -0
  422. itp_interface/tools/repl/test/name_generator.expected.out +53 -0
  423. itp_interface/tools/repl/test/name_generator.in +18 -0
  424. itp_interface/tools/repl/test/no_goal_sorry.expected.out +11 -0
  425. itp_interface/tools/repl/test/no_goal_sorry.in +1 -0
  426. itp_interface/tools/repl/test/no_goal_sorry_2.expected.out +12 -0
  427. itp_interface/tools/repl/test/no_goal_sorry_2.in +1 -0
  428. itp_interface/tools/repl/test/options.expected.out +17 -0
  429. itp_interface/tools/repl/test/options.in +6 -0
  430. itp_interface/tools/repl/test/pickle_environment.expected.out +8 -0
  431. itp_interface/tools/repl/test/pickle_environment.in +7 -0
  432. itp_interface/tools/repl/test/pickle_environment_with_imports.expected.out +10 -0
  433. itp_interface/tools/repl/test/pickle_environment_with_imports.in +9 -0
  434. itp_interface/tools/repl/test/pickle_open.expected.out +8 -0
  435. itp_interface/tools/repl/test/pickle_open.in +7 -0
  436. itp_interface/tools/repl/test/pickle_open_2.expected.out +4 -0
  437. itp_interface/tools/repl/test/pickle_open_2.in +3 -0
  438. itp_interface/tools/repl/test/pickle_open_scoped.expected.out +18 -0
  439. itp_interface/tools/repl/test/pickle_open_scoped.in +8 -0
  440. itp_interface/tools/repl/test/pickle_open_scoped_2.expected.out +14 -0
  441. itp_interface/tools/repl/test/pickle_open_scoped_2.in +3 -0
  442. itp_interface/tools/repl/test/pickle_proof_state_1.expected.out +26 -0
  443. itp_interface/tools/repl/test/pickle_proof_state_1.in +15 -0
  444. itp_interface/tools/repl/test/pickle_proof_state_2.expected.out +4 -0
  445. itp_interface/tools/repl/test/pickle_proof_state_2.in +3 -0
  446. itp_interface/tools/repl/test/pickle_proof_state_env.expected.out +26 -0
  447. itp_interface/tools/repl/test/pickle_proof_state_env.in +15 -0
  448. itp_interface/tools/repl/test/pickle_scoped_notation.in +16 -0
  449. itp_interface/tools/repl/test/pickle_scoped_notation_2.in +3 -0
  450. itp_interface/tools/repl/test/proof_step.expected.out +18 -0
  451. itp_interface/tools/repl/test/proof_step.in +7 -0
  452. itp_interface/tools/repl/test/readme.expected.out +16 -0
  453. itp_interface/tools/repl/test/readme.in +5 -0
  454. itp_interface/tools/repl/test/sorry_hypotheses.expected.out +16 -0
  455. itp_interface/tools/repl/test/sorry_hypotheses.in +4 -0
  456. itp_interface/tools/repl/test/synthesize_placeholder.expected.out +7 -0
  457. itp_interface/tools/repl/test/synthesize_placeholder.in +1 -0
  458. itp_interface/tools/repl/test/tactic_mode_sorry.expected.out +14 -0
  459. itp_interface/tools/repl/test/tactic_mode_sorry.in +3 -0
  460. itp_interface/tools/repl/test/tactic_sorry.expected.out +12 -0
  461. itp_interface/tools/repl/test/tactic_sorry.in +1 -0
  462. itp_interface/tools/repl/test/term_sorry.expected.out +12 -0
  463. itp_interface/tools/repl/test/term_sorry.in +1 -0
  464. itp_interface/tools/repl/test/trace_simp.expected.out +41 -0
  465. itp_interface/tools/repl/test/trace_simp.in +15 -0
  466. itp_interface/tools/repl/test/unfinished_tactic_block.expected.out +11 -0
  467. itp_interface/tools/repl/test/unfinished_tactic_block.in +1 -0
  468. itp_interface/tools/repl/test/unknown_environment.expected.out +2 -0
  469. itp_interface/tools/repl/test/unknown_environment.in +1 -0
  470. itp_interface/tools/repl/test/unknown_proof_state.expected.out +14 -0
  471. itp_interface/tools/repl/test/unknown_proof_state.in +3 -0
  472. itp_interface/tools/repl/test/unknown_tactic.expected.out +14 -0
  473. itp_interface/tools/repl/test/unknown_tactic.in +3 -0
  474. itp_interface/tools/repl/test/variables.expected.out +26 -0
  475. itp_interface/tools/repl/test/variables.in +5 -0
  476. itp_interface/tools/repl/test.sh +43 -0
  477. itp_interface/tools/run_data_generation_transforms.py +350 -0
  478. itp_interface/tools/theorem_details.py +25 -0
  479. itp_interface/tools/training_data.py +358 -0
  480. itp_interface/tools/training_data_format.py +599 -0
  481. itp_interface-1.0.0.dist-info/METADATA +78 -0
  482. itp_interface-1.0.0.dist-info/RECORD +485 -0
  483. itp_interface-1.0.0.dist-info/WHEEL +4 -0
  484. itp_interface-1.0.0.dist-info/entry_points.txt +3 -0
  485. itp_interface-1.0.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,2889 @@
1
+ name: leandojo_random
2
+ num_files: 4722
3
+ language: LEAN4
4
+ few_shot_data_path_for_retrieval: null
5
+ few_shot_metadata_filename_for_retrieval: null
6
+ dfs_data_path_for_retrieval: null
7
+ dfs_metadata_filename_for_retrieval: local.meta.json
8
+ theorem_cnt: 56140
9
+ datasets:
10
+ - project: data/test/Mathlib
11
+ files:
12
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Adjoin.lean
13
+ theorems: '*'
14
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/Basic.lean
15
+ theorems: '*'
16
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/HomComplexShift.lean
17
+ theorems: '*'
18
+ - path: .lake/packages/mathlib/Mathlib/Topology/PartialHomeomorph.lean
19
+ theorems: '*'
20
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Conjugation.lean
21
+ theorems: '*'
22
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/PiSystem.lean
23
+ theorems: '*'
24
+ - path: .lake/packages/mathlib/Mathlib/Data/Option/NAry.lean
25
+ theorems: '*'
26
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/AlternatingFaceMapComplex.lean
27
+ theorems: '*'
28
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Nodup.lean
29
+ theorems: '*'
30
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/ConcreteCategory.lean
31
+ theorems: '*'
32
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LegendreSymbol/MulCharacter.lean
33
+ theorems: '*'
34
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Free.lean
35
+ theorems: '*'
36
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/GaussLemma.lean
37
+ theorems: '*'
38
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GeomSum.lean
39
+ theorems: '*'
40
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/MinMax.lean
41
+ theorems: '*'
42
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/EqToHom.lean
43
+ theorems: '*'
44
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/LYM.lean
45
+ theorems: '*'
46
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convolution.lean
47
+ theorems: '*'
48
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Pointwise.lean
49
+ theorems: '*'
50
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Haar/Basic.lean
51
+ theorems: '*'
52
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Spectrum.lean
53
+ theorems: '*'
54
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/MFDeriv/SpecificFunctions.lean
55
+ theorems: '*'
56
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/UniformConvergenceTopology.lean
57
+ theorems: '*'
58
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoundedVariation.lean
59
+ theorems: '*'
60
+ - path: .lake/packages/mathlib/Mathlib/Topology/Maps.lean
61
+ theorems: '*'
62
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/BilinearForm.lean
63
+ theorems: '*'
64
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Submonoid/Operations.lean
65
+ theorems: '*'
66
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/EReal.lean
67
+ theorems: '*'
68
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Bitwise.lean
69
+ theorems: '*'
70
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Combination.lean
71
+ theorems: '*'
72
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/OfScientific.lean
73
+ theorems: '*'
74
+ - path: .lake/packages/mathlib/Mathlib/Topology/AlexandrovDiscrete.lean
75
+ theorems: '*'
76
+ - path: .lake/packages/mathlib/Mathlib/Deprecated/Subgroup.lean
77
+ theorems: '*'
78
+ - path: .lake/packages/mathlib/Mathlib/Topology/UrysohnsBounded.lean
79
+ theorems: '*'
80
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Zsqrtd/GaussianInt.lean
81
+ theorems: '*'
82
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/DiophantineApproximation.lean
83
+ theorems: '*'
84
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Partition/Split.lean
85
+ theorems: '*'
86
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Symmetric.lean
87
+ theorems: '*'
88
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Game/PGame.lean
89
+ theorems: '*'
90
+ - path: .lake/packages/std/Std/Data/Nat/Gcd.lean
91
+ theorems: '*'
92
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/Basic.lean
93
+ theorems: '*'
94
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Circumcenter.lean
95
+ theorems: '*'
96
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/RightHomology.lean
97
+ theorems: '*'
98
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/MeasureCompProd.lean
99
+ theorems: '*'
100
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/FunctorCategory.lean
101
+ theorems: '*'
102
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Combination.lean
103
+ theorems: '*'
104
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Prod/Integral.lean
105
+ theorems: '*'
106
+ - path: .lake/packages/mathlib/Mathlib/Logic/Basic.lean
107
+ theorems: '*'
108
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/FieldDivision.lean
109
+ theorems: '*'
110
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Asymptotics/Asymptotics.lean
111
+ theorems: '*'
112
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PowerSeries/Order.lean
113
+ theorems: '*'
114
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/CharZero.lean
115
+ theorems: '*'
116
+ - path: .lake/packages/std/Std/Data/Nat/Lemmas.lean
117
+ theorems: '*'
118
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Basic.lean
119
+ theorems: '*'
120
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Block.lean
121
+ theorems: '*'
122
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/Bochner.lean
123
+ theorems: '*'
124
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monoid/Canonical/Defs.lean
125
+ theorems: '*'
126
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupPower/Order.lean
127
+ theorems: '*'
128
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Basic.lean
129
+ theorems: '*'
130
+ - path: .lake/packages/mathlib/Mathlib/Data/Sym/Basic.lean
131
+ theorems: '*'
132
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Localization/Basic.lean
133
+ theorems: '*'
134
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Operations.lean
135
+ theorems: '*'
136
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/FLT/Four.lean
137
+ theorems: '*'
138
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/NumberField/CanonicalEmbedding.lean
139
+ theorems: '*'
140
+ - path: .lake/packages/mathlib/Mathlib/Data/List/OfFn.lean
141
+ theorems: '*'
142
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Eigenspace/Basic.lean
143
+ theorems: '*'
144
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Normed.lean
145
+ theorems: '*'
146
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/Defs.lean
147
+ theorems: '*'
148
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Finite/Basic.lean
149
+ theorems: '*'
150
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/UniqueFactorizationDomain.lean
151
+ theorems: '*'
152
+ - path: .lake/packages/mathlib/Mathlib/Tactic/Abel.lean
153
+ theorems: '*'
154
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntegralEqImproper.lean
155
+ theorems: '*'
156
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/MeasurableIntegral.lean
157
+ theorems: '*'
158
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Sylow.lean
159
+ theorems: '*'
160
+ - path: .lake/packages/mathlib/Mathlib/Topology/Constructions.lean
161
+ theorems: '*'
162
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ModularForms/JacobiTheta/TwoVariable.lean
163
+ theorems: '*'
164
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Orientation.lean
165
+ theorems: '*'
166
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/ListOfFn.lean
167
+ theorems: '*'
168
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monoid/Lemmas.lean
169
+ theorems: '*'
170
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Lift.lean
171
+ theorems: '*'
172
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/PushoutI.lean
173
+ theorems: '*'
174
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dual.lean
175
+ theorems: '*'
176
+ - path: .lake/packages/mathlib/Mathlib/Topology/VectorBundle/Basic.lean
177
+ theorems: '*'
178
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Derivation/Basic.lean
179
+ theorems: '*'
180
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/QuotientOperations.lean
181
+ theorems: '*'
182
+ - path: .lake/packages/mathlib/Mathlib/Data/MvPolynomial/Basic.lean
183
+ theorems: '*'
184
+ - path: .lake/packages/mathlib/Mathlib/InformationTheory/Hamming.lean
185
+ theorems: '*'
186
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Floor.lean
187
+ theorems: '*'
188
+ - path: .lake/packages/mathlib/Mathlib/Data/Bool/Count.lean
189
+ theorems: '*'
190
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/Abs.lean
191
+ theorems: '*'
192
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/OuterMeasure/Basic.lean
193
+ theorems: '*'
194
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteLatticeIntervals.lean
195
+ theorems: '*'
196
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Parity.lean
197
+ theorems: '*'
198
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/ToDFinsupp.lean
199
+ theorems: '*'
200
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Eval.lean
201
+ theorems: '*'
202
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Preserves/Shapes/Biproducts.lean
203
+ theorems: '*'
204
+ - path: .lake/packages/mathlib/Mathlib/Probability/Independence/ZeroOne.lean
205
+ theorems: '*'
206
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/NonUnitalSubring/Basic.lean
207
+ theorems: '*'
208
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/LeftDerived.lean
209
+ theorems: '*'
210
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector3.lean
211
+ theorems: '*'
212
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Kernels.lean
213
+ theorems: '*'
214
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/MeasurableSpace/Defs.lean
215
+ theorems: '*'
216
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/MorphismProperty.lean
217
+ theorems: '*'
218
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/SplitSimplicialObject.lean
219
+ theorems: '*'
220
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/NAry.lean
221
+ theorems: '*'
222
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/IntegralDomain.lean
223
+ theorems: '*'
224
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Matrix.lean
225
+ theorems: '*'
226
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Multivariate/Basic.lean
227
+ theorems: '*'
228
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ModEq.lean
229
+ theorems: '*'
230
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/NNReal.lean
231
+ theorems: '*'
232
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Arctan.lean
233
+ theorems: '*'
234
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/Basic.lean
235
+ theorems: '*'
236
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/EffectiveEpi/Preserves.lean
237
+ theorems: '*'
238
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Periodic.lean
239
+ theorems: '*'
240
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/Different.lean
241
+ theorems: '*'
242
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Complex/Arg.lean
243
+ theorems: '*'
244
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/lpSpace.lean
245
+ theorems: '*'
246
+ - path: .lake/packages/std/Std/Data/String/Lemmas.lean
247
+ theorems: '*'
248
+ - path: .lake/packages/mathlib/Mathlib/Data/QPF/Univariate/Basic.lean
249
+ theorems: '*'
250
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/InverseFunctionTheorem/ApproximatesLinearOn.lean
251
+ theorems: '*'
252
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subsemigroup/Center.lean
253
+ theorems: '*'
254
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Contraction.lean
255
+ theorems: '*'
256
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/SmoothTransition.lean
257
+ theorems: '*'
258
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Basic.lean
259
+ theorems: '*'
260
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/IntegralNormalization.lean
261
+ theorems: '*'
262
+ - path: .lake/packages/mathlib/Mathlib/Order/SuccPred/Limit.lean
263
+ theorems: '*'
264
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Adjunction/AdjointFunctorTheorems.lean
265
+ theorems: '*'
266
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Add.lean
267
+ theorems: '*'
268
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Preadditive/OfBiproducts.lean
269
+ theorems: '*'
270
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/VectorBundle/Basic.lean
271
+ theorems: '*'
272
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/InfiniteSum/Constructions.lean
273
+ theorems: '*'
274
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Size.lean
275
+ theorems: '*'
276
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GCDMonoid/Basic.lean
277
+ theorems: '*'
278
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Multiset.lean
279
+ theorems: '*'
280
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Transfer.lean
281
+ theorems: '*'
282
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Discriminant.lean
283
+ theorems: '*'
284
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/ZPow.lean
285
+ theorems: '*'
286
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/NonsingularInverse.lean
287
+ theorems: '*'
288
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Contraction.lean
289
+ theorems: '*'
290
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Analytic/Meromorphic.lean
291
+ theorems: '*'
292
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Substructures.lean
293
+ theorems: '*'
294
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/Liouville.lean
295
+ theorems: '*'
296
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/AtTopBot.lean
297
+ theorems: '*'
298
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Projection.lean
299
+ theorems: '*'
300
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/LaxMilgram.lean
301
+ theorems: '*'
302
+ - path: .lake/packages/mathlib/Mathlib/Topology/Basic.lean
303
+ theorems: '*'
304
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Midpoint.lean
305
+ theorems: '*'
306
+ - path: .lake/packages/mathlib/Mathlib/Analysis/MeanInequalitiesPow.lean
307
+ theorems: '*'
308
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Subgraph.lean
309
+ theorems: '*'
310
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Padics/PadicNumbers.lean
311
+ theorems: '*'
312
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Cofinite.lean
313
+ theorems: '*'
314
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Powerset.lean
315
+ theorems: '*'
316
+ - path: .lake/packages/std/Std/Data/List/Pairwise.lean
317
+ theorems: '*'
318
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/Jordan.lean
319
+ theorems: '*'
320
+ - path: .lake/packages/mathlib/Mathlib/Logic/Function/Basic.lean
321
+ theorems: '*'
322
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCofiber.lean
323
+ theorems: '*'
324
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Inverse.lean
325
+ theorems: '*'
326
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Card.lean
327
+ theorems: '*'
328
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Basic.lean
329
+ theorems: '*'
330
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Exponential.lean
331
+ theorems: '*'
332
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/CompleteField.lean
333
+ theorems: '*'
334
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/PInfty.lean
335
+ theorems: '*'
336
+ - path: .lake/packages/mathlib/Mathlib/Data/ZMod/Basic.lean
337
+ theorems: '*'
338
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/ToIntervalMod.lean
339
+ theorems: '*'
340
+ - path: .lake/packages/mathlib/Mathlib/Analysis/ConstantSpeed.lean
341
+ theorems: '*'
342
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Jacobson.lean
343
+ theorems: '*'
344
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Morphisms/FiniteType.lean
345
+ theorems: '*'
346
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Derivative.lean
347
+ theorems: '*'
348
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Dirac.lean
349
+ theorems: '*'
350
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Completion.lean
351
+ theorems: '*'
352
+ - path: .lake/packages/mathlib/Mathlib/Data/Sym/Sym2.lean
353
+ theorems: '*'
354
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Products/Bifunctor.lean
355
+ theorems: '*'
356
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Basic.lean
357
+ theorems: '*'
358
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pairwise/Basic.lean
359
+ theorems: '*'
360
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Basic.lean
361
+ theorems: '*'
362
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Dioph.lean
363
+ theorems: '*'
364
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteLattice.lean
365
+ theorems: '*'
366
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Strict.lean
367
+ theorems: '*'
368
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Determinant.lean
369
+ theorems: '*'
370
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Fin.lean
371
+ theorems: '*'
372
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Pi/Basic.lean
373
+ theorems: '*'
374
+ - path: .lake/packages/mathlib/Mathlib/Data/PNat/Basic.lean
375
+ theorems: '*'
376
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/MStructure.lean
377
+ theorems: '*'
378
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/List.lean
379
+ theorems: '*'
380
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Noetherian.lean
381
+ theorems: '*'
382
+ - path: .lake/packages/mathlib/Mathlib/Topology/Category/TopCat/Opens.lean
383
+ theorems: '*'
384
+ - path: .lake/packages/mathlib/Mathlib/Topology/Category/Profinite/Nobeling.lean
385
+ theorems: '*'
386
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/LocalDiffeomorph.lean
387
+ theorems: '*'
388
+ - path: .lake/packages/mathlib/Mathlib/Init/Data/Bool/Lemmas.lean
389
+ theorems: '*'
390
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Additive/ETransform.lean
391
+ theorems: '*'
392
+ - path: .lake/packages/mathlib/Mathlib/Geometry/RingedSpace/PresheafedSpace.lean
393
+ theorems: '*'
394
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/NaturalOps.lean
395
+ theorems: '*'
396
+ - path: .lake/packages/mathlib/Mathlib/Control/Fold.lean
397
+ theorems: '*'
398
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Condexp.lean
399
+ theorems: '*'
400
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Verschiebung.lean
401
+ theorems: '*'
402
+ - path: .lake/packages/mathlib/Mathlib/Algebra/MonoidAlgebra/Support.lean
403
+ theorems: '*'
404
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Category.lean
405
+ theorems: '*'
406
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Image.lean
407
+ theorems: '*'
408
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Module.lean
409
+ theorems: '*'
410
+ - path: .lake/packages/mathlib/Mathlib/Probability/Martingale/Upcrossing.lean
411
+ theorems: '*'
412
+ - path: .lake/packages/mathlib/Mathlib/Order/JordanHolder.lean
413
+ theorems: '*'
414
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LegendreSymbol/QuadraticChar/Basic.lean
415
+ theorems: '*'
416
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RootsOfUnity/Minpoly.lean
417
+ theorems: '*'
418
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Log.lean
419
+ theorems: '*'
420
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorial/DoubleFactorial.lean
421
+ theorems: '*'
422
+ - path: .lake/packages/mathlib/Mathlib/Order/Monotone/Odd.lean
423
+ theorems: '*'
424
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Truncated.lean
425
+ theorems: '*'
426
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/AlgebraMap.lean
427
+ theorems: '*'
428
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Basic.lean
429
+ theorems: '*'
430
+ - path: .lake/packages/mathlib/Mathlib/Init/Data/Nat/Bitwise.lean
431
+ theorems: '*'
432
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Vieta.lean
433
+ theorems: '*'
434
+ - path: .lake/packages/mathlib/Mathlib/Data/Fintype/Basic.lean
435
+ theorems: '*'
436
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/Interval.lean
437
+ theorems: '*'
438
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/MeasureSpace.lean
439
+ theorems: '*'
440
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Comma/Presheaf.lean
441
+ theorems: '*'
442
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSeminorm/TriangleInequality.lean
443
+ theorems: '*'
444
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/GCD/Basic.lean
445
+ theorems: '*'
446
+ - path: .lake/packages/mathlib/Mathlib/Topology/Category/TopCat/Limits/Products.lean
447
+ theorems: '*'
448
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Divisors.lean
449
+ theorems: '*'
450
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/AffineSubspace.lean
451
+ theorems: '*'
452
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PrincipalIdealDomain.lean
453
+ theorems: '*'
454
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Homotopy.lean
455
+ theorems: '*'
456
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/NumberField/Embeddings.lean
457
+ theorems: '*'
458
+ - path: .lake/packages/mathlib/Mathlib/Order/WellFounded.lean
459
+ theorems: '*'
460
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Sigma.lean
461
+ theorems: '*'
462
+ - path: .lake/packages/mathlib/Mathlib/Data/List/MinMax.lean
463
+ theorems: '*'
464
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Sublists.lean
465
+ theorems: '*'
466
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Category/ModuleCat/Monoidal/Basic.lean
467
+ theorems: '*'
468
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/FundamentalGroupoid/InducedMaps.lean
469
+ theorems: '*'
470
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ConditionalExpectation/Real.lean
471
+ theorems: '*'
472
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/ModEq.lean
473
+ theorems: '*'
474
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/LocallyFinite/Basic.lean
475
+ theorems: '*'
476
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/UniformConvergence.lean
477
+ theorems: '*'
478
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/ProjectiveSpectrum/Topology.lean
479
+ theorems: '*'
480
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Category/Ring/Constructions.lean
481
+ theorems: '*'
482
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/RamificationInertia.lean
483
+ theorems: '*'
484
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Defs.lean
485
+ theorems: '*'
486
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Basic.lean
487
+ theorems: '*'
488
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Orientation.lean
489
+ theorems: '*'
490
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Quaternion.lean
491
+ theorems: '*'
492
+ - path: .lake/packages/std/Std/Data/List/Lemmas.lean
493
+ theorems: '*'
494
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Basic.lean
495
+ theorems: '*'
496
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Sphere/Power.lean
497
+ theorems: '*'
498
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Arithmetic.lean
499
+ theorems: '*'
500
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Unoriented/Basic.lean
501
+ theorems: '*'
502
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Log/Base.lean
503
+ theorems: '*'
504
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Hall/Basic.lean
505
+ theorems: '*'
506
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/RightAngle.lean
507
+ theorems: '*'
508
+ - path: .lake/packages/mathlib/Mathlib/Data/IsROrC/Basic.lean
509
+ theorems: '*'
510
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/UniformGroup.lean
511
+ theorems: '*'
512
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Basic.lean
513
+ theorems: '*'
514
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Digits.lean
515
+ theorems: '*'
516
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Subadditive.lean
517
+ theorems: '*'
518
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/BilinearForm/Properties.lean
519
+ theorems: '*'
520
+ - path: .lake/packages/mathlib/Mathlib/Logic/Relation.lean
521
+ theorems: '*'
522
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/GCD.lean
523
+ theorems: '*'
524
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Gluing.lean
525
+ theorems: '*'
526
+ - path: .lake/packages/mathlib/Mathlib/Topology/Homotopy/Contractible.lean
527
+ theorems: '*'
528
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Equalizers.lean
529
+ theorems: '*'
530
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/TensorProduct/RightExactness.lean
531
+ theorems: '*'
532
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Finsupp.lean
533
+ theorems: '*'
534
+ - path: .lake/packages/mathlib/Mathlib/Deprecated/Submonoid.lean
535
+ theorems: '*'
536
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Sites/Sheaf.lean
537
+ theorems: '*'
538
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Segment.lean
539
+ theorems: '*'
540
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/SesquilinearForm.lean
541
+ theorems: '*'
542
+ - path: .lake/packages/mathlib/Mathlib/Data/Finmap.lean
543
+ theorems: '*'
544
+ - path: .lake/packages/mathlib/Mathlib/Topology/LocallyConstant/Basic.lean
545
+ theorems: '*'
546
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorial/Cast.lean
547
+ theorems: '*'
548
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/HomologicalComplex.lean
549
+ theorems: '*'
550
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Lattice.lean
551
+ theorems: '*'
552
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Lagrange.lean
553
+ theorems: '*'
554
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Basic.lean
555
+ theorems: '*'
556
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FreeCommRing.lean
557
+ theorems: '*'
558
+ - path: .lake/packages/mathlib/Mathlib/RepresentationTheory/Basic.lean
559
+ theorems: '*'
560
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/ChainOfDivisors.lean
561
+ theorems: '*'
562
+ - path: .lake/packages/mathlib/Mathlib/Computability/TMToPartrec.lean
563
+ theorems: '*'
564
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Hom/Defs.lean
565
+ theorems: '*'
566
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Submodule.lean
567
+ theorems: '*'
568
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactification/OnePoint.lean
569
+ theorems: '*'
570
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Order/Basic.lean
571
+ theorems: '*'
572
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/Lebesgue.lean
573
+ theorems: '*'
574
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Circulant.lean
575
+ theorems: '*'
576
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/PiTensorProduct.lean
577
+ theorems: '*'
578
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Rotate.lean
579
+ theorems: '*'
580
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Basic.lean
581
+ theorems: '*'
582
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/EuclideanDist.lean
583
+ theorems: '*'
584
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/RestrictScalars.lean
585
+ theorems: '*'
586
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/QuadraticForm/TensorProduct.lean
587
+ theorems: '*'
588
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/MonoCoprod.lean
589
+ theorems: '*'
590
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Transvection.lean
591
+ theorems: '*'
592
+ - path: .lake/packages/mathlib/Mathlib/Data/Num/Lemmas.lean
593
+ theorems: '*'
594
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/ExponentialBounds.lean
595
+ theorems: '*'
596
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/Analytic.lean
597
+ theorems: '*'
598
+ - path: .lake/packages/std/Std/Data/Rat/Lemmas.lean
599
+ theorems: '*'
600
+ - path: .lake/packages/mathlib/Mathlib/Data/PNat/Factors.lean
601
+ theorems: '*'
602
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Surreal/Dyadic.lean
603
+ theorems: '*'
604
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector/Snoc.lean
605
+ theorems: '*'
606
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Chebyshev.lean
607
+ theorems: '*'
608
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Divisibility/Units.lean
609
+ theorems: '*'
610
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSeminorm/CompareExp.lean
611
+ theorems: '*'
612
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Killing.lean
613
+ theorems: '*'
614
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Choose/Multinomial.lean
615
+ theorems: '*'
616
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Rotation.lean
617
+ theorems: '*'
618
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Fold.lean
619
+ theorems: '*'
620
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/AhlswedeZhang.lean
621
+ theorems: '*'
622
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Sigma.lean
623
+ theorems: '*'
624
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Pointwise.lean
625
+ theorems: '*'
626
+ - path: .lake/packages/mathlib/Mathlib/Analysis/MellinInversion.lean
627
+ theorems: '*'
628
+ - path: .lake/packages/mathlib/Mathlib/Order/BooleanAlgebra.lean
629
+ theorems: '*'
630
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/BooleanRing.lean
631
+ theorems: '*'
632
+ - path: .lake/packages/mathlib/Mathlib/Algebra/EuclideanDomain/Defs.lean
633
+ theorems: '*'
634
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Disintegration.lean
635
+ theorems: '*'
636
+ - path: .lake/packages/mathlib/Mathlib/Data/String/Lemmas.lean
637
+ theorems: '*'
638
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/ModEq.lean
639
+ theorems: '*'
640
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/LinearPMap.lean
641
+ theorems: '*'
642
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Order/Compact.lean
643
+ theorems: '*'
644
+ - path: .lake/packages/mathlib/Mathlib/Topology/Covering.lean
645
+ theorems: '*'
646
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Additive/SalemSpencer.lean
647
+ theorems: '*'
648
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/FundThmCalculus.lean
649
+ theorems: '*'
650
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Complex.lean
651
+ theorems: '*'
652
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Lipschitz.lean
653
+ theorems: '*'
654
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Basic.lean
655
+ theorems: '*'
656
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Sqrt.lean
657
+ theorems: '*'
658
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Sigma.lean
659
+ theorems: '*'
660
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/EraseLead.lean
661
+ theorems: '*'
662
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PowerBasis.lean
663
+ theorems: '*'
664
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/ProjectiveResolution.lean
665
+ theorems: '*'
666
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/GiryMonad.lean
667
+ theorems: '*'
668
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/CompactOperator.lean
669
+ theorems: '*'
670
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/LHopital.lean
671
+ theorems: '*'
672
+ - path: .lake/packages/mathlib/Mathlib/Probability/Independence/Kernel.lean
673
+ theorems: '*'
674
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Basic.lean
675
+ theorems: '*'
676
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Coeff.lean
677
+ theorems: '*'
678
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/LegendreSymbol.lean
679
+ theorems: '*'
680
+ - path: .lake/packages/mathlib/Mathlib/Topology/Gluing.lean
681
+ theorems: '*'
682
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/OrderHom.lean
683
+ theorems: '*'
684
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/Decomposition.lean
685
+ theorems: '*'
686
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/WithBotTop.lean
687
+ theorems: '*'
688
+ - path: .lake/packages/mathlib/Mathlib/Topology/Partial.lean
689
+ theorems: '*'
690
+ - path: .lake/packages/mathlib/Mathlib/Data/List/BigOperators/Basic.lean
691
+ theorems: '*'
692
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/UpperHalfPlane/Metric.lean
693
+ theorems: '*'
694
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/MonotoneConvergence.lean
695
+ theorems: '*'
696
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Cofinality.lean
697
+ theorems: '*'
698
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/ENNReal.lean
699
+ theorems: '*'
700
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/RingDivision.lean
701
+ theorems: '*'
702
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Sum.lean
703
+ theorems: '*'
704
+ - path: .lake/packages/mathlib/Mathlib/Data/QPF/Multivariate/Basic.lean
705
+ theorems: '*'
706
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/GramSchmidtOrtho.lean
707
+ theorems: '*'
708
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Pairing.lean
709
+ theorems: '*'
710
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Bitwise.lean
711
+ theorems: '*'
712
+ - path: .lake/packages/mathlib/Mathlib/Probability/IdentDistrib.lean
713
+ theorems: '*'
714
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/LowerUpperTopology.lean
715
+ theorems: '*'
716
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/RadonNikodym.lean
717
+ theorems: '*'
718
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subgroup/Basic.lean
719
+ theorems: '*'
720
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/GroupCompletion.lean
721
+ theorems: '*'
722
+ - path: .lake/packages/mathlib/Mathlib/Data/MvPolynomial/Degrees.lean
723
+ theorems: '*'
724
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/FixedPointFree.lean
725
+ theorems: '*'
726
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/SetToL1.lean
727
+ theorems: '*'
728
+ - path: .lake/packages/mathlib/Mathlib/Init/Data/Int/CompLemmas.lean
729
+ theorems: '*'
730
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Basic.lean
731
+ theorems: '*'
732
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Matrix.lean
733
+ theorems: '*'
734
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Nilpotent.lean
735
+ theorems: '*'
736
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/NhdsSet.lean
737
+ theorems: '*'
738
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Bounded.lean
739
+ theorems: '*'
740
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousFunction/Bounded.lean
741
+ theorems: '*'
742
+ - path: .lake/packages/mathlib/Mathlib/RepresentationTheory/Rep.lean
743
+ theorems: '*'
744
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Exact.lean
745
+ theorems: '*'
746
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Pullbacks.lean
747
+ theorems: '*'
748
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Basic.lean
749
+ theorems: '*'
750
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Hom.lean
751
+ theorems: '*'
752
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Localization/Module.lean
753
+ theorems: '*'
754
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Perfect.lean
755
+ theorems: '*'
756
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/LineDeriv/Basic.lean
757
+ theorems: '*'
758
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Unoriented/RightAngle.lean
759
+ theorems: '*'
760
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/CoprodI.lean
761
+ theorems: '*'
762
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/Monoid.lean
763
+ theorems: '*'
764
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Defs.lean
765
+ theorems: '*'
766
+ - path: .lake/packages/mathlib/Mathlib/Topology/NoetherianSpace.lean
767
+ theorems: '*'
768
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Composition.lean
769
+ theorems: '*'
770
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Univariate/M.lean
771
+ theorems: '*'
772
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/OrdConnectedComponent.lean
773
+ theorems: '*'
774
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Covering/Vitali.lean
775
+ theorems: '*'
776
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Prod.lean
777
+ theorems: '*'
778
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/WithDensity.lean
779
+ theorems: '*'
780
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/LocalizedModule.lean
781
+ theorems: '*'
782
+ - path: .lake/packages/mathlib/Mathlib/Order/OmegaCompletePartialOrder.lean
783
+ theorems: '*'
784
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gaussian.lean
785
+ theorems: '*'
786
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/Group.lean
787
+ theorems: '*'
788
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/Units/Basic.lean
789
+ theorems: '*'
790
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Basic.lean
791
+ theorems: '*'
792
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Pointwise.lean
793
+ theorems: '*'
794
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Teichmuller.lean
795
+ theorems: '*'
796
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Additive/Behrend.lean
797
+ theorems: '*'
798
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Defs.lean
799
+ theorems: '*'
800
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/OperatorNorm/Basic.lean
801
+ theorems: '*'
802
+ - path: .lake/packages/mathlib/Mathlib/Geometry/RingedSpace/LocallyRingedSpace/HasColimits.lean
803
+ theorems: '*'
804
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecificLimits/Normed.lean
805
+ theorems: '*'
806
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ADEInequality.lean
807
+ theorems: '*'
808
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/JacobsonIdeal.lean
809
+ theorems: '*'
810
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Rayleigh.lean
811
+ theorems: '*'
812
+ - path: .lake/packages/mathlib/Mathlib/Condensed/Equivalence.lean
813
+ theorems: '*'
814
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/OrdConnected.lean
815
+ theorems: '*'
816
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteBooleanAlgebra.lean
817
+ theorems: '*'
818
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/MvPolynomial/Homogeneous.lean
819
+ theorems: '*'
820
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/BigOperators.lean
821
+ theorems: '*'
822
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/Hom/Defs.lean
823
+ theorems: '*'
824
+ - path: .lake/packages/mathlib/Mathlib/Data/Sign.lean
825
+ theorems: '*'
826
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/EllipticCurve/Group.lean
827
+ theorems: '*'
828
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Semisimple.lean
829
+ theorems: '*'
830
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Terminal.lean
831
+ theorems: '*'
832
+ - path: .lake/packages/mathlib/Mathlib/Computability/Primrec.lean
833
+ theorems: '*'
834
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/IsometricSMul.lean
835
+ theorems: '*'
836
+ - path: .lake/packages/mathlib/Mathlib/Data/List/NodupEquivFin.lean
837
+ theorems: '*'
838
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Star/ContinuousFunctionalCalculus.lean
839
+ theorems: '*'
840
+ - path: .lake/packages/mathlib/Mathlib/Data/QPF/Multivariate/Constructions/Fix.lean
841
+ theorems: '*'
842
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Basic.lean
843
+ theorems: '*'
844
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/PiL2.lean
845
+ theorems: '*'
846
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/FundamentalGroupoid/Basic.lean
847
+ theorems: '*'
848
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Dickson.lean
849
+ theorems: '*'
850
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Convolution.lean
851
+ theorems: '*'
852
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/Basic.lean
853
+ theorems: '*'
854
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntegrableOn.lean
855
+ theorems: '*'
856
+ - path: .lake/packages/std/Std/Data/Int/DivMod.lean
857
+ theorems: '*'
858
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousOn.lean
859
+ theorems: '*'
860
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Shift/Pullback.lean
861
+ theorems: '*'
862
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Type.lean
863
+ theorems: '*'
864
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Single.lean
865
+ theorems: '*'
866
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Rayleigh.lean
867
+ theorems: '*'
868
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Laurent.lean
869
+ theorems: '*'
870
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ContinuedFractions/Computation/Translations.lean
871
+ theorems: '*'
872
+ - path: .lake/packages/mathlib/Mathlib/Data/List/AList.lean
873
+ theorems: '*'
874
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Stieltjes.lean
875
+ theorems: '*'
876
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/LocalRing.lean
877
+ theorems: '*'
878
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Padics/RingHoms.lean
879
+ theorems: '*'
880
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monovary.lean
881
+ theorems: '*'
882
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Sub.lean
883
+ theorems: '*'
884
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Basic.lean
885
+ theorems: '*'
886
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Field/Basic.lean
887
+ theorems: '*'
888
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Coset.lean
889
+ theorems: '*'
890
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Cyclotomic/CyclotomicCharacter.lean
891
+ theorems: '*'
892
+ - path: .lake/packages/std/Std/Data/PairingHeap.lean
893
+ theorems: '*'
894
+ - path: .lake/packages/mathlib/Mathlib/Topology/Baire/Lemmas.lean
895
+ theorems: '*'
896
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Asymptotics/SpecificAsymptotics.lean
897
+ theorems: '*'
898
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Localization/InvSubmonoid.lean
899
+ theorems: '*'
900
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Lists.lean
901
+ theorems: '*'
902
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Rearrangement.lean
903
+ theorems: '*'
904
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Images.lean
905
+ theorems: '*'
906
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ModularForms/CongruenceSubgroups.lean
907
+ theorems: '*'
908
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Multiequalizer.lean
909
+ theorems: '*'
910
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Fold.lean
911
+ theorems: '*'
912
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/PosPart.lean
913
+ theorems: '*'
914
+ - path: .lake/packages/mathlib/Mathlib/Computability/PartrecCode.lean
915
+ theorems: '*'
916
+ - path: .lake/packages/mathlib/Mathlib/Data/Seq/Computation.lean
917
+ theorems: '*'
918
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Isometry.lean
919
+ theorems: '*'
920
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/Basic.lean
921
+ theorems: '*'
922
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/CentroidHom.lean
923
+ theorems: '*'
924
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/ContDiff/Bounds.lean
925
+ theorems: '*'
926
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Multiplicity.lean
927
+ theorems: '*'
928
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/MFDeriv/Basic.lean
929
+ theorems: '*'
930
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Determinant.lean
931
+ theorems: '*'
932
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Sqrt.lean
933
+ theorems: '*'
934
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Archimedean.lean
935
+ theorems: '*'
936
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/StrictConvexSpace.lean
937
+ theorems: '*'
938
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ConditionalExpectation/CondexpL2.lean
939
+ theorems: '*'
940
+ - path: .lake/packages/mathlib/Mathlib/Computability/Halting.lean
941
+ theorems: '*'
942
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Splits.lean
943
+ theorems: '*'
944
+ - path: .lake/packages/mathlib/Mathlib/Dynamics/Circle/RotationNumber/TranslationNumber.lean
945
+ theorems: '*'
946
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/GammaSpecAdjunction.lean
947
+ theorems: '*'
948
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/Defs.lean
949
+ theorems: '*'
950
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Parity.lean
951
+ theorems: '*'
952
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Triangulated/Pretriangulated.lean
953
+ theorems: '*'
954
+ - path: .lake/packages/mathlib/Mathlib/Data/NNRat/Lemmas.lean
955
+ theorems: '*'
956
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Groupoid/Subgroupoid.lean
957
+ theorems: '*'
958
+ - path: .lake/packages/mathlib/Mathlib/Computability/AkraBazzi/GrowsPolynomially.lean
959
+ theorems: '*'
960
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/SeparableDegree.lean
961
+ theorems: '*'
962
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/ChartedSpace.lean
963
+ theorems: '*'
964
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Basic.lean
965
+ theorems: '*'
966
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Finprod.lean
967
+ theorems: '*'
968
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Rigid/Basic.lean
969
+ theorems: '*'
970
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Star/Subalgebra.lean
971
+ theorems: '*'
972
+ - path: .lake/packages/mathlib/Mathlib/Probability/ProbabilityMassFunction/Constructions.lean
973
+ theorems: '*'
974
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/EverywherePos.lean
975
+ theorems: '*'
976
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Intervals.lean
977
+ theorems: '*'
978
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FractionalIdeal/Operations.lean
979
+ theorems: '*'
980
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Perm.lean
981
+ theorems: '*'
982
+ - path: .lake/packages/std/Std/Data/Array/Lemmas.lean
983
+ theorems: '*'
984
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/GroupAction/Hom.lean
985
+ theorems: '*'
986
+ - path: .lake/packages/mathlib/Mathlib/Probability/ProbabilityMassFunction/Basic.lean
987
+ theorems: '*'
988
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/Instances/Sphere.lean
989
+ theorems: '*'
990
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/NNReal.lean
991
+ theorems: '*'
992
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Bernstein.lean
993
+ theorems: '*'
994
+ - path: .lake/packages/mathlib/Mathlib/Analysis/LocallyConvex/WithSeminorms.lean
995
+ theorems: '*'
996
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Range.lean
997
+ theorems: '*'
998
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Preadditive.lean
999
+ theorems: '*'
1000
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subgroup/Pointwise.lean
1001
+ theorems: '*'
1002
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Banach.lean
1003
+ theorems: '*'
1004
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/IncMatrix.lean
1005
+ theorems: '*'
1006
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/BorelSpace/Basic.lean
1007
+ theorems: '*'
1008
+ - path: .lake/packages/mathlib/Mathlib/Order/UpperLower/Basic.lean
1009
+ theorems: '*'
1010
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/SmallObject/Construction.lean
1011
+ theorems: '*'
1012
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/ProjectiveSpectrum/StructureSheaf.lean
1013
+ theorems: '*'
1014
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Gauge.lean
1015
+ theorems: '*'
1016
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/LinearIndependent.lean
1017
+ theorems: '*'
1018
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Partition/Basic.lean
1019
+ theorems: '*'
1020
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Seminorm.lean
1021
+ theorems: '*'
1022
+ - path: .lake/packages/mathlib/Mathlib/Logic/Denumerable.lean
1023
+ theorems: '*'
1024
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/SumPrimeReciprocals.lean
1025
+ theorems: '*'
1026
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Basis.lean
1027
+ theorems: '*'
1028
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Haar/OfBasis.lean
1029
+ theorems: '*'
1030
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Ordered.lean
1031
+ theorems: '*'
1032
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Basic.lean
1033
+ theorems: '*'
1034
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dimension/DivisionRing.lean
1035
+ theorems: '*'
1036
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Adjoint.lean
1037
+ theorems: '*'
1038
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/ProbabilityMeasure.lean
1039
+ theorems: '*'
1040
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/Ideal.lean
1041
+ theorems: '*'
1042
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Zlattice.lean
1043
+ theorems: '*'
1044
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Module/Basic.lean
1045
+ theorems: '*'
1046
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/FreeAbelianGroupFinsupp.lean
1047
+ theorems: '*'
1048
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Sub/Canonical.lean
1049
+ theorems: '*'
1050
+ - path: .lake/packages/mathlib/Mathlib/Order/GaloisConnection.lean
1051
+ theorems: '*'
1052
+ - path: .lake/packages/mathlib/Mathlib/Order/LocallyFinite.lean
1053
+ theorems: '*'
1054
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/ContDiff/Basic.lean
1055
+ theorems: '*'
1056
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Basic.lean
1057
+ theorems: '*'
1058
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Preadditive/Generator.lean
1059
+ theorems: '*'
1060
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Defs.lean
1061
+ theorems: '*'
1062
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/ClassGroup.lean
1063
+ theorems: '*'
1064
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/ContMDiff/Basic.lean
1065
+ theorems: '*'
1066
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/PosDef.lean
1067
+ theorems: '*'
1068
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Coprime/Basic.lean
1069
+ theorems: '*'
1070
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monoid/WithTop.lean
1071
+ theorems: '*'
1072
+ - path: .lake/packages/mathlib/Mathlib/Data/ENNReal/Real.lean
1073
+ theorems: '*'
1074
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Covering/VitaliFamily.lean
1075
+ theorems: '*'
1076
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Positive.lean
1077
+ theorems: '*'
1078
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Adjugate.lean
1079
+ theorems: '*'
1080
+ - path: .lake/packages/std/Std/Data/Array/Monadic.lean
1081
+ theorems: '*'
1082
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Notation.lean
1083
+ theorems: '*'
1084
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ZetaFunction.lean
1085
+ theorems: '*'
1086
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/VectorMeasure.lean
1087
+ theorems: '*'
1088
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Real.lean
1089
+ theorems: '*'
1090
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Etale.lean
1091
+ theorems: '*'
1092
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RootsOfUnity/Complex.lean
1093
+ theorems: '*'
1094
+ - path: .lake/packages/mathlib/Mathlib/Order/CompactlyGenerated/Basic.lean
1095
+ theorems: '*'
1096
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Log/NegMulLog.lean
1097
+ theorems: '*'
1098
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/TangentCone.lean
1099
+ theorems: '*'
1100
+ - path: .lake/packages/mathlib/Mathlib/Topology/Sheaves/SheafCondition/EqualizerProducts.lean
1101
+ theorems: '*'
1102
+ - path: .lake/packages/mathlib/Mathlib/Topology/Separation.lean
1103
+ theorems: '*'
1104
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Typeclasses.lean
1105
+ theorems: '*'
1106
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LucasLehmer.lean
1107
+ theorems: '*'
1108
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/SchurComplement.lean
1109
+ theorems: '*'
1110
+ - path: .lake/packages/mathlib/Mathlib/Order/Hom/Lattice.lean
1111
+ theorems: '*'
1112
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Localization/Away/Basic.lean
1113
+ theorems: '*'
1114
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Yoneda.lean
1115
+ theorems: '*'
1116
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Basic.lean
1117
+ theorems: '*'
1118
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/OperatorNorm/NormedSpace.lean
1119
+ theorems: '*'
1120
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Angle.lean
1121
+ theorems: '*'
1122
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Symmetric.lean
1123
+ theorems: '*'
1124
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupPower/Ring.lean
1125
+ theorems: '*'
1126
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Prime.lean
1127
+ theorems: '*'
1128
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Nondegenerate.lean
1129
+ theorems: '*'
1130
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/CondDistrib.lean
1131
+ theorems: '*'
1132
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/FiniteAbelian.lean
1133
+ theorems: '*'
1134
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Fin.lean
1135
+ theorems: '*'
1136
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Between.lean
1137
+ theorems: '*'
1138
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Group/Basic.lean
1139
+ theorems: '*'
1140
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Star/StarAlgHom.lean
1141
+ theorems: '*'
1142
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Cylinders.lean
1143
+ theorems: '*'
1144
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/IdealOperations.lean
1145
+ theorems: '*'
1146
+ - path: .lake/packages/mathlib/Mathlib/Order/SupIndep.lean
1147
+ theorems: '*'
1148
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Complement.lean
1149
+ theorems: '*'
1150
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Charpoly/LinearMap.lean
1151
+ theorems: '*'
1152
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/MvPowerSeries/Basic.lean
1153
+ theorems: '*'
1154
+ - path: .lake/packages/mathlib/Mathlib/Order/Bounds/Basic.lean
1155
+ theorems: '*'
1156
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Span.lean
1157
+ theorems: '*'
1158
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/Degeneracies.lean
1159
+ theorems: '*'
1160
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/NNReal.lean
1161
+ theorems: '*'
1162
+ - path: .lake/packages/mathlib/Mathlib/Order/WellFoundedSet.lean
1163
+ theorems: '*'
1164
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Infsep.lean
1165
+ theorems: '*'
1166
+ - path: .lake/packages/mathlib/Mathlib/Order/LiminfLimsup.lean
1167
+ theorems: '*'
1168
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/End.lean
1169
+ theorems: '*'
1170
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupPower/Basic.lean
1171
+ theorems: '*'
1172
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RootsOfUnity/Basic.lean
1173
+ theorems: '*'
1174
+ - path: .lake/packages/mathlib/Mathlib/Data/Ordmap/Ordset.lean
1175
+ theorems: '*'
1176
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/IsAlgClosed/AlgebraicClosure.lean
1177
+ theorems: '*'
1178
+ - path: .lake/packages/mathlib/Mathlib/Order/Heyting/Basic.lean
1179
+ theorems: '*'
1180
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Diagonal.lean
1181
+ theorems: '*'
1182
+ - path: .lake/packages/mathlib/Mathlib/Order/ModularLattice.lean
1183
+ theorems: '*'
1184
+ - path: .lake/packages/std/Std/Data/RBMap/WF.lean
1185
+ theorems: '*'
1186
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/Defs.lean
1187
+ theorems: '*'
1188
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Tuple/Basic.lean
1189
+ theorems: '*'
1190
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Thickening.lean
1191
+ theorems: '*'
1192
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/MeasurableSpace/Basic.lean
1193
+ theorems: '*'
1194
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Category/Basic.lean
1195
+ theorems: '*'
1196
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Affine.lean
1197
+ theorems: '*'
1198
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Ends/Defs.lean
1199
+ theorems: '*'
1200
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Body.lean
1201
+ theorems: '*'
1202
+ - path: .lake/packages/mathlib/Mathlib/Probability/StrongLaw.lean
1203
+ theorems: '*'
1204
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Interval.lean
1205
+ theorems: '*'
1206
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Valuation/Basic.lean
1207
+ theorems: '*'
1208
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Prod.lean
1209
+ theorems: '*'
1210
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/ToLin.lean
1211
+ theorems: '*'
1212
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Prod.lean
1213
+ theorems: '*'
1214
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/NeZero.lean
1215
+ theorems: '*'
1216
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/HomComplex.lean
1217
+ theorems: '*'
1218
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Basis.lean
1219
+ theorems: '*'
1220
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/SpecificFunctions/Deriv.lean
1221
+ theorems: '*'
1222
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/AffineMap.lean
1223
+ theorems: '*'
1224
+ - path: .lake/packages/mathlib/Mathlib/Order/SupClosed.lean
1225
+ theorems: '*'
1226
+ - path: .lake/packages/mathlib/Mathlib/Data/Fintype/Perm.lean
1227
+ theorems: '*'
1228
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Count.lean
1229
+ theorems: '*'
1230
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Log/Basic.lean
1231
+ theorems: '*'
1232
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Basic.lean
1233
+ theorems: '*'
1234
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Units.lean
1235
+ theorems: '*'
1236
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Types.lean
1237
+ theorems: '*'
1238
+ - path: .lake/packages/mathlib/Mathlib/Tactic/Ring/RingNF.lean
1239
+ theorems: '*'
1240
+ - path: .lake/packages/mathlib/Mathlib/Data/Seq/WSeq.lean
1241
+ theorems: '*'
1242
+ - path: .lake/packages/mathlib/Mathlib/Topology/Connected/PathConnected.lean
1243
+ theorems: '*'
1244
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Solvable.lean
1245
+ theorems: '*'
1246
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Padics/PadicVal.lean
1247
+ theorems: '*'
1248
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Side.lean
1249
+ theorems: '*'
1250
+ - path: .lake/packages/mathlib/Mathlib/Topology/NhdsSet.lean
1251
+ theorems: '*'
1252
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Semantics.lean
1253
+ theorems: '*'
1254
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Reverse.lean
1255
+ theorems: '*'
1256
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/Sheaf/LocallyRingedSpace.lean
1257
+ theorems: '*'
1258
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Identities.lean
1259
+ theorems: '*'
1260
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/EllipticCurve/Jacobian.lean
1261
+ theorems: '*'
1262
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Eisenstein/Basic.lean
1263
+ theorems: '*'
1264
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/TensorProduct/Basic.lean
1265
+ theorems: '*'
1266
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSpace.lean
1267
+ theorems: '*'
1268
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Subalgebra/Unitization.lean
1269
+ theorems: '*'
1270
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LocallyIntegrable.lean
1271
+ theorems: '*'
1272
+ - path: .lake/packages/mathlib/Mathlib/Topology/Homotopy/Product.lean
1273
+ theorems: '*'
1274
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Image.lean
1275
+ theorems: '*'
1276
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Adjoin/Basic.lean
1277
+ theorems: '*'
1278
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector/Basic.lean
1279
+ theorems: '*'
1280
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/RightDerived.lean
1281
+ theorems: '*'
1282
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Basic.lean
1283
+ theorems: '*'
1284
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Units.lean
1285
+ theorems: '*'
1286
+ - path: .lake/packages/mathlib/Mathlib/Topology/IndicatorConstPointwise.lean
1287
+ theorems: '*'
1288
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Inductions.lean
1289
+ theorems: '*'
1290
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Basic.lean
1291
+ theorems: '*'
1292
+ - path: .lake/packages/mathlib/Mathlib/Computability/TuringMachine.lean
1293
+ theorems: '*'
1294
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Derangements/Basic.lean
1295
+ theorems: '*'
1296
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Subobject/Comma.lean
1297
+ theorems: '*'
1298
+ - path: .lake/packages/mathlib/Mathlib/Order/InitialSeg.lean
1299
+ theorems: '*'
1300
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Measure.lean
1301
+ theorems: '*'
1302
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/OrderOfElement.lean
1303
+ theorems: '*'
1304
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/SmoothSeries.lean
1305
+ theorems: '*'
1306
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Biproducts.lean
1307
+ theorems: '*'
1308
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Card.lean
1309
+ theorems: '*'
1310
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/ImproperIntegrals.lean
1311
+ theorems: '*'
1312
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FractionalIdeal/Basic.lean
1313
+ theorems: '*'
1314
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gamma/Basic.lean
1315
+ theorems: '*'
1316
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/HausdorffDistance.lean
1317
+ theorems: '*'
1318
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/GroupAction/Basic.lean
1319
+ theorems: '*'
1320
+ - path: .lake/packages/std/Std/Data/AssocList.lean
1321
+ theorems: '*'
1322
+ - path: .lake/packages/mathlib/Mathlib/Data/DFinsupp/Basic.lean
1323
+ theorems: '*'
1324
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Exponential.lean
1325
+ theorems: '*'
1326
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/SmoothManifoldWithCorners.lean
1327
+ theorems: '*'
1328
+ - path: .lake/packages/mathlib/Mathlib/Order/ConditionallyCompleteLattice/Basic.lean
1329
+ theorems: '*'
1330
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Basis.lean
1331
+ theorems: '*'
1332
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Constructions.lean
1333
+ theorems: '*'
1334
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/ContDiff/Defs.lean
1335
+ theorems: '*'
1336
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Contracting.lean
1337
+ theorems: '*'
1338
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Expand.lean
1339
+ theorems: '*'
1340
+ - path: .lake/packages/mathlib/Mathlib/Analysis/ODE/Gronwall.lean
1341
+ theorems: '*'
1342
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Zip.lean
1343
+ theorems: '*'
1344
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactness/LocallyCompact.lean
1345
+ theorems: '*'
1346
+ - path: .lake/packages/mathlib/Mathlib/Topology/Homeomorph.lean
1347
+ theorems: '*'
1348
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Choose/Basic.lean
1349
+ theorems: '*'
1350
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/RootSystem/Basic.lean
1351
+ theorems: '*'
1352
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/Lebesgue.lean
1353
+ theorems: '*'
1354
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Filtration.lean
1355
+ theorems: '*'
1356
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/GoldenRatio.lean
1357
+ theorems: '*'
1358
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Young/YoungDiagram.lean
1359
+ theorems: '*'
1360
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Subsemiring/Basic.lean
1361
+ theorems: '*'
1362
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/RatFunc.lean
1363
+ theorems: '*'
1364
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Partition.lean
1365
+ theorems: '*'
1366
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/BilinearForm/Basic.lean
1367
+ theorems: '*'
1368
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactness/Compact.lean
1369
+ theorems: '*'
1370
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/PseudoMetric.lean
1371
+ theorems: '*'
1372
+ - path: .lake/packages/mathlib/Mathlib/Topology/Connected/Basic.lean
1373
+ theorems: '*'
1374
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Basis/VectorSpace.lean
1375
+ theorems: '*'
1376
+ - path: .lake/packages/mathlib/Mathlib/Order/Directed.lean
1377
+ theorems: '*'
1378
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/ZeroMorphisms.lean
1379
+ theorems: '*'
1380
+ - path: .lake/packages/mathlib/Mathlib/Order/Disjoint.lean
1381
+ theorems: '*'
1382
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/DegreewiseSplit.lean
1383
+ theorems: '*'
1384
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Degree/TrailingDegree.lean
1385
+ theorems: '*'
1386
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ConditionalExpectation/Basic.lean
1387
+ theorems: '*'
1388
+ - path: .lake/packages/mathlib/Mathlib/Data/ENNReal/Inv.lean
1389
+ theorems: '*'
1390
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/NAry.lean
1391
+ theorems: '*'
1392
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Equicontinuity.lean
1393
+ theorems: '*'
1394
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PowerSeries/Trunc.lean
1395
+ theorems: '*'
1396
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Whiskering.lean
1397
+ theorems: '*'
1398
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/StoneSeparation.lean
1399
+ theorems: '*'
1400
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/Lemmas.lean
1401
+ theorems: '*'
1402
+ - path: .lake/packages/mathlib/Mathlib/Computability/Language.lean
1403
+ theorems: '*'
1404
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Vandermonde.lean
1405
+ theorems: '*'
1406
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Sub/Defs.lean
1407
+ theorems: '*'
1408
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Eigenspace/Minpoly.lean
1409
+ theorems: '*'
1410
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/InfiniteSum/Basic.lean
1411
+ theorems: '*'
1412
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Basic.lean
1413
+ theorems: '*'
1414
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Ordinal.lean
1415
+ theorems: '*'
1416
+ - path: .lake/packages/mathlib/Mathlib/Data/Part.lean
1417
+ theorems: '*'
1418
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Pointwise.lean
1419
+ theorems: '*'
1420
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/PartialEquiv.lean
1421
+ theorems: '*'
1422
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Intervals.lean
1423
+ theorems: '*'
1424
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Cast/Lemmas.lean
1425
+ theorems: '*'
1426
+ - path: .lake/packages/mathlib/Mathlib/Algebra/CharP/MixedCharZero.lean
1427
+ theorems: '*'
1428
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Indexes.lean
1429
+ theorems: '*'
1430
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Degree/Definitions.lean
1431
+ theorems: '*'
1432
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/LeftHomology.lean
1433
+ theorems: '*'
1434
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/LinearPMap.lean
1435
+ theorems: '*'
1436
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/NonUnitalSubalgebra.lean
1437
+ theorems: '*'
1438
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Star.lean
1439
+ theorems: '*'
1440
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Hausdorff.lean
1441
+ theorems: '*'
1442
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Multilinear/Basic.lean
1443
+ theorems: '*'
1444
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/MappingCone.lean
1445
+ theorems: '*'
1446
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/Homotopies.lean
1447
+ theorems: '*'
1448
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/StronglyMeasurable/Basic.lean
1449
+ theorems: '*'
1450
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/GaugeRescale.lean
1451
+ theorems: '*'
1452
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Connectivity.lean
1453
+ theorems: '*'
1454
+ - path: .lake/packages/mathlib/Mathlib/Topology/Category/TopCat/Limits/Pullbacks.lean
1455
+ theorems: '*'
1456
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Univariate/Basic.lean
1457
+ theorems: '*'
1458
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Subobject/Basic.lean
1459
+ theorems: '*'
1460
+ - path: .lake/packages/mathlib/Mathlib/Computability/Partrec.lean
1461
+ theorems: '*'
1462
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Tuple/Curry.lean
1463
+ theorems: '*'
1464
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Index.lean
1465
+ theorems: '*'
1466
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Ring/Ideal.lean
1467
+ theorems: '*'
1468
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Restrict.lean
1469
+ theorems: '*'
1470
+ - project: data/test/Mathlib
1471
+ files:
1472
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Adjoin.lean
1473
+ theorems: '*'
1474
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/FixedPoint.lean
1475
+ theorems: '*'
1476
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/HomComplexShift.lean
1477
+ theorems: '*'
1478
+ - path: .lake/packages/mathlib/Mathlib/Topology/PartialHomeomorph.lean
1479
+ theorems: '*'
1480
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Star/Multiplier.lean
1481
+ theorems: '*'
1482
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Conjugation.lean
1483
+ theorems: '*'
1484
+ - path: .lake/packages/mathlib/Mathlib/Data/Option/NAry.lean
1485
+ theorems: '*'
1486
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Nodup.lean
1487
+ theorems: '*'
1488
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/Semiconj.lean
1489
+ theorems: '*'
1490
+ - path: .lake/packages/mathlib/Mathlib/Data/Fintype/BigOperators.lean
1491
+ theorems: '*'
1492
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/SemidirectProduct.lean
1493
+ theorems: '*'
1494
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convolution.lean
1495
+ theorems: '*'
1496
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/LocallyFinite.lean
1497
+ theorems: '*'
1498
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Fourier/FourierTransformDeriv.lean
1499
+ theorems: '*'
1500
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/Triangulated.lean
1501
+ theorems: '*'
1502
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/DivMod.lean
1503
+ theorems: '*'
1504
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Pointwise.lean
1505
+ theorems: '*'
1506
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/AbelRuffini.lean
1507
+ theorems: '*'
1508
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Localization/Equivalence.lean
1509
+ theorems: '*'
1510
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/ComposableArrows.lean
1511
+ theorems: '*'
1512
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoundedVariation.lean
1513
+ theorems: '*'
1514
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Submonoid/Operations.lean
1515
+ theorems: '*'
1516
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/EReal.lean
1517
+ theorems: '*'
1518
+ - path: .lake/packages/mathlib/Mathlib/Tactic/LinearCombination.lean
1519
+ theorems: '*'
1520
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSeminorm/Basic.lean
1521
+ theorems: '*'
1522
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/UniformIntegrable.lean
1523
+ theorems: '*'
1524
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Rank.lean
1525
+ theorems: '*'
1526
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/PiLp.lean
1527
+ theorems: '*'
1528
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/PhragmenLindelof.lean
1529
+ theorems: '*'
1530
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Compact.lean
1531
+ theorems: '*'
1532
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Operations.lean
1533
+ theorems: '*'
1534
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/Sign.lean
1535
+ theorems: '*'
1536
+ - path: .lake/packages/mathlib/Mathlib/Topology/EMetricSpace/Basic.lean
1537
+ theorems: '*'
1538
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Partition/Split.lean
1539
+ theorems: '*'
1540
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Game/PGame.lean
1541
+ theorems: '*'
1542
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/Compression/UV.lean
1543
+ theorems: '*'
1544
+ - path: .lake/packages/std/Std/Data/Nat/Gcd.lean
1545
+ theorems: '*'
1546
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/Basic.lean
1547
+ theorems: '*'
1548
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/RightHomology.lean
1549
+ theorems: '*'
1550
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Localization/CalculusOfFractions.lean
1551
+ theorems: '*'
1552
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/MeasureCompProd.lean
1553
+ theorems: '*'
1554
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Combination.lean
1555
+ theorems: '*'
1556
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Prod/Integral.lean
1557
+ theorems: '*'
1558
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Basic.lean
1559
+ theorems: '*'
1560
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Lebesgue/Basic.lean
1561
+ theorems: '*'
1562
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Laurent.lean
1563
+ theorems: '*'
1564
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Basic.lean
1565
+ theorems: '*'
1566
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/FiniteDimension.lean
1567
+ theorems: '*'
1568
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Category/GroupCat/FilteredColimits.lean
1569
+ theorems: '*'
1570
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Weights/Basic.lean
1571
+ theorems: '*'
1572
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/Shatter.lean
1573
+ theorems: '*'
1574
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactness/Lindelof.lean
1575
+ theorems: '*'
1576
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Types.lean
1577
+ theorems: '*'
1578
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/Result.lean
1579
+ theorems: '*'
1580
+ - path: .lake/packages/mathlib/Mathlib/Algebra/EuclideanDomain/Basic.lean
1581
+ theorems: '*'
1582
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/SpecificGroups/Dihedral.lean
1583
+ theorems: '*'
1584
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Basic.lean
1585
+ theorems: '*'
1586
+ - path: .lake/packages/mathlib/Mathlib/Data/Sym/Basic.lean
1587
+ theorems: '*'
1588
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/l2Space.lean
1589
+ theorems: '*'
1590
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Operations.lean
1591
+ theorems: '*'
1592
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/FLT/Four.lean
1593
+ theorems: '*'
1594
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/NumberField/CanonicalEmbedding.lean
1595
+ theorems: '*'
1596
+ - path: .lake/packages/mathlib/Mathlib/Logic/Lemmas.lean
1597
+ theorems: '*'
1598
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Tropical/BigOperators.lean
1599
+ theorems: '*'
1600
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/UniqueFactorizationDomain.lean
1601
+ theorems: '*'
1602
+ - path: .lake/packages/mathlib/Mathlib/Analysis/PSeries.lean
1603
+ theorems: '*'
1604
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Injective.lean
1605
+ theorems: '*'
1606
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntegralEqImproper.lean
1607
+ theorems: '*'
1608
+ - path: .lake/packages/mathlib/Mathlib/Algebra/FreeAlgebra.lean
1609
+ theorems: '*'
1610
+ - path: .lake/packages/mathlib/Mathlib/Topology/Constructions.lean
1611
+ theorems: '*'
1612
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Analytic/Basic.lean
1613
+ theorems: '*'
1614
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/WithTop.lean
1615
+ theorems: '*'
1616
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Div.lean
1617
+ theorems: '*'
1618
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/PiNat.lean
1619
+ theorems: '*'
1620
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Abs.lean
1621
+ theorems: '*'
1622
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Associated.lean
1623
+ theorems: '*'
1624
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Lift.lean
1625
+ theorems: '*'
1626
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dual.lean
1627
+ theorems: '*'
1628
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/QuadraticForm/Prod.lean
1629
+ theorems: '*'
1630
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Intrinsic.lean
1631
+ theorems: '*'
1632
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Derivation/Basic.lean
1633
+ theorems: '*'
1634
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Dilation.lean
1635
+ theorems: '*'
1636
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Module/FiniteDimension.lean
1637
+ theorems: '*'
1638
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/DominatedConvergence.lean
1639
+ theorems: '*'
1640
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Adjunction/Opposites.lean
1641
+ theorems: '*'
1642
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntervalAverage.lean
1643
+ theorems: '*'
1644
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/OuterMeasure/Basic.lean
1645
+ theorems: '*'
1646
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Star.lean
1647
+ theorems: '*'
1648
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/SimplexCategory.lean
1649
+ theorems: '*'
1650
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/ZFC/Basic.lean
1651
+ theorems: '*'
1652
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Eval.lean
1653
+ theorems: '*'
1654
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/LinearMap/Basic.lean
1655
+ theorems: '*'
1656
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Function/Support.lean
1657
+ theorems: '*'
1658
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/IntegralClosure.lean
1659
+ theorems: '*'
1660
+ - path: .lake/packages/mathlib/Mathlib/Init/Data/Nat/Lemmas.lean
1661
+ theorems: '*'
1662
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Unoriented/Affine.lean
1663
+ theorems: '*'
1664
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/MeasurableSpace/Defs.lean
1665
+ theorems: '*'
1666
+ - path: .lake/packages/mathlib/Mathlib/Logic/Hydra.lean
1667
+ theorems: '*'
1668
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/NAry.lean
1669
+ theorems: '*'
1670
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Multivariate/Basic.lean
1671
+ theorems: '*'
1672
+ - path: .lake/packages/mathlib/Mathlib/Data/Holor.lean
1673
+ theorems: '*'
1674
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ModEq.lean
1675
+ theorems: '*'
1676
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/NNReal.lean
1677
+ theorems: '*'
1678
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Periodic.lean
1679
+ theorems: '*'
1680
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/SnakeLemma.lean
1681
+ theorems: '*'
1682
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PolynomialAlgebra.lean
1683
+ theorems: '*'
1684
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Box/Basic.lean
1685
+ theorems: '*'
1686
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/Different.lean
1687
+ theorems: '*'
1688
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/lpSpace.lean
1689
+ theorems: '*'
1690
+ - path: .lake/packages/std/Std/Data/String/Lemmas.lean
1691
+ theorems: '*'
1692
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Algebra/Ring/Basic.lean
1693
+ theorems: '*'
1694
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Zsqrtd/Basic.lean
1695
+ theorems: '*'
1696
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Contraction.lean
1697
+ theorems: '*'
1698
+ - path: .lake/packages/mathlib/Mathlib/Order/SuccPred/Limit.lean
1699
+ theorems: '*'
1700
+ - path: .lake/packages/mathlib/Mathlib/Dynamics/PeriodicPts.lean
1701
+ theorems: '*'
1702
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Charpoly/Basic.lean
1703
+ theorems: '*'
1704
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactness/SigmaCompact.lean
1705
+ theorems: '*'
1706
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GCDMonoid/Basic.lean
1707
+ theorems: '*'
1708
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Discriminant.lean
1709
+ theorems: '*'
1710
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/NonsingularInverse.lean
1711
+ theorems: '*'
1712
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Substructures.lean
1713
+ theorems: '*'
1714
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/AtTopBot.lean
1715
+ theorems: '*'
1716
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Exp.lean
1717
+ theorems: '*'
1718
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Module/Defs.lean
1719
+ theorems: '*'
1720
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Fib/Zeckendorf.lean
1721
+ theorems: '*'
1722
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Notation.lean
1723
+ theorems: '*'
1724
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Quandle.lean
1725
+ theorems: '*'
1726
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousFunction/NonUnitalFunctionalCalculus.lean
1727
+ theorems: '*'
1728
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RingHomProperties.lean
1729
+ theorems: '*'
1730
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Floor.lean
1731
+ theorems: '*'
1732
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/Mul.lean
1733
+ theorems: '*'
1734
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Ray.lean
1735
+ theorems: '*'
1736
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Projection.lean
1737
+ theorems: '*'
1738
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/FiniteDimensional.lean
1739
+ theorems: '*'
1740
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/ToNat.lean
1741
+ theorems: '*'
1742
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Spectrum.lean
1743
+ theorems: '*'
1744
+ - path: .lake/packages/mathlib/Mathlib/Topology/Basic.lean
1745
+ theorems: '*'
1746
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/StrictConvexBetween.lean
1747
+ theorems: '*'
1748
+ - path: .lake/packages/mathlib/Mathlib/Control/EquivFunctor.lean
1749
+ theorems: '*'
1750
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monoid/MinMax.lean
1751
+ theorems: '*'
1752
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/Basic.lean
1753
+ theorems: '*'
1754
+ - path: .lake/packages/mathlib/Mathlib/Logic/Function/Basic.lean
1755
+ theorems: '*'
1756
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCofiber.lean
1757
+ theorems: '*'
1758
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Inverse.lean
1759
+ theorems: '*'
1760
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Basic.lean
1761
+ theorems: '*'
1762
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Card.lean
1763
+ theorems: '*'
1764
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Exponential.lean
1765
+ theorems: '*'
1766
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/AdjMatrix.lean
1767
+ theorems: '*'
1768
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Irrational.lean
1769
+ theorems: '*'
1770
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/PiAntidiagonal.lean
1771
+ theorems: '*'
1772
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/CompleteField.lean
1773
+ theorems: '*'
1774
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/VonMangoldt.lean
1775
+ theorems: '*'
1776
+ - path: .lake/packages/mathlib/Mathlib/Data/ZMod/Basic.lean
1777
+ theorems: '*'
1778
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/ToIntervalMod.lean
1779
+ theorems: '*'
1780
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Jacobson.lean
1781
+ theorems: '*'
1782
+ - path: .lake/packages/mathlib/Mathlib/RepresentationTheory/GroupCohomology/LowDegree.lean
1783
+ theorems: '*'
1784
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Derivative.lean
1785
+ theorems: '*'
1786
+ - path: .lake/packages/mathlib/Mathlib/Data/Sym/Sym2.lean
1787
+ theorems: '*'
1788
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/HahnSeries/Multiplication.lean
1789
+ theorems: '*'
1790
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Factors.lean
1791
+ theorems: '*'
1792
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Hyperreal.lean
1793
+ theorems: '*'
1794
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Basic.lean
1795
+ theorems: '*'
1796
+ - path: .lake/packages/std/Std/Data/RBMap/Lemmas.lean
1797
+ theorems: '*'
1798
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Presheaf.lean
1799
+ theorems: '*'
1800
+ - path: .lake/packages/mathlib/Mathlib/Topology/SeparatedMap.lean
1801
+ theorems: '*'
1802
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/SimpleFuncDense.lean
1803
+ theorems: '*'
1804
+ - path: .lake/packages/mathlib/Mathlib/Topology/Semicontinuous.lean
1805
+ theorems: '*'
1806
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Basic.lean
1807
+ theorems: '*'
1808
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Dioph.lean
1809
+ theorems: '*'
1810
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteLattice.lean
1811
+ theorems: '*'
1812
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/Shadow.lean
1813
+ theorems: '*'
1814
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Submodule/Bilinear.lean
1815
+ theorems: '*'
1816
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Cast/Order.lean
1817
+ theorems: '*'
1818
+ - path: .lake/packages/std/Std/Data/Int/Gcd.lean
1819
+ theorems: '*'
1820
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Block.lean
1821
+ theorems: '*'
1822
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Noetherian.lean
1823
+ theorems: '*'
1824
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Basic.lean
1825
+ theorems: '*'
1826
+ - path: .lake/packages/mathlib/Mathlib/Computability/DFA.lean
1827
+ theorems: '*'
1828
+ - path: .lake/packages/mathlib/Mathlib/Logic/Unique.lean
1829
+ theorems: '*'
1830
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Fubini.lean
1831
+ theorems: '*'
1832
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Haar/Disintegration.lean
1833
+ theorems: '*'
1834
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Haar/Unique.lean
1835
+ theorems: '*'
1836
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Asymptotics/Theta.lean
1837
+ theorems: '*'
1838
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Category.lean
1839
+ theorems: '*'
1840
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Image.lean
1841
+ theorems: '*'
1842
+ - path: .lake/packages/mathlib/Mathlib/Probability/Martingale/Upcrossing.lean
1843
+ theorems: '*'
1844
+ - path: .lake/packages/mathlib/Mathlib/Order/JordanHolder.lean
1845
+ theorems: '*'
1846
+ - path: .lake/packages/mathlib/Mathlib/Data/Matroid/Dual.lean
1847
+ theorems: '*'
1848
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RootsOfUnity/Minpoly.lean
1849
+ theorems: '*'
1850
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Log.lean
1851
+ theorems: '*'
1852
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Nilpotent.lean
1853
+ theorems: '*'
1854
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LSeries/Convergence.lean
1855
+ theorems: '*'
1856
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Totient.lean
1857
+ theorems: '*'
1858
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GradedMonoid.lean
1859
+ theorems: '*'
1860
+ - path: .lake/packages/mathlib/Mathlib/Data/Analysis/Topology.lean
1861
+ theorems: '*'
1862
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Analytic/Inverse.lean
1863
+ theorems: '*'
1864
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/Generator.lean
1865
+ theorems: '*'
1866
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Basic.lean
1867
+ theorems: '*'
1868
+ - path: .lake/packages/mathlib/Mathlib/Tactic/PushNeg.lean
1869
+ theorems: '*'
1870
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/SimpleFunc.lean
1871
+ theorems: '*'
1872
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteSublattice.lean
1873
+ theorems: '*'
1874
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subsemigroup/Membership.lean
1875
+ theorems: '*'
1876
+ - path: .lake/packages/mathlib/Mathlib/Data/Fintype/Basic.lean
1877
+ theorems: '*'
1878
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/Interval.lean
1879
+ theorems: '*'
1880
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Reflection.lean
1881
+ theorems: '*'
1882
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Spectrum.lean
1883
+ theorems: '*'
1884
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/MeasureSpace.lean
1885
+ theorems: '*'
1886
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/LevyProkhorovMetric.lean
1887
+ theorems: '*'
1888
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/InfiniteSum/Ring.lean
1889
+ theorems: '*'
1890
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Comma/Presheaf.lean
1891
+ theorems: '*'
1892
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Topology.lean
1893
+ theorems: '*'
1894
+ - path: .lake/packages/mathlib/Mathlib/Data/Option/Basic.lean
1895
+ theorems: '*'
1896
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Kaehler.lean
1897
+ theorems: '*'
1898
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/GCD/Basic.lean
1899
+ theorems: '*'
1900
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Divisors.lean
1901
+ theorems: '*'
1902
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/MaxPowDiv.lean
1903
+ theorems: '*'
1904
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PrincipalIdealDomain.lean
1905
+ theorems: '*'
1906
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Homotopy.lean
1907
+ theorems: '*'
1908
+ - path: .lake/packages/mathlib/Mathlib/Order/Iterate.lean
1909
+ theorems: '*'
1910
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/NumberField/Embeddings.lean
1911
+ theorems: '*'
1912
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Sigma.lean
1913
+ theorems: '*'
1914
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Cotangent.lean
1915
+ theorems: '*'
1916
+ - path: .lake/packages/mathlib/Mathlib/Topology/DenseEmbedding.lean
1917
+ theorems: '*'
1918
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/LocallyFinite/Basic.lean
1919
+ theorems: '*'
1920
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/UniformConvergence.lean
1921
+ theorems: '*'
1922
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/ScaleRoots.lean
1923
+ theorems: '*'
1924
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/ProjectiveSpectrum/Topology.lean
1925
+ theorems: '*'
1926
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/FiniteMeasure.lean
1927
+ theorems: '*'
1928
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/RamificationInertia.lean
1929
+ theorems: '*'
1930
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Defs.lean
1931
+ theorems: '*'
1932
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Commute/Defs.lean
1933
+ theorems: '*'
1934
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Basic.lean
1935
+ theorems: '*'
1936
+ - path: .lake/packages/mathlib/Mathlib/Topology/EMetricSpace/Lipschitz.lean
1937
+ theorems: '*'
1938
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Sign.lean
1939
+ theorems: '*'
1940
+ - path: .lake/packages/std/Std/Data/List/Lemmas.lean
1941
+ theorems: '*'
1942
+ - path: .lake/packages/mathlib/Mathlib/Order/Lattice.lean
1943
+ theorems: '*'
1944
+ - path: .lake/packages/mathlib/Mathlib/RepresentationTheory/Action/Monoidal.lean
1945
+ theorems: '*'
1946
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Arithmetic.lean
1947
+ theorems: '*'
1948
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Basic.lean
1949
+ theorems: '*'
1950
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Multilinear/Curry.lean
1951
+ theorems: '*'
1952
+ - path: .lake/packages/mathlib/Mathlib/Data/DFinsupp/Order.lean
1953
+ theorems: '*'
1954
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/PID.lean
1955
+ theorems: '*'
1956
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/AEEqFun.lean
1957
+ theorems: '*'
1958
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/RightAngle.lean
1959
+ theorems: '*'
1960
+ - path: .lake/packages/mathlib/Mathlib/Data/IsROrC/Basic.lean
1961
+ theorems: '*'
1962
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Basic.lean
1963
+ theorems: '*'
1964
+ - path: .lake/packages/mathlib/Mathlib/Algebra/AddConstMap/Basic.lean
1965
+ theorems: '*'
1966
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/UniformGroup.lean
1967
+ theorems: '*'
1968
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Digits.lean
1969
+ theorems: '*'
1970
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Basic.lean
1971
+ theorems: '*'
1972
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/InverseFunctionTheorem/FDeriv.lean
1973
+ theorems: '*'
1974
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/Functor.lean
1975
+ theorems: '*'
1976
+ - path: .lake/packages/mathlib/Mathlib/Logic/Relation.lean
1977
+ theorems: '*'
1978
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/GCD.lean
1979
+ theorems: '*'
1980
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Gluing.lean
1981
+ theorems: '*'
1982
+ - path: .lake/packages/mathlib/Mathlib/Tactic/ComputeDegree.lean
1983
+ theorems: '*'
1984
+ - path: .lake/packages/mathlib/Mathlib/Algebra/IsPrimePow.lean
1985
+ theorems: '*'
1986
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Ext.lean
1987
+ theorems: '*'
1988
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Matrix.lean
1989
+ theorems: '*'
1990
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Equalizers.lean
1991
+ theorems: '*'
1992
+ - path: .lake/packages/mathlib/Mathlib/Topology/CompactOpen.lean
1993
+ theorems: '*'
1994
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/DivergenceTheorem.lean
1995
+ theorems: '*'
1996
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/PartitionOfUnity.lean
1997
+ theorems: '*'
1998
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Finsupp.lean
1999
+ theorems: '*'
2000
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Segment.lean
2001
+ theorems: '*'
2002
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Inv.lean
2003
+ theorems: '*'
2004
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Sites/Sheaf.lean
2005
+ theorems: '*'
2006
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/SesquilinearForm.lean
2007
+ theorems: '*'
2008
+ - path: .lake/packages/mathlib/Mathlib/Computability/AkraBazzi/AkraBazzi.lean
2009
+ theorems: '*'
2010
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ContinuedFractions/Computation/TerminatesIffRat.lean
2011
+ theorems: '*'
2012
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GCDMonoid/Multiset.lean
2013
+ theorems: '*'
2014
+ - path: .lake/packages/mathlib/Mathlib/Data/Finmap.lean
2015
+ theorems: '*'
2016
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorial/Cast.lean
2017
+ theorems: '*'
2018
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Archimedean.lean
2019
+ theorems: '*'
2020
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Lattice.lean
2021
+ theorems: '*'
2022
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Lagrange.lean
2023
+ theorems: '*'
2024
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Basic.lean
2025
+ theorems: '*'
2026
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ClassNumber/Finite.lean
2027
+ theorems: '*'
2028
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FinitePresentation.lean
2029
+ theorems: '*'
2030
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/ChainOfDivisors.lean
2031
+ theorems: '*'
2032
+ - path: .lake/packages/mathlib/Mathlib/Computability/TMToPartrec.lean
2033
+ theorems: '*'
2034
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Submodule.lean
2035
+ theorems: '*'
2036
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Order/Basic.lean
2037
+ theorems: '*'
2038
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/Lebesgue.lean
2039
+ theorems: '*'
2040
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Disintegration/Density.lean
2041
+ theorems: '*'
2042
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/PiTensorProduct.lean
2043
+ theorems: '*'
2044
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Rotate.lean
2045
+ theorems: '*'
2046
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Basic.lean
2047
+ theorems: '*'
2048
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/MonoCoprod.lean
2049
+ theorems: '*'
2050
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/CauchyIntegral.lean
2051
+ theorems: '*'
2052
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/Hom.lean
2053
+ theorems: '*'
2054
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Transvection.lean
2055
+ theorems: '*'
2056
+ - path: .lake/packages/mathlib/Mathlib/Computability/Reduce.lean
2057
+ theorems: '*'
2058
+ - path: .lake/packages/mathlib/Mathlib/Data/Num/Lemmas.lean
2059
+ theorems: '*'
2060
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Modular.lean
2061
+ theorems: '*'
2062
+ - path: .lake/packages/std/Std/Data/Rat/Lemmas.lean
2063
+ theorems: '*'
2064
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Gradient/Basic.lean
2065
+ theorems: '*'
2066
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Divisibility/Units.lean
2067
+ theorems: '*'
2068
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Fib/Basic.lean
2069
+ theorems: '*'
2070
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Killing.lean
2071
+ theorems: '*'
2072
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/QuotientPi.lean
2073
+ theorems: '*'
2074
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Norm.lean
2075
+ theorems: '*'
2076
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Choose/Multinomial.lean
2077
+ theorems: '*'
2078
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Chain.lean
2079
+ theorems: '*'
2080
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/PartENat.lean
2081
+ theorems: '*'
2082
+ - path: .lake/packages/mathlib/Mathlib/Probability/Process/Stopping.lean
2083
+ theorems: '*'
2084
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Opposites.lean
2085
+ theorems: '*'
2086
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Pointwise.lean
2087
+ theorems: '*'
2088
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Prod.lean
2089
+ theorems: '*'
2090
+ - path: .lake/packages/mathlib/Mathlib/Algebra/EuclideanDomain/Defs.lean
2091
+ theorems: '*'
2092
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/Average.lean
2093
+ theorems: '*'
2094
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/ModEq.lean
2095
+ theorems: '*'
2096
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Bases.lean
2097
+ theorems: '*'
2098
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Order/Compact.lean
2099
+ theorems: '*'
2100
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Lipschitz.lean
2101
+ theorems: '*'
2102
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Basic.lean
2103
+ theorems: '*'
2104
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/InitTail.lean
2105
+ theorems: '*'
2106
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Sqrt.lean
2107
+ theorems: '*'
2108
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Sigma.lean
2109
+ theorems: '*'
2110
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/DoubleCoset.lean
2111
+ theorems: '*'
2112
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/LHopital.lean
2113
+ theorems: '*'
2114
+ - path: .lake/packages/mathlib/Mathlib/Probability/Independence/Kernel.lean
2115
+ theorems: '*'
2116
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PowerSeries/WellKnown.lean
2117
+ theorems: '*'
2118
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Basic.lean
2119
+ theorems: '*'
2120
+ - path: .lake/packages/mathlib/Mathlib/Topology/Gluing.lean
2121
+ theorems: '*'
2122
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Additive/PluenneckeRuzsa.lean
2123
+ theorems: '*'
2124
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/SumFourSquares.lean
2125
+ theorems: '*'
2126
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/HNNExtension.lean
2127
+ theorems: '*'
2128
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Minpoly/MinpolyDiv.lean
2129
+ theorems: '*'
2130
+ - path: .lake/packages/mathlib/Mathlib/Data/List/BigOperators/Basic.lean
2131
+ theorems: '*'
2132
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/MonotoneConvergence.lean
2133
+ theorems: '*'
2134
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Cofinality.lean
2135
+ theorems: '*'
2136
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Basic.lean
2137
+ theorems: '*'
2138
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Cardinality.lean
2139
+ theorems: '*'
2140
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/ENNReal.lean
2141
+ theorems: '*'
2142
+ - path: .lake/packages/mathlib/Mathlib/Tactic/Ring/Basic.lean
2143
+ theorems: '*'
2144
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector.lean
2145
+ theorems: '*'
2146
+ - path: .lake/packages/mathlib/Mathlib/Order/Monotone/Basic.lean
2147
+ theorems: '*'
2148
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorial/Basic.lean
2149
+ theorems: '*'
2150
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/AbsMax.lean
2151
+ theorems: '*'
2152
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/Projections.lean
2153
+ theorems: '*'
2154
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Order/LiminfLimsup.lean
2155
+ theorems: '*'
2156
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Nullstellensatz.lean
2157
+ theorems: '*'
2158
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/RadonNikodym.lean
2159
+ theorems: '*'
2160
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/CompactConvergence.lean
2161
+ theorems: '*'
2162
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subgroup/Basic.lean
2163
+ theorems: '*'
2164
+ - path: .lake/packages/mathlib/Mathlib/Data/MvPolynomial/Degrees.lean
2165
+ theorems: '*'
2166
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Finite/Trace.lean
2167
+ theorems: '*'
2168
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorization/Root.lean
2169
+ theorems: '*'
2170
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/Prod.lean
2171
+ theorems: '*'
2172
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Covering/Besicovitch.lean
2173
+ theorems: '*'
2174
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pairwise/Lattice.lean
2175
+ theorems: '*'
2176
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Nilpotent.lean
2177
+ theorems: '*'
2178
+ - path: .lake/packages/mathlib/Mathlib/Probability/Independence/Basic.lean
2179
+ theorems: '*'
2180
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Bounded.lean
2181
+ theorems: '*'
2182
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Exact.lean
2183
+ theorems: '*'
2184
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/AddCircle.lean
2185
+ theorems: '*'
2186
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Basic.lean
2187
+ theorems: '*'
2188
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Over.lean
2189
+ theorems: '*'
2190
+ - path: .lake/packages/mathlib/Mathlib/Logic/Embedding/Basic.lean
2191
+ theorems: '*'
2192
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Flat/Basic.lean
2193
+ theorems: '*'
2194
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Liouville/LiouvilleWith.lean
2195
+ theorems: '*'
2196
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/LineDeriv/Basic.lean
2197
+ theorems: '*'
2198
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousFunction/Weierstrass.lean
2199
+ theorems: '*'
2200
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Unoriented/RightAngle.lean
2201
+ theorems: '*'
2202
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Defs.lean
2203
+ theorems: '*'
2204
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Univariate/M.lean
2205
+ theorems: '*'
2206
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Composition.lean
2207
+ theorems: '*'
2208
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/BinaryProducts.lean
2209
+ theorems: '*'
2210
+ - path: .lake/packages/mathlib/Mathlib/Analysis/LocallyConvex/AbsConvex.lean
2211
+ theorems: '*'
2212
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/UniformEmbedding.lean
2213
+ theorems: '*'
2214
+ - path: .lake/packages/std/Std/Data/List/Perm.lean
2215
+ theorems: '*'
2216
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/LocalizedModule.lean
2217
+ theorems: '*'
2218
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/FourFunctions.lean
2219
+ theorems: '*'
2220
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/PurelyInseparable.lean
2221
+ theorems: '*'
2222
+ - path: .lake/packages/mathlib/Mathlib/Dynamics/Ergodic/MeasurePreserving.lean
2223
+ theorems: '*'
2224
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Stirling.lean
2225
+ theorems: '*'
2226
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/Units/Basic.lean
2227
+ theorems: '*'
2228
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Subring/Basic.lean
2229
+ theorems: '*'
2230
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Basic.lean
2231
+ theorems: '*'
2232
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Pointwise.lean
2233
+ theorems: '*'
2234
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/NoncommProd.lean
2235
+ theorems: '*'
2236
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/SemiNormedGroupCat/Kernels.lean
2237
+ theorems: '*'
2238
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Orthogonal.lean
2239
+ theorems: '*'
2240
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Composition.lean
2241
+ theorems: '*'
2242
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Defs.lean
2243
+ theorems: '*'
2244
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecificLimits/Normed.lean
2245
+ theorems: '*'
2246
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/PrimeSpectrum/Basic.lean
2247
+ theorems: '*'
2248
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/JacobsonIdeal.lean
2249
+ theorems: '*'
2250
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Lattice.lean
2251
+ theorems: '*'
2252
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/DirectLimit.lean
2253
+ theorems: '*'
2254
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Bicategory/Basic.lean
2255
+ theorems: '*'
2256
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Subobject/Limits.lean
2257
+ theorems: '*'
2258
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Pi.lean
2259
+ theorems: '*'
2260
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/QuasiIso.lean
2261
+ theorems: '*'
2262
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Order/Lemmas.lean
2263
+ theorems: '*'
2264
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Continuity.lean
2265
+ theorems: '*'
2266
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Portmanteau.lean
2267
+ theorems: '*'
2268
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/EllipticCurve/Group.lean
2269
+ theorems: '*'
2270
+ - path: .lake/packages/mathlib/Mathlib/Data/Sign.lean
2271
+ theorems: '*'
2272
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/SpecificGroups/Cyclic.lean
2273
+ theorems: '*'
2274
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Function.lean
2275
+ theorems: '*'
2276
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/MeasureSpaceDef.lean
2277
+ theorems: '*'
2278
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/EvenEquiv.lean
2279
+ theorems: '*'
2280
+ - path: .lake/packages/mathlib/Mathlib/Data/List/NodupEquivFin.lean
2281
+ theorems: '*'
2282
+ - path: .lake/packages/mathlib/Mathlib/Data/PNat/Interval.lean
2283
+ theorems: '*'
2284
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Sites/IsSheafFor.lean
2285
+ theorems: '*'
2286
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Basic.lean
2287
+ theorems: '*'
2288
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/PiL2.lean
2289
+ theorems: '*'
2290
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Submonoid/Membership.lean
2291
+ theorems: '*'
2292
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Dickson.lean
2293
+ theorems: '*'
2294
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Spec.lean
2295
+ theorems: '*'
2296
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntegrableOn.lean
2297
+ theorems: '*'
2298
+ - path: .lake/packages/std/Std/Data/Int/DivMod.lean
2299
+ theorems: '*'
2300
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousOn.lean
2301
+ theorems: '*'
2302
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/LapMatrix.lean
2303
+ theorems: '*'
2304
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Jensen.lean
2305
+ theorems: '*'
2306
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Type.lean
2307
+ theorems: '*'
2308
+ - path: .lake/packages/mathlib/Mathlib/Topology/Sober.lean
2309
+ theorems: '*'
2310
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Charpoly/Coeff.lean
2311
+ theorems: '*'
2312
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Rayleigh.lean
2313
+ theorems: '*'
2314
+ - path: .lake/packages/std/Std/Data/List/Count.lean
2315
+ theorems: '*'
2316
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/TwoDim.lean
2317
+ theorems: '*'
2318
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ContinuedFractions/Computation/Translations.lean
2319
+ theorems: '*'
2320
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/IntegralCompProd.lean
2321
+ theorems: '*'
2322
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Stieltjes.lean
2323
+ theorems: '*'
2324
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Padics/RingHoms.lean
2325
+ theorems: '*'
2326
+ - path: .lake/packages/std/Std/Data/Int/Order.lean
2327
+ theorems: '*'
2328
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Forall2.lean
2329
+ theorems: '*'
2330
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Additive.lean
2331
+ theorems: '*'
2332
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Cyclotomic/Eval.lean
2333
+ theorems: '*'
2334
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Fintype.lean
2335
+ theorems: '*'
2336
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monovary.lean
2337
+ theorems: '*'
2338
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Field/Basic.lean
2339
+ theorems: '*'
2340
+ - path: .lake/packages/mathlib/Mathlib/Data/Seq/Seq.lean
2341
+ theorems: '*'
2342
+ - path: .lake/packages/mathlib/Mathlib/Algebra/DirectLimit.lean
2343
+ theorems: '*'
2344
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Basic.lean
2345
+ theorems: '*'
2346
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Field/Basic.lean
2347
+ theorems: '*'
2348
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Tower.lean
2349
+ theorems: '*'
2350
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Schnirelmann.lean
2351
+ theorems: '*'
2352
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/ConcreteCategory.lean
2353
+ theorems: '*'
2354
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Sites/Coherent/Equivalence.lean
2355
+ theorems: '*'
2356
+ - path: .lake/packages/mathlib/Mathlib/Topology/Baire/Lemmas.lean
2357
+ theorems: '*'
2358
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Asymptotics/SpecificAsymptotics.lean
2359
+ theorems: '*'
2360
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Rearrangement.lean
2361
+ theorems: '*'
2362
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Morphisms/Basic.lean
2363
+ theorems: '*'
2364
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Alternating/Basic.lean
2365
+ theorems: '*'
2366
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/PrimeFin.lean
2367
+ theorems: '*'
2368
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Images.lean
2369
+ theorems: '*'
2370
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/AbelLimit.lean
2371
+ theorems: '*'
2372
+ - path: .lake/packages/std/Std/Data/HashMap/WF.lean
2373
+ theorems: '*'
2374
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/Pow.lean
2375
+ theorems: '*'
2376
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/PosPart.lean
2377
+ theorems: '*'
2378
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Fold.lean
2379
+ theorems: '*'
2380
+ - path: .lake/packages/mathlib/Mathlib/Data/Seq/Computation.lean
2381
+ theorems: '*'
2382
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/InteriorBoundary.lean
2383
+ theorems: '*'
2384
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/Basic.lean
2385
+ theorems: '*'
2386
+ - path: .lake/packages/mathlib/Mathlib/Topology/Bases.lean
2387
+ theorems: '*'
2388
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Isometry.lean
2389
+ theorems: '*'
2390
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/MFDeriv/Basic.lean
2391
+ theorems: '*'
2392
+ - path: .lake/packages/mathlib/Mathlib/Computability/Halting.lean
2393
+ theorems: '*'
2394
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Minpoly/IsIntegrallyClosed.lean
2395
+ theorems: '*'
2396
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Splits.lean
2397
+ theorems: '*'
2398
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Calculus.lean
2399
+ theorems: '*'
2400
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Algebraic.lean
2401
+ theorems: '*'
2402
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Order/Field.lean
2403
+ theorems: '*'
2404
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Bind.lean
2405
+ theorems: '*'
2406
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LegendreSymbol/JacobiSymbol.lean
2407
+ theorems: '*'
2408
+ - path: .lake/packages/mathlib/Mathlib/Computability/AkraBazzi/GrowsPolynomially.lean
2409
+ theorems: '*'
2410
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/SeparableDegree.lean
2411
+ theorems: '*'
2412
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Multivariate/M.lean
2413
+ theorems: '*'
2414
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Lemmas.lean
2415
+ theorems: '*'
2416
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Basic.lean
2417
+ theorems: '*'
2418
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Subalgebra/Basic.lean
2419
+ theorems: '*'
2420
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Integral.lean
2421
+ theorems: '*'
2422
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Comp.lean
2423
+ theorems: '*'
2424
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Comma/Arrow.lean
2425
+ theorems: '*'
2426
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FractionalIdeal/Operations.lean
2427
+ theorems: '*'
2428
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/MemPartition.lean
2429
+ theorems: '*'
2430
+ - path: .lake/packages/std/Std/Data/Array/Lemmas.lean
2431
+ theorems: '*'
2432
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/GroupAction/Hom.lean
2433
+ theorems: '*'
2434
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/NNReal.lean
2435
+ theorems: '*'
2436
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/FreeAbelianGroup.lean
2437
+ theorems: '*'
2438
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/FunctorGamma.lean
2439
+ theorems: '*'
2440
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Torsion.lean
2441
+ theorems: '*'
2442
+ - path: .lake/packages/mathlib/Mathlib/Analysis/LocallyConvex/WithSeminorms.lean
2443
+ theorems: '*'
2444
+ - path: .lake/packages/std/Std/Data/Range/Lemmas.lean
2445
+ theorems: '*'
2446
+ - path: .lake/packages/mathlib/Mathlib/Data/PNat/Prime.lean
2447
+ theorems: '*'
2448
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Preadditive.lean
2449
+ theorems: '*'
2450
+ - path: .lake/packages/mathlib/Mathlib/Init/Logic.lean
2451
+ theorems: '*'
2452
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/BorelSpace/Basic.lean
2453
+ theorems: '*'
2454
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/LinearIndependent.lean
2455
+ theorems: '*'
2456
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Seminorm.lean
2457
+ theorems: '*'
2458
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomologicalBicomplex.lean
2459
+ theorems: '*'
2460
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/SetIntegral.lean
2461
+ theorems: '*'
2462
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gamma/BohrMollerup.lean
2463
+ theorems: '*'
2464
+ - path: .lake/packages/mathlib/Mathlib/Algebra/CubicDiscriminant.lean
2465
+ theorems: '*'
2466
+ - path: .lake/packages/mathlib/Mathlib/Data/List/BigOperators/Lemmas.lean
2467
+ theorems: '*'
2468
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Basic.lean
2469
+ theorems: '*'
2470
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/IsAdjoinRoot.lean
2471
+ theorems: '*'
2472
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Young/SemistandardTableau.lean
2473
+ theorems: '*'
2474
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Pi.lean
2475
+ theorems: '*'
2476
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/ProbabilityMeasure.lean
2477
+ theorems: '*'
2478
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/Ideal.lean
2479
+ theorems: '*'
2480
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Partition/Tagged.lean
2481
+ theorems: '*'
2482
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Zlattice.lean
2483
+ theorems: '*'
2484
+ - path: .lake/packages/mathlib/Mathlib/Logic/Nontrivial/Basic.lean
2485
+ theorems: '*'
2486
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Sub/Canonical.lean
2487
+ theorems: '*'
2488
+ - path: .lake/packages/mathlib/Mathlib/Order/GaloisConnection.lean
2489
+ theorems: '*'
2490
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Polynomial.lean
2491
+ theorems: '*'
2492
+ - path: .lake/packages/mathlib/Mathlib/Order/LocallyFinite.lean
2493
+ theorems: '*'
2494
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Basic.lean
2495
+ theorems: '*'
2496
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/UpperHalfPlane/Basic.lean
2497
+ theorems: '*'
2498
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/ContMDiff/Basic.lean
2499
+ theorems: '*'
2500
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/PosDef.lean
2501
+ theorems: '*'
2502
+ - path: .lake/packages/mathlib/Mathlib/Data/ENNReal/Real.lean
2503
+ theorems: '*'
2504
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Cyclotomic/Basic.lean
2505
+ theorems: '*'
2506
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Covering/VitaliFamily.lean
2507
+ theorems: '*'
2508
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Choose/Cast.lean
2509
+ theorems: '*'
2510
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Lattice.lean
2511
+ theorems: '*'
2512
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/VectorMeasure.lean
2513
+ theorems: '*'
2514
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Real.lean
2515
+ theorems: '*'
2516
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Etale.lean
2517
+ theorems: '*'
2518
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/SmoothNumbers.lean
2519
+ theorems: '*'
2520
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/TangentCone.lean
2521
+ theorems: '*'
2522
+ - path: .lake/packages/mathlib/Mathlib/Topology/Separation.lean
2523
+ theorems: '*'
2524
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/SelmerGroup.lean
2525
+ theorems: '*'
2526
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/TensorAlgebra/Basic.lean
2527
+ theorems: '*'
2528
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Pochhammer.lean
2529
+ theorems: '*'
2530
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/BumpFunction/Normed.lean
2531
+ theorems: '*'
2532
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/FilteredColimitCommutesFiniteLimit.lean
2533
+ theorems: '*'
2534
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Sups.lean
2535
+ theorems: '*'
2536
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/Kleitman.lean
2537
+ theorems: '*'
2538
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Basic.lean
2539
+ theorems: '*'
2540
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Arithmetic.lean
2541
+ theorems: '*'
2542
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/OperatorNorm/NormedSpace.lean
2543
+ theorems: '*'
2544
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Angle.lean
2545
+ theorems: '*'
2546
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/EulerSineProd.lean
2547
+ theorems: '*'
2548
+ - path: .lake/packages/mathlib/Mathlib/Probability/CondCount.lean
2549
+ theorems: '*'
2550
+ - path: .lake/packages/mathlib/Mathlib/Data/Setoid/Partition.lean
2551
+ theorems: '*'
2552
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Properties.lean
2553
+ theorems: '*'
2554
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/ChevalleyWarning.lean
2555
+ theorems: '*'
2556
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/L1Space.lean
2557
+ theorems: '*'
2558
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/CondDistrib.lean
2559
+ theorems: '*'
2560
+ - path: .lake/packages/mathlib/Mathlib/Topology/LocallyFinite.lean
2561
+ theorems: '*'
2562
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Regularity/Bound.lean
2563
+ theorems: '*'
2564
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Fin.lean
2565
+ theorems: '*'
2566
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Between.lean
2567
+ theorems: '*'
2568
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Group/Basic.lean
2569
+ theorems: '*'
2570
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Trace.lean
2571
+ theorems: '*'
2572
+ - path: .lake/packages/mathlib/Mathlib/Logic/Function/Conjugate.lean
2573
+ theorems: '*'
2574
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/IdealOperations.lean
2575
+ theorems: '*'
2576
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Pow.lean
2577
+ theorems: '*'
2578
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Complement.lean
2579
+ theorems: '*'
2580
+ - path: .lake/packages/mathlib/Mathlib/Data/PFun.lean
2581
+ theorems: '*'
2582
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Types.lean
2583
+ theorems: '*'
2584
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gamma/Deligne.lean
2585
+ theorems: '*'
2586
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Join.lean
2587
+ theorems: '*'
2588
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/NNReal.lean
2589
+ theorems: '*'
2590
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Infsep.lean
2591
+ theorems: '*'
2592
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Pell.lean
2593
+ theorems: '*'
2594
+ - path: .lake/packages/mathlib/Mathlib/Order/LiminfLimsup.lean
2595
+ theorems: '*'
2596
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/DirichletCharacter/Basic.lean
2597
+ theorems: '*'
2598
+ - path: .lake/packages/mathlib/Mathlib/Data/Ordmap/Ordset.lean
2599
+ theorems: '*'
2600
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Basic.lean
2601
+ theorems: '*'
2602
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/Basic.lean
2603
+ theorems: '*'
2604
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Functor/FullyFaithful.lean
2605
+ theorems: '*'
2606
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/QuadraticForm/Basic.lean
2607
+ theorems: '*'
2608
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Pullbacks.lean
2609
+ theorems: '*'
2610
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/Instances.lean
2611
+ theorems: '*'
2612
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Integrals.lean
2613
+ theorems: '*'
2614
+ - path: .lake/packages/mathlib/Mathlib/Order/PropInstances.lean
2615
+ theorems: '*'
2616
+ - path: .lake/packages/mathlib/Mathlib/Order/ModularLattice.lean
2617
+ theorems: '*'
2618
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Separable.lean
2619
+ theorems: '*'
2620
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Basis.lean
2621
+ theorems: '*'
2622
+ - path: .lake/packages/std/Std/Data/RBMap/WF.lean
2623
+ theorems: '*'
2624
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/Defs.lean
2625
+ theorems: '*'
2626
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Weights/Chain.lean
2627
+ theorems: '*'
2628
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Tuple/Basic.lean
2629
+ theorems: '*'
2630
+ - path: .lake/packages/mathlib/Mathlib/Probability/Distributions/Geometric.lean
2631
+ theorems: '*'
2632
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Thickening.lean
2633
+ theorems: '*'
2634
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/MeasurableSpace/Basic.lean
2635
+ theorems: '*'
2636
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Category/Basic.lean
2637
+ theorems: '*'
2638
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Affine.lean
2639
+ theorems: '*'
2640
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Infix.lean
2641
+ theorems: '*'
2642
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Asymptotics.lean
2643
+ theorems: '*'
2644
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/ExteriorAlgebra/Basic.lean
2645
+ theorems: '*'
2646
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/DFinsupp.lean
2647
+ theorems: '*'
2648
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Valuation/Basic.lean
2649
+ theorems: '*'
2650
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Parity.lean
2651
+ theorems: '*'
2652
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Quotient.lean
2653
+ theorems: '*'
2654
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Prod.lean
2655
+ theorems: '*'
2656
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/ToLin.lean
2657
+ theorems: '*'
2658
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/HomComplex.lean
2659
+ theorems: '*'
2660
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Semisimple.lean
2661
+ theorems: '*'
2662
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Submodule/LinearMap.lean
2663
+ theorems: '*'
2664
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Basis.lean
2665
+ theorems: '*'
2666
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Polish.lean
2667
+ theorems: '*'
2668
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Mul.lean
2669
+ theorems: '*'
2670
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Log/Basic.lean
2671
+ theorems: '*'
2672
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Basic.lean
2673
+ theorems: '*'
2674
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Analytic/Composition.lean
2675
+ theorems: '*'
2676
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Quotient.lean
2677
+ theorems: '*'
2678
+ - path: .lake/packages/mathlib/Mathlib/Data/Matroid/Basic.lean
2679
+ theorems: '*'
2680
+ - path: .lake/packages/mathlib/Mathlib/Topology/Connected/PathConnected.lean
2681
+ theorems: '*'
2682
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Submodule/Map.lean
2683
+ theorems: '*'
2684
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Side.lean
2685
+ theorems: '*'
2686
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Colex.lean
2687
+ theorems: '*'
2688
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Semantics.lean
2689
+ theorems: '*'
2690
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/UnionLift.lean
2691
+ theorems: '*'
2692
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Reverse.lean
2693
+ theorems: '*'
2694
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousFunction/Algebra.lean
2695
+ theorems: '*'
2696
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Field/Basic.lean
2697
+ theorems: '*'
2698
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Module.lean
2699
+ theorems: '*'
2700
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Identities.lean
2701
+ theorems: '*'
2702
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ContinuousMapDense.lean
2703
+ theorems: '*'
2704
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/EllipticCurve/Jacobian.lean
2705
+ theorems: '*'
2706
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/TensorProduct/Basic.lean
2707
+ theorems: '*'
2708
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSpace.lean
2709
+ theorems: '*'
2710
+ - path: .lake/packages/mathlib/Mathlib/Topology/Homotopy/Product.lean
2711
+ theorems: '*'
2712
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Multiset/Basic.lean
2713
+ theorems: '*'
2714
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Image.lean
2715
+ theorems: '*'
2716
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector/Basic.lean
2717
+ theorems: '*'
2718
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Units.lean
2719
+ theorems: '*'
2720
+ - path: .lake/packages/mathlib/Mathlib/Computability/TuringMachine.lean
2721
+ theorems: '*'
2722
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/HasLimits.lean
2723
+ theorems: '*'
2724
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/AEDisjoint.lean
2725
+ theorems: '*'
2726
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Pointwise.lean
2727
+ theorems: '*'
2728
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Bicategory/Adjunction.lean
2729
+ theorems: '*'
2730
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Smeval.lean
2731
+ theorems: '*'
2732
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Prod/Basic.lean
2733
+ theorems: '*'
2734
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Content.lean
2735
+ theorems: '*'
2736
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Card.lean
2737
+ theorems: '*'
2738
+ - path: .lake/packages/mathlib/Mathlib/Order/Monotone/Union.lean
2739
+ theorems: '*'
2740
+ - path: .lake/packages/mathlib/Mathlib/Order/Sublattice.lean
2741
+ theorems: '*'
2742
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Algebra/Field/CharP.lean
2743
+ theorems: '*'
2744
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gamma/Basic.lean
2745
+ theorems: '*'
2746
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/HausdorffDistance.lean
2747
+ theorems: '*'
2748
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ConditionalExpectation/AEMeasurable.lean
2749
+ theorems: '*'
2750
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ContinuedFractions/Translations.lean
2751
+ theorems: '*'
2752
+ - path: .lake/packages/mathlib/Mathlib/Data/DFinsupp/Basic.lean
2753
+ theorems: '*'
2754
+ - path: .lake/packages/std/Std/Data/AssocList.lean
2755
+ theorems: '*'
2756
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Exponential.lean
2757
+ theorems: '*'
2758
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/ContDiff/Defs.lean
2759
+ theorems: '*'
2760
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/SmoothManifoldWithCorners.lean
2761
+ theorems: '*'
2762
+ - path: .lake/packages/mathlib/Mathlib/Order/ConditionallyCompleteLattice/Basic.lean
2763
+ theorems: '*'
2764
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Basis.lean
2765
+ theorems: '*'
2766
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/ENat.lean
2767
+ theorems: '*'
2768
+ - path: .lake/packages/mathlib/Mathlib/Analysis/ODE/Gronwall.lean
2769
+ theorems: '*'
2770
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Zip.lean
2771
+ theorems: '*'
2772
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/RootSystem/Basic.lean
2773
+ theorems: '*'
2774
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/Lebesgue.lean
2775
+ theorems: '*'
2776
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/NonZeroDivisors.lean
2777
+ theorems: '*'
2778
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CrossProduct.lean
2779
+ theorems: '*'
2780
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Defs.lean
2781
+ theorems: '*'
2782
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dimension/Finite.lean
2783
+ theorems: '*'
2784
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/TotalComplexSymmetry.lean
2785
+ theorems: '*'
2786
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/RatFunc.lean
2787
+ theorems: '*'
2788
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Closed/Ideal.lean
2789
+ theorems: '*'
2790
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/IntegralCurve.lean
2791
+ theorems: '*'
2792
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/BilinearForm/Basic.lean
2793
+ theorems: '*'
2794
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/PseudoMetric.lean
2795
+ theorems: '*'
2796
+ - path: .lake/packages/mathlib/Mathlib/Topology/Connected/Basic.lean
2797
+ theorems: '*'
2798
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/ZeroMorphisms.lean
2799
+ theorems: '*'
2800
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Antilipschitz.lean
2801
+ theorems: '*'
2802
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Cyclotomic/Basic.lean
2803
+ theorems: '*'
2804
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/Abs.lean
2805
+ theorems: '*'
2806
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Norm.lean
2807
+ theorems: '*'
2808
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dimension/Free.lean
2809
+ theorems: '*'
2810
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/Lemmas.lean
2811
+ theorems: '*'
2812
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/CauSeq/BigOperators.lean
2813
+ theorems: '*'
2814
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/StructureSheaf.lean
2815
+ theorems: '*'
2816
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Tilted.lean
2817
+ theorems: '*'
2818
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntervalIntegral.lean
2819
+ theorems: '*'
2820
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Sub/Defs.lean
2821
+ theorems: '*'
2822
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/HomCompletion.lean
2823
+ theorems: '*'
2824
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/InfiniteSum/Basic.lean
2825
+ theorems: '*'
2826
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/MFDeriv/Atlas.lean
2827
+ theorems: '*'
2828
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Basic.lean
2829
+ theorems: '*'
2830
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Ordinal.lean
2831
+ theorems: '*'
2832
+ - path: .lake/packages/mathlib/Mathlib/Data/Part.lean
2833
+ theorems: '*'
2834
+ - path: .lake/packages/mathlib/Mathlib/Order/SymmDiff.lean
2835
+ theorems: '*'
2836
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Pointwise.lean
2837
+ theorems: '*'
2838
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Subset.lean
2839
+ theorems: '*'
2840
+ - path: .lake/packages/mathlib/Mathlib/Algebra/CharP/Basic.lean
2841
+ theorems: '*'
2842
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Implicit.lean
2843
+ theorems: '*'
2844
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/PartialEquiv.lean
2845
+ theorems: '*'
2846
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Intervals.lean
2847
+ theorems: '*'
2848
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Exponent.lean
2849
+ theorems: '*'
2850
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/GroupAction/Quotient.lean
2851
+ theorems: '*'
2852
+ - path: .lake/packages/mathlib/Mathlib/Data/Stream/Init.lean
2853
+ theorems: '*'
2854
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Finiteness.lean
2855
+ theorems: '*'
2856
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Degree/Definitions.lean
2857
+ theorems: '*'
2858
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/LeftHomology.lean
2859
+ theorems: '*'
2860
+ - path: .lake/packages/mathlib/Mathlib/Order/WithBot.lean
2861
+ theorems: '*'
2862
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/NonUnitalSubalgebra.lean
2863
+ theorems: '*'
2864
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Star.lean
2865
+ theorems: '*'
2866
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Module/Basic.lean
2867
+ theorems: '*'
2868
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/MappingCone.lean
2869
+ theorems: '*'
2870
+ - path: .lake/packages/mathlib/Mathlib/Data/Erased.lean
2871
+ theorems: '*'
2872
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/StronglyMeasurable/Basic.lean
2873
+ theorems: '*'
2874
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Connectivity.lean
2875
+ theorems: '*'
2876
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Maps.lean
2877
+ theorems: '*'
2878
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Hom/Monoid.lean
2879
+ theorems: '*'
2880
+ - path: .lake/packages/mathlib/Mathlib/Computability/Partrec.lean
2881
+ theorems: '*'
2882
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Index.lean
2883
+ theorems: '*'
2884
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/SimpleFuncDenseLp.lean
2885
+ theorems: '*'
2886
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/CardIntervalMod.lean
2887
+ theorems: '*'
2888
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Restrict.lean
2889
+ theorems: '*'