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,2421 @@
1
+ name: leandojo-eval
2
+ num_files: 709
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: 991
9
+ datasets:
10
+ - project: data/test/Mathlib
11
+ files:
12
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecificLimits/Normed.lean
13
+ theorems:
14
+ - tendsto_pow_const_mul_const_pow_of_abs_lt_one
15
+ - dist_partial_sum_le_of_le_geometric
16
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Cofinality.lean
17
+ theorems:
18
+ - Ordinal.cof_eq_one_iff_is_succ
19
+ - Ordinal.aleph0_le_cof
20
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/GroupAction/Quotient.lean
21
+ theorems:
22
+ - MulAction.Quotient.mk_smul_out'
23
+ - Subgroup.normalCore_eq_ker
24
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Abs.lean
25
+ theorems:
26
+ - Complex.lim_im
27
+ - Complex.abs_le_abs_re_add_abs_im
28
+ - path: .lake/packages/mathlib/Mathlib/Tactic/ComputeDegree.lean
29
+ theorems:
30
+ - Mathlib.Tactic.ComputeDegree.coeff_int_cast_ite
31
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/ChainOfDivisors.lean
32
+ theorems:
33
+ - DivisorChain.second_of_chain_is_irreducible
34
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/NonZeroDivisors.lean
35
+ theorems:
36
+ - mul_right_mem_nonZeroDivisors_eq_zero_iff
37
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/NonUnitalSubalgebra.lean
38
+ theorems:
39
+ - Set.smul_mem_centralizer
40
+ - path: .lake/packages/mathlib/Mathlib/Dynamics/PeriodicPts.lean
41
+ theorems:
42
+ - MulAction.pow_add_period_smul
43
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/ToIntervalMod.lean
44
+ theorems:
45
+ - toIcoMod_eq_iff
46
+ - toIcoMod_add_zsmul
47
+ - toIcoMod_apply_left
48
+ - toIcoMod_le_toIocMod
49
+ - iUnion_Ioc_int_cast
50
+ - toIcoMod_zsmul_add'
51
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Projection.lean
52
+ theorems:
53
+ - sub_orthogonalProjection_mem_orthogonal
54
+ - exists_norm_eq_iInf_of_complete_convex
55
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Sign.lean
56
+ theorems:
57
+ - Real.sign_zero
58
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Reflection.lean
59
+ theorems:
60
+ - Module.preReflection_preReflection
61
+ - path: .lake/packages/std/Std/Data/String/Lemmas.lean
62
+ theorems:
63
+ - Substring.ValidFor.all
64
+ - String.data_take
65
+ - String.Iterator.ValidFor.nextn
66
+ - path: .lake/packages/mathlib/Mathlib/Order/Iterate.lean
67
+ theorems:
68
+ - Monotone.seq_pos_lt_seq_of_lt_of_le
69
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Eval.lean
70
+ theorems:
71
+ - "Polynomial.eval\u2082_at_zero"
72
+ - "Polynomial.eval\u2082_mul'"
73
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Commute/Defs.lean
74
+ theorems:
75
+ - mul_pow_sub_one
76
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Cardinality.lean
77
+ theorems:
78
+ - mk_complex
79
+ - mk_univ_complex
80
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/AbelRuffini.lean
81
+ theorems:
82
+ - gal_isSolvable_tower
83
+ - path: .lake/packages/mathlib/Mathlib/Computability/TuringMachine.lean
84
+ theorems:
85
+ - Turing.TM1to1.tr_supports
86
+ - Turing.TM0.univ_supports
87
+ - Turing.BlankExtends.below_of_le
88
+ - path: .lake/packages/mathlib/Mathlib/Data/Ordmap/Ordset.lean
89
+ theorems:
90
+ - Ordnode.pos_size_of_mem
91
+ - Ordnode.node4L_size
92
+ - Ordnode.size_dual
93
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/FixedPoint.lean
94
+ theorems:
95
+ - Ordinal.apply_lt_nfpBFamily
96
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Identities.lean
97
+ theorems:
98
+ - WittVector.coeff_p_pow
99
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/EReal.lean
100
+ theorems:
101
+ - EReal.add_lt_add_left_coe
102
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Basic.lean
103
+ theorems:
104
+ - List.map_bind
105
+ - "List.map\u2082Left_eq_map\u2082Left'"
106
+ - List.nthLe_cons
107
+ - Function.LeftInverse.list_map
108
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Algebraic.lean
109
+ theorems:
110
+ - IsAlgebraic.algHom
111
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Defs.lean
112
+ theorems:
113
+ - inv_mul_cancel_comm_assoc
114
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/HahnSeries/Multiplication.lean
115
+ theorems:
116
+ - HahnSeries.single_mul_coeff_add
117
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/EulerSineProd.lean
118
+ theorems:
119
+ - EulerSine.tendsto_integral_cos_pow_mul_div
120
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Group/Basic.lean
121
+ theorems:
122
+ - nhds_translation_mul_inv
123
+ - Subgroup.coe_topologicalClosure_bot
124
+ - path: .lake/packages/mathlib/Mathlib/RepresentationTheory/GroupCohomology/LowDegree.lean
125
+ theorems:
126
+ - groupCohomology.map_one_snd_of_isTwoCocycle
127
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Basic.lean
128
+ theorems:
129
+ - MonoidHomClass.lipschitz_of_bound
130
+ - NormedCommGroup.uniformity_basis_dist
131
+ - path: .lake/packages/mathlib/Mathlib/Order/GaloisConnection.lean
132
+ theorems:
133
+ - OrderIso.bddBelow_preimage
134
+ - path: .lake/packages/mathlib/Mathlib/Data/Num/Lemmas.lean
135
+ theorems:
136
+ - Num.add_toZNum
137
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/SimpleFuncDense.lean
138
+ theorems:
139
+ - MeasureTheory.SimpleFunc.nearestPtInd_succ
140
+ - MeasureTheory.SimpleFunc.tendsto_nearestPt
141
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/IntegralCompProd.lean
142
+ theorems:
143
+ - ProbabilityTheory.set_integral_compProd_univ_left
144
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/RatFunc.lean
145
+ theorems:
146
+ - RatFunc.ofFractionRing_mk'
147
+ - RatFunc.num_eq_zero_iff
148
+ - path: .lake/packages/mathlib/Mathlib/Algebra/AddConstMap/Basic.lean
149
+ theorems:
150
+ - AddConstMapClass.map_add_zsmul
151
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/AEDisjoint.lean
152
+ theorems:
153
+ - Disjoint.aedisjoint
154
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/TensorAlgebra/Basic.lean
155
+ theorems:
156
+ - "TensorAlgebra.ringQuot_mkAlgHom_freeAlgebra_\u03B9_eq_\u03B9"
157
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Between.lean
158
+ theorems:
159
+ - Wbtw.left_ne_right_of_ne_right
160
+ - Wbtw.left_ne_right_of_ne_left
161
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Sups.lean
162
+ theorems:
163
+ - Finset.sized_compls
164
+ - Finset.powerset_infs_powerset_self
165
+ - Finset.forall_disjSups_iff
166
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/PID.lean
167
+ theorems:
168
+ - Submodule.isSemisimple_torsionBy_of_irreducible
169
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Dickson.lean
170
+ theorems:
171
+ - Polynomial.dickson_add_two
172
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSpace.lean
173
+ theorems:
174
+ - ContinuousLinearMap.add_compLpL
175
+ - MeasureTheory.indicatorConstLp_empty
176
+ - MeasureTheory.dist_indicatorConstLp_eq_norm
177
+ - "MeasureTheory.Lp.cauchy_complete_\u2112p"
178
+ - ContinuousLinearMap.smul_compLp
179
+ - path: .lake/packages/std/Std/Data/List/Perm.lean
180
+ theorems:
181
+ - List.nil_subperm
182
+ - List.Perm.pmap
183
+ - List.Perm.symm
184
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/NNReal.lean
185
+ theorems:
186
+ - NNReal.iSup_div
187
+ - Real.toNNReal_sum_of_nonneg
188
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/UniformEmbedding.lean
189
+ theorems:
190
+ - uniformEmbedding_iff'
191
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Charpoly/Basic.lean
192
+ theorems:
193
+ - Matrix.charmatrix_apply_ne
194
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Multivariate/M.lean
195
+ theorems:
196
+ - MvPFunctor.M.dest'_eq_dest'
197
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/ContDiff/Defs.lean
198
+ theorems:
199
+ - hasFTaylorSeriesUpToOn_top_iff
200
+ - HasFTaylorSeriesUpTo.continuous
201
+ - ftaylorSeriesWithin_univ
202
+ - ContDiffWithinAt.continuousWithinAt
203
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Adjoin.lean
204
+ theorems:
205
+ - IntermediateField.adjoin_eq_top_of_adjoin_eq_top
206
+ - IntermediateField.exists_finset_of_mem_supr''
207
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Stirling.lean
208
+ theorems:
209
+ - Stirling.log_stirlingSeq_bounded_by_constant
210
+ - Stirling.stirlingSeq_zero
211
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Exact.lean
212
+ theorems:
213
+ - CategoryTheory.kernel_comp_cokernel
214
+ - CategoryTheory.exact_zero_left_of_mono
215
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Charpoly/Coeff.lean
216
+ theorems:
217
+ - Matrix.coeff_det_one_add_X_smul_one
218
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/BorelSpace/Basic.lean
219
+ theorems:
220
+ - Real.borel_eq_generateFrom_Ioi_rat
221
+ - borel_eq_generateFrom_Ico
222
+ - borel_eq_generateFrom_Ioc
223
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Bases.lean
224
+ theorems:
225
+ - Filter.generate_eq_generate_inter
226
+ - Filter.IsBasis.mem_filter_iff
227
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Hyperreal.lean
228
+ theorems:
229
+ - Hyperreal.infinitesimal_pos_iff_infinitePos_inv
230
+ - path: .lake/packages/mathlib/Mathlib/Probability/CondCount.lean
231
+ theorems:
232
+ - ProbabilityTheory.condCount_singleton
233
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Basic.lean
234
+ theorems:
235
+ - norm_add_sq_eq_norm_sq_add_norm_sq_of_inner_eq_zero
236
+ - inner_eq_norm_mul_iff_div
237
+ - InnerProductSpace.Core.inner_self_ofReal_re
238
+ - OrthogonalFamily.summable_iff_norm_sq_summable
239
+ - DFinsupp.inner_sum
240
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Calculus.lean
241
+ theorems:
242
+ - HasDerivWithinAt.norm_sq
243
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Basic.lean
244
+ theorems:
245
+ - Finset.mulIndicator_biUnion
246
+ - Multiset.add_eq_union_left_of_le
247
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/AbelLimit.lean
248
+ theorems:
249
+ - Real.tendsto_tsum_powerSeries_nhdsWithin_lt
250
+ - Complex.tendsto_tsum_powerSeries_nhdsWithin_stolzSet
251
+ - path: .lake/packages/mathlib/Mathlib/Order/JordanHolder.lean
252
+ theorems:
253
+ - CompositionSeries.Equivalent.symm
254
+ - CompositionSeries.mem_eraseTop
255
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Affine.lean
256
+ theorems:
257
+ - Collinear.two_zsmul_oangle_eq_right
258
+ - "EuclideanGeometry.oangle_swap\u2081\u2082_sign"
259
+ - path: .lake/packages/mathlib/Mathlib/Data/MvPolynomial/Degrees.lean
260
+ theorems:
261
+ - MvPolynomial.degreeOf_lt_iff
262
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/Interval.lean
263
+ theorems:
264
+ - Set.image_sub_const_Ici
265
+ - Set.image_neg_Ioo
266
+ - Set.image_mul_right_Icc
267
+ - path: .lake/packages/mathlib/Mathlib/Algebra/IsPrimePow.lean
268
+ theorems:
269
+ - isPrimePow_nat_iff
270
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorial/Cast.lean
271
+ theorems:
272
+ - Nat.cast_descFactorial
273
+ - path: .lake/packages/mathlib/Mathlib/Data/List/BigOperators/Lemmas.lean
274
+ theorems:
275
+ - unop_map_list_prod
276
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/VonMangoldt.lean
277
+ theorems:
278
+ - ArithmeticFunction.vonMangoldt_ne_zero_iff
279
+ - path: .lake/packages/mathlib/Mathlib/Topology/Sober.lean
280
+ theorems:
281
+ - genericPoint_specializes
282
+ - path: .lake/packages/std/Std/Data/Rat/Lemmas.lean
283
+ theorems:
284
+ - Rat.neg_divInt
285
+ - Rat.neg_mkRat
286
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Pochhammer.lean
287
+ theorems:
288
+ - descPochhammer_zero_eval_zero
289
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousOn.lean
290
+ theorems:
291
+ - continuousWithinAt_update_same
292
+ - nhdsWithin_pi_univ_eq
293
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Portmanteau.lean
294
+ theorems:
295
+ - MeasureTheory.le_liminf_measure_open_of_forall_tendsto_measure
296
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Unoriented/Affine.lean
297
+ theorems:
298
+ - EuclideanGeometry.angle_eq_zero_of_angle_eq_pi_left
299
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Basis.lean
300
+ theorems:
301
+ - Matrix.StdBasisMatrix.mul_right_apply_of_ne
302
+ - Matrix.mem_range_scalar_iff_commute_stdBasisMatrix
303
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/SesquilinearForm.lean
304
+ theorems:
305
+ - LinearMap.IsRefl.domRestrict
306
+ - LinearMap.IsAdjointPair.sub
307
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Antilipschitz.lean
308
+ theorems:
309
+ - antilipschitzWith_iff_le_mul_nndist
310
+ - AntilipschitzWith.comp
311
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Asymptotics/SpecificAsymptotics.lean
312
+ theorems:
313
+ - pow_div_pow_eventuallyEq_atTop
314
+ - path: .lake/packages/mathlib/Mathlib/Algebra/FreeAlgebra.lean
315
+ theorems:
316
+ - FreeAlgebra.induction
317
+ - path: .lake/packages/mathlib/Mathlib/Probability/Martingale/Upcrossing.lean
318
+ theorems:
319
+ - MeasureTheory.upcrossingsBefore_bot
320
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/UnionLift.lean
321
+ theorems:
322
+ - Set.iUnionLift_const
323
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Divisors.lean
324
+ theorems:
325
+ - Nat.properDivisors_eq_empty
326
+ - Nat.sup_divisors_id
327
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Substructures.lean
328
+ theorems:
329
+ - FirstOrder.Language.Substructure.range_subtype
330
+ - FirstOrder.Language.Substructure.closure_withConstants_eq
331
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/UniqueFactorizationDomain.lean
332
+ theorems:
333
+ - Associates.le_of_count_ne_zero
334
+ - UniqueFactorizationMonoid.prime_of_normalized_factor
335
+ - path: .lake/packages/mathlib/Mathlib/Probability/Distributions/Geometric.lean
336
+ theorems:
337
+ - ProbabilityTheory.geometricPMFRealSum
338
+ - path: .lake/packages/mathlib/Mathlib/Analysis/LocallyConvex/WithSeminorms.lean
339
+ theorems:
340
+ - SeminormFamily.basisSets_add
341
+ - WithSeminorms.hasBasis
342
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/SemiNormedGroupCat/Kernels.lean
343
+ theorems:
344
+ - SemiNormedGroupCat.ExplicitCoker.map_desc
345
+ - SemiNormedGroupCat.explicitCokernelDesc_normNoninc
346
+ - SemiNormedGroupCat.explicitCokernelIso_hom_desc
347
+ - "SemiNormedGroupCat.explicitCokernel\u03C0_apply_dom_eq_zero"
348
+ - path: .lake/packages/mathlib/Mathlib/Data/Seq/Computation.lean
349
+ theorems:
350
+ - Computation.LiftRel.equiv
351
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Covering/Besicovitch.lean
352
+ theorems:
353
+ - Besicovitch.ae_tendsto_measure_inter_div
354
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Basic.lean
355
+ theorems:
356
+ - Real.cos_pi
357
+ - Real.cos_pi_div_four
358
+ - Real.sin_pi_div_two_sub
359
+ - Real.sin_eq_sqrt_one_sub_cos_sq
360
+ - path: .lake/packages/mathlib/Mathlib/Computability/AkraBazzi/AkraBazzi.lean
361
+ theorems:
362
+ - AkraBazziRecurrence.eventually_r_lt_n
363
+ - AkraBazziRecurrence.base_nonempty
364
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Thickening.lean
365
+ theorems:
366
+ - Metric.cthickening_eq_biUnion_closedBall
367
+ - Metric.mem_thickening_iff
368
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Gradient/Basic.lean
369
+ theorems:
370
+ - HasGradientWithinAt.congr
371
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/PiL2.lean
372
+ theorems:
373
+ - OrthonormalBasis.orthogonalProjection_eq_sum
374
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/NNReal.lean
375
+ theorems:
376
+ - NNReal.tendsto_atTop_zero_of_summable
377
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Basic.lean
378
+ theorems:
379
+ - Finsupp.embDomain_eq_mapDomain
380
+ - Finsupp.comapDomain_zero
381
+ - path: .lake/packages/mathlib/Mathlib/Logic/Relation.lean
382
+ theorems:
383
+ - Relation.comp_assoc
384
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/AtTopBot.lean
385
+ theorems:
386
+ - Filter.HasAntitoneBasis.subbasis_with_rel
387
+ - Filter.tendsto_const_mul_atBot_of_neg
388
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Compact.lean
389
+ theorems:
390
+ - nhdsSet_diagonal_eq_uniformity
391
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Semisimple.lean
392
+ theorems:
393
+ - LieAlgebra.subsingleton_of_semisimple_lie_abelian
394
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Segment.lean
395
+ theorems:
396
+ - mem_segment_translate
397
+ - mem_segment_sub_add
398
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/Defs.lean
399
+ theorems:
400
+ - inv_mul_lt_one_iff
401
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Partition/Tagged.lean
402
+ theorems:
403
+ - BoxIntegral.TaggedPrepartition.IsSubordinate.disjUnion
404
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Submonoid/Membership.lean
405
+ theorems:
406
+ - MulMemClass.mul_mem_add_closure
407
+ - Submonoid.mem_closure_singleton
408
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Subobject/Limits.lean
409
+ theorems:
410
+ - CategoryTheory.Limits.factorThruKernelSubobject_comp_kernelSubobjectIso
411
+ - CategoryTheory.Limits.le_kernelSubobject
412
+ - path: .lake/packages/mathlib/Mathlib/Topology/Gluing.lean
413
+ theorems:
414
+ - TopCat.GlueData.rel_equiv
415
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/Generator.lean
416
+ theorems:
417
+ - CategoryTheory.Abelian.has_injective_coseparator
418
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Inv.lean
419
+ theorems:
420
+ - HasDerivWithinAt.div
421
+ - path: .lake/packages/mathlib/Mathlib/Topology/CompactOpen.lean
422
+ theorems:
423
+ - ContinuousMap.compactOpen_eq_iInf_induced
424
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/HomComplexShift.lean
425
+ theorems:
426
+ - CochainComplex.HomComplex.Cochain.shift_zero
427
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/ProbabilityMeasure.lean
428
+ theorems:
429
+ - MeasureTheory.ProbabilityMeasure.apply_mono
430
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/DFinsupp.lean
431
+ theorems:
432
+ - Submodule.mem_iSup_finset_iff_exists_sum
433
+ - Submodule.biSup_eq_range_dfinsupp_lsum
434
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Restrict.lean
435
+ theorems:
436
+ - mem_map_indicator_ae_iff_mem_map_restrict_ae_of_zero_mem
437
+ - MeasureTheory.Measure.restrict_eq_self
438
+ - MeasureTheory.NullMeasurable.measure_preimage_eq_measure_restrict_preimage_of_ae_compl_eq_const
439
+ - path: .lake/packages/mathlib/Mathlib/Data/Sym/Basic.lean
440
+ theorems:
441
+ - Sym.cons_equiv_eq_equiv_cons
442
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Function.lean
443
+ theorems:
444
+ - StrictConcaveOn.translate_left
445
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Basic.lean
446
+ theorems:
447
+ - Finset.singleton_inter_of_mem
448
+ - Finset.biUnion_singleton_eq_self
449
+ - Finset.left_eq_union
450
+ - Finset.inter_erase
451
+ - Finset.insert_union_comm
452
+ - Finset.sdiff_eq_self
453
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntegrableOn.lean
454
+ theorems:
455
+ - ContinuousOn.aemeasurable
456
+ - MeasurableEmbedding.integrableAtFilter_map_iff
457
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Category.lean
458
+ theorems:
459
+ - CategoryTheory.MonoidalCategory.associator_naturality_left
460
+ - CategoryTheory.MonoidalCategory.whiskerLeft_eqToHom
461
+ - CategoryTheory.MonoidalCategory.id_whiskerLeft
462
+ - CategoryTheory.MonoidalCategory.whiskerRight_tensor_symm
463
+ - CategoryTheory.MonoidalCategory.triangle_assoc_comp_left_inv
464
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/LevyProkhorovMetric.lean
465
+ theorems:
466
+ - MeasureTheory.levyProkhorovDist_triangle
467
+ - path: .lake/packages/mathlib/Mathlib/Data/DFinsupp/Basic.lean
468
+ theorems:
469
+ - DFinsupp.erase_def
470
+ - DFinsupp.add_closure_iUnion_range_single
471
+ - DFinsupp.support_neg
472
+ - DFinsupp.filter_def
473
+ - DFinsupp.single_eq_of_ne
474
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Jensen.lean
475
+ theorems:
476
+ - ConcaveOn.min_le_of_mem_Icc
477
+ - path: .lake/packages/mathlib/Mathlib/Topology/EMetricSpace/Basic.lean
478
+ theorems:
479
+ - edist_congr_right
480
+ - EMetric.mk_uniformity_basis_le
481
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntegralEqImproper.lean
482
+ theorems:
483
+ - MeasureTheory.integral_Iic_of_hasDerivAt_of_tendsto
484
+ - MeasureTheory.integrableOn_Iic_of_intervalIntegral_norm_bounded
485
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monovary.lean
486
+ theorems:
487
+ - "antivaryOn_inv\u2080"
488
+ - antivary_iff_forall_mul_nonpos
489
+ - antivaryOn_iff_forall_mul_nonpos
490
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/Kleitman.lean
491
+ theorems:
492
+ - Finset.card_biUnion_le_of_intersecting
493
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Nodup.lean
494
+ theorems:
495
+ - List.Nodup.pairwise_coe
496
+ - List.inj_on_of_nodup_map
497
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/OperatorNorm/NormedSpace.lean
498
+ theorems:
499
+ - LinearMap.bound_of_shell
500
+ - path: .lake/packages/mathlib/Mathlib/Data/Sym/Sym2.lean
501
+ theorems:
502
+ - Sym2.diag_injective
503
+ - Sym2.mem_map
504
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousFunction/NonUnitalFunctionalCalculus.lean
505
+ theorems:
506
+ - "cfc\u2099Hom_comp"
507
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PowerSeries/WellKnown.lean
508
+ theorems:
509
+ - PowerSeries.map_exp
510
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Nilpotent.lean
511
+ theorems:
512
+ - LieModule.isNilpotent_iff_exists_ucs_eq_top
513
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/IdealOperations.lean
514
+ theorems:
515
+ - LieSubmodule.lie_le_right
516
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Quotient.lean
517
+ theorems:
518
+ - CategoryTheory.Quotient.compClosure_eq_self
519
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/LinearMap/Basic.lean
520
+ theorems:
521
+ - LinearMap.map_smul_inv
522
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/l2Space.lean
523
+ theorems:
524
+ - lp.inner_single_right
525
+ - lp.inner_single_left
526
+ - Orthonormal.isHilbertSum
527
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/PiAntidiagonal.lean
528
+ theorems:
529
+ - Finset.mem_piAntidiagonal
530
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Gluing.lean
531
+ theorems:
532
+ - AlgebraicGeometry.Scheme.OpenCover.hom_ext
533
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/EvenEquiv.lean
534
+ theorems:
535
+ - CliffordAlgebra.ofEven_comp_toEven
536
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Basic.lean
537
+ theorems:
538
+ - Fin.nontrivial_iff_two_le
539
+ - Fin.liftFun_iff_succ
540
+ - Fin.sub_one_lt_iff
541
+ - Fin.coe_orderIso_apply
542
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/ENat.lean
543
+ theorems:
544
+ - Cardinal.nat_lt_ofENat
545
+ - Cardinal.nat_eq_ofENat
546
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Module/Basic.lean
547
+ theorems:
548
+ - Submodule.ClosedComplemented.exists_submodule_equiv_prod
549
+ - ContinuousLinearMap.map_neg
550
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/SimpleFuncDenseLp.lean
551
+ theorems:
552
+ - MeasureTheory.SimpleFunc.tendsto_approxOn_range_Lp
553
+ - "MeasureTheory.SimpleFunc.measure_lt_top_of_mem\u2112p_indicator"
554
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Reverse.lean
555
+ theorems:
556
+ - Polynomial.coeff_one_reverse
557
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/GCD.lean
558
+ theorems:
559
+ - Int.lcm_zero_right
560
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Topology.lean
561
+ theorems:
562
+ - Convex.openSegment_interior_closure_subset_interior
563
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Etale.lean
564
+ theorems:
565
+ - Algebra.FormallyEtale.iff_unramified_and_smooth
566
+ - path: .lake/packages/mathlib/Mathlib/Algebra/DirectLimit.lean
567
+ theorems:
568
+ - AddCommGroup.DirectLimit.congr_symm_apply_of
569
+ - path: .lake/packages/mathlib/Mathlib/Topology/Constructions.lean
570
+ theorems:
571
+ - isOpen_sigma_fst_preimage
572
+ - isClosedMap_sigmaMk
573
+ - path: .lake/packages/mathlib/Mathlib/Order/LiminfLimsup.lean
574
+ theorems:
575
+ - Filter.blimsup_eq_limsup_subtype
576
+ - Filter.bliminf_false
577
+ - Filter.frequently_lt_of_lt_limsup
578
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Exponent.lean
579
+ theorems:
580
+ - Monoid.exponent_eq_iSup_orderOf'
581
+ - path: .lake/packages/mathlib/Mathlib/Data/ZMod/Basic.lean
582
+ theorems:
583
+ - ZMod.int_cast_mod
584
+ - ZMod.val_mul_of_lt
585
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Pointwise.lean
586
+ theorems:
587
+ - LinearOrderedField.smul_Iic
588
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/Basic.lean
589
+ theorems:
590
+ - Complex.normSq_eq_norm_sq
591
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Totient.lean
592
+ theorems:
593
+ - Nat.totient_prime
594
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Game/PGame.lean
595
+ theorems:
596
+ - SetTheory.PGame.leftMoves_add_cases
597
+ - SetTheory.PGame.le_neg_iff
598
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/AEEqFun.lean
599
+ theorems:
600
+ - "MeasureTheory.AEEqFun.coeFn_comp\u2082"
601
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GCDMonoid/Multiset.lean
602
+ theorems:
603
+ - Multiset.gcd_eq_zero_iff
604
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoundedVariation.lean
605
+ theorems:
606
+ - LocallyBoundedVariationOn.ae_differentiableWithinAt_of_mem_real
607
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Finsupp.lean
608
+ theorems:
609
+ - Finsupp.lcongr_single
610
+ - Finsupp.total_comp_lmapDomain
611
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Log/Basic.lean
612
+ theorems:
613
+ - Real.continuousAt_log_iff
614
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousFunction/Weierstrass.lean
615
+ theorems:
616
+ - continuousMap_mem_polynomialFunctions_closure
617
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Orthogonal.lean
618
+ theorems:
619
+ - Submodule.sub_mem_orthogonal_of_inner_left
620
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Basic.lean
621
+ theorems:
622
+ - Equiv.Perm.SameCycle.conj
623
+ - Equiv.Perm.IsCycle.eq_on_support_inter_nonempty_congr
624
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/LocalizedModule.lean
625
+ theorems:
626
+ - IsLocalizedModule.mk'_neg
627
+ - path: .lake/packages/std/Std/Data/Array/Lemmas.lean
628
+ theorems:
629
+ - Array.size_zipWith
630
+ - Array.get_extract_loop_lt
631
+ - Array.data_swap
632
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/MeasureSpace.lean
633
+ theorems:
634
+ - MeasureTheory.Measure.AbsolutelyContinuous.smul
635
+ - MeasureTheory.ae_map_mem_range
636
+ - path: .lake/packages/mathlib/Mathlib/Probability/Independence/Basic.lean
637
+ theorems:
638
+ - ProbabilityTheory.iIndep_iff
639
+ - ProbabilityTheory.iIndepSet_iff
640
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Forall2.lean
641
+ theorems:
642
+ - "List.forall\u2082_cons"
643
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/PosPart.lean
644
+ theorems:
645
+ - leOnePart_le_one
646
+ - mabs_div_eq_leOnePart_sq
647
+ - one_lt_ltOnePart
648
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/PiNat.lean
649
+ theorems:
650
+ - PiNat.mem_cylinder_iff_le_firstDiff
651
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Analytic/Inverse.lean
652
+ theorems:
653
+ - FormalMultilinearSeries.comp_rightInv_aux1
654
+ - path: .lake/packages/mathlib/Mathlib/Topology/Connected/Basic.lean
655
+ theorems:
656
+ - IsConnected.union
657
+ - isPreconnected_of_forall_constant
658
+ - QuotientMap.image_connectedComponent
659
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Haar/Disintegration.lean
660
+ theorems:
661
+ - MeasureTheory.ae_ae_add_linearMap_mem_iff
662
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Bind.lean
663
+ theorems:
664
+ - Multiset.bind_congr
665
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Subalgebra/Basic.lean
666
+ theorems:
667
+ - AlgHom.coe_range
668
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/StrictConvexBetween.lean
669
+ theorems:
670
+ - Sbtw.dist_lt_max_dist
671
+ - Wbtw.dist_le_max_dist
672
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/PosDef.lean
673
+ theorems:
674
+ - Matrix.PosSemidef.conjTranspose_mul_mul_same
675
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/HomComplex.lean
676
+ theorems:
677
+ - CochainComplex.HomComplex.Cochain.comp_assoc_of_first_is_zero_cochain
678
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Basic.lean
679
+ theorems:
680
+ - Filter.not_eventually
681
+ - Filter.comap_neBot_iff
682
+ - Filter.iInf_neBot_of_directed
683
+ - Filter.map_const
684
+ - Filter.prod_map_seq_comm
685
+ - Filter.EventuallyLE.congr
686
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/SimpleFunc.lean
687
+ theorems:
688
+ - MeasureTheory.SimpleFunc.FinMeasSupp.add
689
+ - MeasureTheory.SimpleFunc.approx_apply
690
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/TwoDim.lean
691
+ theorems:
692
+ - Orientation.norm_kahler
693
+ - Orientation.inner_mul_areaForm_sub'
694
+ - Orientation.kahler_mul
695
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Lebesgue/Basic.lean
696
+ theorems:
697
+ - Real.volume_eq_stieltjes_id
698
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Connectivity.lean
699
+ theorems:
700
+ - SimpleGraph.reachable_delete_edges_iff_exists_walk
701
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Operations.lean
702
+ theorems:
703
+ - Ideal.iInf_span_singleton
704
+ - Ideal.radical_eq_iff
705
+ - Ideal.sup_mul_eq_of_coprime_left
706
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/LeftHomology.lean
707
+ theorems:
708
+ - CategoryTheory.ShortComplex.LeftHomologyData.liftCycles_comp_cyclesIso_hom
709
+ - "CategoryTheory.ShortComplex.toCycles_comp_leftHomology\u03C0"
710
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Bicategory/Adjunction.lean
711
+ theorems:
712
+ - CategoryTheory.Bicategory.right_triangle_of_left_triangle
713
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subsemigroup/Membership.lean
714
+ theorems:
715
+ - Subsemigroup.mem_sSup_of_mem
716
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Hom/Monoid.lean
717
+ theorems:
718
+ - OrderMonoidWithZeroHom.toOrderMonoidHom_injective
719
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/Average.lean
720
+ theorems:
721
+ - MeasureTheory.measure_setLaverage_le_pos
722
+ - MeasureTheory.laverage_eq
723
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Floor.lean
724
+ theorems:
725
+ - Nat.one_le_ceil_iff
726
+ - Int.fract_natCast
727
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/Basic.lean
728
+ theorems:
729
+ - Set.right_mem_Iic
730
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Polynomial.lean
731
+ theorems:
732
+ - "Polynomial.continuous_eval\u2082"
733
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Exponential.lean
734
+ theorems:
735
+ - Real.cosh_sub
736
+ - Real.exp_1_approx_succ_eq
737
+ - Complex.cos_sq
738
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Multivariate/Basic.lean
739
+ theorems:
740
+ - MvPFunctor.const.get_map
741
+ - path: .lake/packages/mathlib/Mathlib/Logic/Embedding/Basic.lean
742
+ theorems:
743
+ - Equiv.embeddingCongr_apply_trans
744
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Module/Defs.lean
745
+ theorems:
746
+ - neg_of_smul_neg_right
747
+ - smul_pos_iff_of_neg_left
748
+ - PosSMulReflectLE.lift
749
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Notation.lean
750
+ theorems:
751
+ - ONote.repr_sub
752
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/MeasurableSpace/Defs.lean
753
+ theorems:
754
+ - MeasurableSpace.measurableSpace_iSup_eq
755
+ - MeasurableSpace.measurableSet_bot_iff
756
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/Shadow.lean
757
+ theorems:
758
+ - Set.Sized.upShadow
759
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Submonoid/Operations.lean
760
+ theorems:
761
+ - Submonoid.eq_bot_of_subsingleton
762
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/IsAdjoinRoot.lean
763
+ theorems:
764
+ - IsAdjoinRootMonic.modByMonicHom_root_pow
765
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Spectrum.lean
766
+ theorems:
767
+ - Matrix.IsHermitian.eigenvectorMatrix_apply
768
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GradedMonoid.lean
769
+ theorems:
770
+ - SetLike.pow_mem_graded
771
+ - path: .lake/packages/mathlib/Mathlib/Data/ENNReal/Real.lean
772
+ theorems:
773
+ - ENNReal.ofReal_lt_one
774
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Log.lean
775
+ theorems:
776
+ - Nat.clog_eq_one
777
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dual.lean
778
+ theorems:
779
+ - Module.forall_dual_apply_eq_zero_iff
780
+ - Subspace.dualRestrict_comp_dualLift
781
+ - Subspace.map_dualCoannihilator
782
+ - Submodule.exists_dual_map_eq_bot_of_lt_top
783
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomologicalBicomplex.lean
784
+ theorems:
785
+ - "HomologicalComplex\u2082.d_comm"
786
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSeminorm/Basic.lean
787
+ theorems:
788
+ - MeasureTheory.snorm'_measure_zero_of_neg
789
+ - MeasureTheory.snorm_zero'
790
+ - MeasureTheory.snormEssSup_mono_measure
791
+ - "MeasureTheory.mem\u2112p_const"
792
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/LineDeriv/Basic.lean
793
+ theorems:
794
+ - HasLineDerivWithinAt.congr_mono
795
+ - HasFDerivWithinAt.hasLineDerivWithinAt
796
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/SimplexCategory.lean
797
+ theorems:
798
+ - SimplexCategory.factorThruImage_eq
799
+ - SimplexCategory.iso_eq_iso_refl
800
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorization/Root.lean
801
+ theorems:
802
+ - Nat.floorRoot_ne_zero
803
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/SpecificGroups/Dihedral.lean
804
+ theorems:
805
+ - DihedralGroup.orderOf_r_one
806
+ - DihedralGroup.r_one_pow
807
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactness/SigmaCompact.lean
808
+ theorems:
809
+ - CompactExhaustion.mem_diff_shiftr_find
810
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Function/Support.lean
811
+ theorems:
812
+ - Function.mulSupport_extend_one
813
+ - Function.mulSupport_binop_subset
814
+ - Function.range_subset_insert_image_mulSupport
815
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Card.lean
816
+ theorems:
817
+ - Set.ncard_singleton_inter
818
+ - Set.one_le_encard_iff_nonempty
819
+ - Set.ncard_pair
820
+ - Set.ncard_insert_le
821
+ - Set.encard_eq_three
822
+ - Set.fiber_ncard_ne_zero_iff_mem_image
823
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/InitTail.lean
824
+ theorems:
825
+ - WittVector.init_init
826
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/HNNExtension.lean
827
+ theorems:
828
+ - HNNExtension.lift_t
829
+ - path: .lake/packages/mathlib/Mathlib/Data/List/BigOperators/Basic.lean
830
+ theorems:
831
+ - List.prod_isUnit_iff
832
+ - Commute.list_prod_right
833
+ - List.prod_map_neg
834
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/EllipticCurve/Jacobian.lean
835
+ theorems:
836
+ - WeierstrassCurve.Jacobian.equiv_of_Z_eq_zero
837
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Lemmas.lean
838
+ theorems:
839
+ - Int.natAbs_inj_of_nonneg_of_nonneg
840
+ - path: .lake/packages/mathlib/Mathlib/Data/Fintype/Basic.lean
841
+ theorems:
842
+ - Fintype.choose_subtype_eq
843
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Valuation/Basic.lean
844
+ theorems:
845
+ - Valuation.map_one_sub_of_lt
846
+ - path: .lake/packages/mathlib/Mathlib/Algebra/EuclideanDomain/Defs.lean
847
+ theorems:
848
+ - EuclideanDomain.div_add_mod'
849
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gamma/BohrMollerup.lean
850
+ theorems:
851
+ - Real.BohrMollerup.logGammaSeq_add_one
852
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Localization/CalculusOfFractions.lean
853
+ theorems:
854
+ - CategoryTheory.Localization.essSurj_mapArrow_of_hasLeftCalculusofFractions
855
+ - CategoryTheory.MorphismProperty.LeftFraction.map_ofInv_hom_id
856
+ - path: .lake/packages/mathlib/Mathlib/Analysis/PSeries.lean
857
+ theorems:
858
+ - Real.not_summable_indicator_one_div_natCast
859
+ - Finset.le_sum_condensed'
860
+ - Real.summable_one_div_nat_pow
861
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Submodule.lean
862
+ theorems:
863
+ - LieSubmodule.coe_toSubmodule_mk
864
+ - LieHom.mem_idealRange
865
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/MeasurableSpace/Basic.lean
866
+ theorems:
867
+ - measurableSet_range_inl
868
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Rotate.lean
869
+ theorems:
870
+ - List.rotate_eq_nil_iff
871
+ - List.get_rotate
872
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Cyclotomic/Basic.lean
873
+ theorems:
874
+ - IsCyclotomicExtension.iff_union_of_dvd
875
+ - IsCyclotomicExtension.of_union_of_dvd
876
+ - IsCyclotomicExtension.adjoin_roots_cyclotomic_eq_adjoin_root_cyclotomic
877
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Lattice.lean
878
+ theorems:
879
+ - List.nil_bagInter
880
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Prod/Integral.lean
881
+ theorems:
882
+ - MeasureTheory.lintegral_fn_integral_sub
883
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/Basic.lean
884
+ theorems:
885
+ - interior_Ico
886
+ - nhds_eq_iInf_abs_sub
887
+ - path: .lake/packages/mathlib/Mathlib/Computability/Halting.lean
888
+ theorems:
889
+ - Partrec.merge'
890
+ - path: .lake/packages/mathlib/Mathlib/Topology/Separation.lean
891
+ theorems:
892
+ - isClosed_setOf_specializes
893
+ - compl_singleton_mem_nhdsSet_iff
894
+ - Set.EqOn.of_subset_closure
895
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/TotalComplexSymmetry.lean
896
+ theorems:
897
+ - "HomologicalComplex\u2082.totalFlipIso_hom_f_D\u2082"
898
+ - path: .lake/packages/mathlib/Mathlib/Order/SuccPred/Limit.lean
899
+ theorems:
900
+ - Order.not_isSuccLimit_of_noMax
901
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PolynomialAlgebra.lean
902
+ theorems:
903
+ - matPolyEquiv_map_C
904
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RootsOfUnity/Minpoly.lean
905
+ theorems:
906
+ - IsPrimitiveRoot.minpoly_dvd_expand
907
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Closed/Ideal.lean
908
+ theorems:
909
+ - CategoryTheory.bijection_natural
910
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Weights/Basic.lean
911
+ theorems:
912
+ - LieModule.exists_weightSpace_le_ker_of_isNoetherian
913
+ - path: .lake/packages/mathlib/Mathlib/Analysis/LocallyConvex/AbsConvex.lean
914
+ theorems:
915
+ - gaugeSeminormFamily_ball
916
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Sqrt.lean
917
+ theorems:
918
+ - Nat.sqrt_lt_self
919
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Pell.lean
920
+ theorems:
921
+ - Pell.exists_of_not_isSquare
922
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousFunction/Algebra.lean
923
+ theorems:
924
+ - algebraMap_apply
925
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Rearrangement.lean
926
+ theorems:
927
+ - Monovary.sum_comp_perm_smul_lt_sum_smul_iff
928
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Matrix.lean
929
+ theorems:
930
+ - AffineBasis.det_smul_coords_eq_cramer_coords
931
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Basic.lean
932
+ theorems:
933
+ - UniformSpace.to_nhds_mono
934
+ - uniformity_le_symm
935
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Sigma.lean
936
+ theorems:
937
+ - List.keys_kreplace
938
+ - List.dlookup_kinsert
939
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ContinuedFractions/Computation/Translations.lean
940
+ theorems:
941
+ - GeneralizedContinuedFraction.convergents'_of_int
942
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/TensorProduct/Basic.lean
943
+ theorems:
944
+ - LinearMap.baseChange_mul
945
+ - Algebra.TensorProduct.lift_comp_includeRight
946
+ - Algebra.TensorProduct.lift_includeLeft_includeRight
947
+ - path: .lake/packages/mathlib/Mathlib/Algebra/CharP/Basic.lean
948
+ theorems:
949
+ - Ring.two_ne_zero
950
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/UpperHalfPlane/Basic.lean
951
+ theorems:
952
+ - UpperHalfPlane.im_inv_neg_coe_pos
953
+ - path: .lake/packages/mathlib/Mathlib/Data/Option/Basic.lean
954
+ theorems:
955
+ - Option.guard_eq_some'
956
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Norm.lean
957
+ theorems:
958
+ - Ideal.absNorm_eq_zero_iff
959
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Haar/Unique.lean
960
+ theorems:
961
+ - MeasureTheory.Measure.measure_isMulInvariant_eq_smul_of_isCompact_closure
962
+ - MeasureTheory.Measure.isHaarMeasure_eq_of_isProbabilityMeasure
963
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Analytic/Composition.lean
964
+ theorems:
965
+ - FormalMultilinearSeries.comp_removeZero
966
+ - path: .lake/packages/mathlib/Mathlib/Logic/Hydra.lean
967
+ theorems:
968
+ - Relation.cutExpand_fibration
969
+ - Relation.cutExpand_add_left
970
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/ToLin.lean
971
+ theorems:
972
+ - LinearMap.toMatrixAlgEquiv_apply
973
+ - LinearMap.toMatrixAlgEquiv_mul
974
+ - LinearMap.toMatrix_basis_equiv
975
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Rayleigh.lean
976
+ theorems:
977
+ - Beatty.hit_or_miss
978
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convolution.lean
979
+ theorems:
980
+ - ConvolutionExistsAt.distrib_add
981
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/LocallyFinite/Basic.lean
982
+ theorems:
983
+ - Finset.map_add_left_Ioo
984
+ - Finset.Icc_erase_right
985
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Ext.lean
986
+ theorems:
987
+ - CommGroup.toGroup_injective
988
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Combination.lean
989
+ theorems:
990
+ - Finset.affineCombinationSingleWeights_apply_self
991
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Fin.lean
992
+ theorems:
993
+ - Fin.cycleRange_symm_succ
994
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/UniformGroup.lean
995
+ theorems:
996
+ - UniformContinuous.pow_const
997
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Bounded.lean
998
+ theorems:
999
+ - Metric.ediam_univ_eq_top_iff_noncompact
1000
+ - Metric.diam_triple
1001
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Field/Basic.lean
1002
+ theorems:
1003
+ - div_mul_le_div_mul_of_div_le_div
1004
+ - le_div_iff_of_neg'
1005
+ - div_pos_iff
1006
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/UniformIntegrable.lean
1007
+ theorems:
1008
+ - MeasureTheory.tendsto_Lp_of_tendsto_ae
1009
+ - path: .lake/packages/std/Std/Data/HashMap/WF.lean
1010
+ theorems:
1011
+ - Std.HashMap.Imp.Buckets.exists_of_update
1012
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/ScaleRoots.lean
1013
+ theorems:
1014
+ - Polynomial.support_scaleRoots_eq
1015
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/MonoCoprod.lean
1016
+ theorems:
1017
+ - CategoryTheory.Limits.MonoCoprod.mono_binaryCofanSum_inr'
1018
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Injective.lean
1019
+ theorems:
1020
+ - Module.Baer.injective
1021
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/RootSystem/Basic.lean
1022
+ theorems:
1023
+ - RootPairing.isCrystallographic_iff
1024
+ - path: .lake/packages/mathlib/Mathlib/RepresentationTheory/Action/Monoidal.lean
1025
+ theorems:
1026
+ - Action.rightUnitor_hom_hom
1027
+ - path: .lake/packages/mathlib/Mathlib/Data/Part.lean
1028
+ theorems:
1029
+ - Part.toOption_isNone
1030
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Intervals.lean
1031
+ theorems:
1032
+ - Finset.prod_Ico_add'
1033
+ - Finset.prod_Ico_mul_eq_prod_Icc
1034
+ - Finset.prod_Ico_reflect
1035
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Weights/Chain.lean
1036
+ theorems:
1037
+ - LieModule.weightSpaceChain_neg
1038
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Types.lean
1039
+ theorems:
1040
+ - CategoryTheory.Limits.Types.Image.lift_fac
1041
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/RightHomology.lean
1042
+ theorems:
1043
+ - CategoryTheory.ShortComplex.RightHomologyMapData.opcyclesMap_eq
1044
+ - CategoryTheory.ShortComplex.opcyclesMap'_comp
1045
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Lift.lean
1046
+ theorems:
1047
+ - Filter.prod_lift'_lift'
1048
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Morphisms/Basic.lean
1049
+ theorems:
1050
+ - AlgebraicGeometry.targetAffineLocallyOfOpenCover
1051
+ - AlgebraicGeometry.AffineTargetMorphismProperty.isLocalOfOpenCoverImply
1052
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Norm.lean
1053
+ theorems:
1054
+ - Algebra.norm_eq_prod_embeddings_gen
1055
+ - path: .lake/packages/mathlib/Mathlib/Data/PNat/Prime.lean
1056
+ theorems:
1057
+ - PNat.gcd_eq_right_iff_dvd
1058
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Arithmetic.lean
1059
+ theorems:
1060
+ - Ordinal.bsup_not_succ_of_ne_bsup
1061
+ - Ordinal.IsNormal.eq_iff_zero_and_succ
1062
+ - Acc.rank_lt_of_rel
1063
+ - Ordinal.div_nonempty
1064
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntervalIntegral.lean
1065
+ theorems:
1066
+ - intervalIntegral.integral_interval_sub_interval_comm
1067
+ - intervalIntegral.smul_integral_comp_add_mul
1068
+ - intervalIntegral.integral_cases
1069
+ - intervalIntegral.integral_congr
1070
+ - IntervalIntegrable.comp_add_right
1071
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/Ideal.lean
1072
+ theorems:
1073
+ - FractionalIdeal.mul_inv_cancel
1074
+ - irreducible_pow_sup_of_le
1075
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Real.lean
1076
+ theorems:
1077
+ - Real.exists_rat_pow_btwn
1078
+ - Real.one_le_rpow
1079
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Subring/Basic.lean
1080
+ theorems:
1081
+ - coe_int_mem
1082
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Basis.lean
1083
+ theorems:
1084
+ - Basis.coePiBasisFun.toMatrix_eq_transpose
1085
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/FunctorGamma.lean
1086
+ theorems:
1087
+ - "AlgebraicTopology.DoldKan.\u0393\u2080.Obj.map_epi_on_summand_id"
1088
+ - path: .lake/packages/mathlib/Mathlib/Topology/Baire/Lemmas.lean
1089
+ theorems:
1090
+ - dense_biInter_of_isOpen
1091
+ - path: .lake/packages/std/Std/Data/Range/Lemmas.lean
1092
+ theorems:
1093
+ - Std.Range.forIn_eq_forIn_range'
1094
+ - path: .lake/packages/mathlib/Mathlib/Logic/Nontrivial/Basic.lean
1095
+ theorems:
1096
+ - Function.Injective.exists_ne
1097
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/OuterMeasure/Basic.lean
1098
+ theorems:
1099
+ - MeasureTheory.OuterMeasure.restrict_apply
1100
+ - MeasureTheory.OuterMeasure.le_trim
1101
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/ProjectiveSpectrum/Topology.lean
1102
+ theorems:
1103
+ - ProjectiveSpectrum.basicOpen_mul_le_left
1104
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Parity.lean
1105
+ theorems:
1106
+ - range_two_mul
1107
+ - path: .lake/packages/mathlib/Mathlib/Logic/Lemmas.lean
1108
+ theorems:
1109
+ - dite_dite_distrib_right
1110
+ - path: .lake/packages/mathlib/Mathlib/Data/Matroid/Dual.lean
1111
+ theorems:
1112
+ - Matroid.dual_dual
1113
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Smeval.lean
1114
+ theorems:
1115
+ - Polynomial.smeval_C
1116
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ModEq.lean
1117
+ theorems:
1118
+ - AddCommGroup.modEq_refl
1119
+ - path: .lake/packages/mathlib/Mathlib/Logic/Function/Conjugate.lean
1120
+ theorems:
1121
+ - Function.Semiconj.inverses_right
1122
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/InfiniteSum/Ring.lean
1123
+ theorems:
1124
+ - summable_mul_right_iff
1125
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Alternating/Basic.lean
1126
+ theorems:
1127
+ - AlternatingMap.curryLeft_same
1128
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FractionalIdeal/Operations.lean
1129
+ theorems:
1130
+ - FractionalIdeal.map_symm_map
1131
+ - path: .lake/packages/mathlib/Mathlib/Logic/Function/Basic.lean
1132
+ theorems:
1133
+ - Function.sometimes_spec
1134
+ - Function.extend_def
1135
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Homotopy.lean
1136
+ theorems:
1137
+ - Homotopy.nullHomotopicMap'_f
1138
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/PhragmenLindelof.lean
1139
+ theorems:
1140
+ - PhragmenLindelof.right_half_plane_of_tendsto_zero_on_real
1141
+ - PhragmenLindelof.horizontal_strip
1142
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Comma/Presheaf.lean
1143
+ theorems:
1144
+ - "CategoryTheory.OverPresheafAux.YonedaCollection.map\u2081_fst"
1145
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/BilinearForm/Basic.lean
1146
+ theorems:
1147
+ - BilinForm.coe_injective
1148
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector.lean
1149
+ theorems:
1150
+ - Vector.toList_drop
1151
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/CardIntervalMod.lean
1152
+ theorems:
1153
+ - Nat.count_modEq_card
1154
+ - Int.Ioc_filter_modEq_card
1155
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Basic.lean
1156
+ theorems:
1157
+ - Cardinal.power_mul
1158
+ - Cardinal.lift_le_aleph0
1159
+ - Cardinal.lift_mk_le_lift_mk_mul_of_lift_mk_preimage_le
1160
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/BinaryProducts.lean
1161
+ theorems:
1162
+ - CategoryTheory.Limits.prod.comp_lift
1163
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/SmoothManifoldWithCorners.lean
1164
+ theorems:
1165
+ - PartialHomeomorph.extend_image_nhd_mem_nhds_of_boundaryless
1166
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Pi.lean
1167
+ theorems:
1168
+ - LinearMap.pi_zero
1169
+ - LinearMap.iInf_ker_proj
1170
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Basic.lean
1171
+ theorems:
1172
+ - Polynomial.toFinsupp_sub
1173
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Basic.lean
1174
+ theorems:
1175
+ - Ideal.mem_span_singleton
1176
+ - Ideal.eq_bot_or_top
1177
+ - path: .lake/packages/mathlib/Mathlib/Topology/Semicontinuous.lean
1178
+ theorems:
1179
+ - lowerSemicontinuousWithinAt_tsum
1180
+ - lowerSemicontinuousAt_tsum
1181
+ - upperSemicontinuousAt_sum
1182
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Basic.lean
1183
+ theorems:
1184
+ - Multiset.Rel.add
1185
+ - Multiset.cons_subset
1186
+ - Multiset.erase_add_right_pos
1187
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/VectorMeasure.lean
1188
+ theorems:
1189
+ - MeasureTheory.Measure.toENNRealVectorMeasure_ennrealToMeasure
1190
+ - MeasureTheory.VectorMeasure.restrict_add
1191
+ - MeasureTheory.Measure.toSignedMeasure_congr
1192
+ - MeasureTheory.VectorMeasure.hasSum_of_disjoint_iUnion
1193
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Sub/Defs.lean
1194
+ theorems:
1195
+ - AddLECancellable.tsub_eq_of_eq_add_rev
1196
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Spectrum.lean
1197
+ theorems:
1198
+ - spectrum.differentiableOn_inverse_one_sub_smul
1199
+ - path: .lake/packages/mathlib/Mathlib/Computability/Partrec.lean
1200
+ theorems:
1201
+ - Computable.ofOption
1202
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Types.lean
1203
+ theorems:
1204
+ - CategoryTheory.Limits.Types.equalizerIso_hom_comp_subtype
1205
+ - path: .lake/packages/mathlib/Mathlib/Control/EquivFunctor.lean
1206
+ theorems:
1207
+ - EquivFunctor.mapEquiv.injective
1208
+ - path: .lake/packages/mathlib/Mathlib/Dynamics/Ergodic/MeasurePreserving.lean
1209
+ theorems:
1210
+ - MeasureTheory.MeasurePreserving.restrict_image_emb
1211
+ - MeasureTheory.MeasurePreserving.restrict_preimage_emb
1212
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Implicit.lean
1213
+ theorems:
1214
+ - ImplicitFunctionData.map_nhds_eq
1215
+ - path: .lake/packages/mathlib/Mathlib/Data/Finmap.lean
1216
+ theorems:
1217
+ - Finmap.keys_union
1218
+ - Finmap.keysLookupEquiv_symm_apply_keys
1219
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Cotangent.lean
1220
+ theorems:
1221
+ - Ideal.to_quotient_square_range
1222
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Order/Field.lean
1223
+ theorems:
1224
+ - Filter.Tendsto.div_atTop
1225
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Liouville/LiouvilleWith.lean
1226
+ theorems:
1227
+ - LiouvilleWith.int_add_iff
1228
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Properties.lean
1229
+ theorems:
1230
+ - AlgebraicGeometry.basicOpen_eq_bot_iff
1231
+ - path: .lake/packages/mathlib/Mathlib/Order/ModularLattice.lean
1232
+ theorems:
1233
+ - eq_of_le_of_inf_le_of_sup_le
1234
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Maps.lean
1235
+ theorems:
1236
+ - SimpleGraph.map_le_iff_le_comap
1237
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/Instances.lean
1238
+ theorems:
1239
+ - Set.Ioc.coe_eq_one
1240
+ - Set.Icc.one_sub_nonneg
1241
+ - path: .lake/packages/mathlib/Mathlib/Data/Matroid/Basic.lean
1242
+ theorems:
1243
+ - Matroid.base_compl_iff_mem_maximals_disjoint_base
1244
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Basic.lean
1245
+ theorems:
1246
+ - conj_eq_one_iff
1247
+ - path: .lake/packages/mathlib/Mathlib/Computability/AkraBazzi/GrowsPolynomially.lean
1248
+ theorems:
1249
+ - AkraBazziRecurrence.GrowsPolynomially.eventually_atTop_zero_or_pos_or_neg
1250
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Intrinsic.lean
1251
+ theorems:
1252
+ - intrinsicClosure_empty
1253
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Complement.lean
1254
+ theorems:
1255
+ - Subgroup.coe_transferFunction
1256
+ - Subgroup.IsComplement.equiv_mul_left
1257
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/HomCompletion.lean
1258
+ theorems:
1259
+ - NormedAddGroupHom.ker_le_ker_completion
1260
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Polish.lean
1261
+ theorems:
1262
+ - MeasurableSet.isClopenable
1263
+ - path: .lake/packages/mathlib/Mathlib/Topology/Bases.lean
1264
+ theorems:
1265
+ - Pairwise.countable_of_isOpen_disjoint
1266
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Infix.lean
1267
+ theorems:
1268
+ - List.map_reverse_inits
1269
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Zlattice.lean
1270
+ theorems:
1271
+ - Zlattice.FG
1272
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/ZFC/Basic.lean
1273
+ theorems:
1274
+ - Class.coe_sUnion
1275
+ - ZFSet.toSet_sep
1276
+ - ZFSet.toSet_subset_iff
1277
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Asymptotics/Theta.lean
1278
+ theorems:
1279
+ - Asymptotics.isTheta_inv
1280
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Univariate/M.lean
1281
+ theorems:
1282
+ - PFunctor.M.ext_aux
1283
+ - path: .lake/packages/mathlib/Mathlib/Order/ConditionallyCompleteLattice/Basic.lean
1284
+ theorems:
1285
+ - WithTop.coe_iSup
1286
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/NumberField/CanonicalEmbedding.lean
1287
+ theorems:
1288
+ - NumberField.mixedEmbedding.convexBodySum_volume
1289
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GCDMonoid/Basic.lean
1290
+ theorems:
1291
+ - normalize_coe_units
1292
+ - lcm_mul_right
1293
+ - Associates.dvd_out_iff
1294
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Image.lean
1295
+ theorems:
1296
+ - Set.forall_mem_range
1297
+ - Set.image_union_image_compl_eq_range
1298
+ - Set.image_preimage_eq_of_subset
1299
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/ChevalleyWarning.lean
1300
+ theorems:
1301
+ - char_dvd_card_solutions_of_fintype_sum_lt
1302
+ - path: .lake/packages/std/Std/Data/List/Count.lean
1303
+ theorems:
1304
+ - List.count_le_count_map
1305
+ - path: .lake/packages/mathlib/Mathlib/Data/Fintype/BigOperators.lean
1306
+ theorems:
1307
+ - Finset.prod_toFinset_eq_subtype
1308
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntervalAverage.lean
1309
+ theorems:
1310
+ - interval_average_symm
1311
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Basic.lean
1312
+ theorems:
1313
+ - EuclideanGeometry.dist_smul_vadd_eq_dist
1314
+ - EuclideanGeometry.dist_left_midpoint_eq_dist_right_midpoint
1315
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RingHomProperties.lean
1316
+ theorems:
1317
+ - RingHom.RespectsIso.cancel_right_isIso
1318
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Prod.lean
1319
+ theorems:
1320
+ - Set.range_pair_subset
1321
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Block.lean
1322
+ theorems:
1323
+ - Matrix.blockTriangular_stdBasisMatrix
1324
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/Sign.lean
1325
+ theorems:
1326
+ - continuousAt_sign_of_pos
1327
+ - path: .lake/packages/mathlib/Mathlib/Data/DFinsupp/Order.lean
1328
+ theorems:
1329
+ - DFinsupp.support_tsub
1330
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Basic.lean
1331
+ theorems:
1332
+ - MetricSpace.replaceBornology_eq
1333
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Digits.lean
1334
+ theorems:
1335
+ - Nat.ofDigits_one_cons
1336
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/FLT/Four.lean
1337
+ theorems:
1338
+ - Fermat42.comm
1339
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/GCD/Basic.lean
1340
+ theorems:
1341
+ - Nat.coprime_pow_left_iff
1342
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/PartialEquiv.lean
1343
+ theorems:
1344
+ - PartialEquiv.refl_restr_target
1345
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/AbsMax.lean
1346
+ theorems:
1347
+ - Complex.exists_mem_frontier_isMaxOn_norm
1348
+ - path: .lake/packages/mathlib/Mathlib/Computability/Reduce.lean
1349
+ theorems:
1350
+ - ComputablePred.computable_of_manyOneReducible
1351
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/NumberField/Embeddings.lean
1352
+ theorems:
1353
+ - NumberField.InfinitePlace.exists_smul_eq_of_comap_eq
1354
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Bicategory/Basic.lean
1355
+ theorems:
1356
+ - CategoryTheory.Bicategory.leftUnitor_inv_naturality
1357
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Mul.lean
1358
+ theorems:
1359
+ - HasDerivAtFilter.const_smul
1360
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Preadditive.lean
1361
+ theorems:
1362
+ - "CategoryTheory.leftDistributor_ext\u2082_right"
1363
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ContinuedFractions/Translations.lean
1364
+ theorems:
1365
+ - GeneralizedContinuedFraction.first_denominator_eq
1366
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/MFDeriv/Atlas.lean
1367
+ theorems:
1368
+ - PartialHomeomorph.MDifferentiable.symm_comp_deriv
1369
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Index.lean
1370
+ theorems:
1371
+ - Subgroup.inf_relindex_left
1372
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Lattice.lean
1373
+ theorems:
1374
+ - Finset.card_le_of_interleaved
1375
+ - Finset.sup_le_iff
1376
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Over.lean
1377
+ theorems:
1378
+ - Ideal.eq_bot_of_comap_eq_bot
1379
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Derivation/Basic.lean
1380
+ theorems:
1381
+ - Derivation.leibniz_of_mul_eq_one
1382
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Chain.lean
1383
+ theorems:
1384
+ - List.Chain'.infix
1385
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Irrational.lean
1386
+ theorems:
1387
+ - irrational_iff_ne_rational
1388
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Zip.lean
1389
+ theorems:
1390
+ - List.unzip_zip_left
1391
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Prod.lean
1392
+ theorems:
1393
+ - MeasureTheory.absolutelyContinuous_map_mul_right
1394
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Sites/Coherent/Equivalence.lean
1395
+ theorems:
1396
+ - CategoryTheory.Equivalence.precoherent_eq
1397
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/L1Space.lean
1398
+ theorems:
1399
+ - MeasureTheory.L1.dist_def
1400
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Integrals.lean
1401
+ theorems:
1402
+ - integral_sin_pow_aux
1403
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Laurent.lean
1404
+ theorems:
1405
+ - LaurentPolynomial.T_sub
1406
+ - LaurentPolynomial.invert_C
1407
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Order/Compact.lean
1408
+ theorems:
1409
+ - cocompact_le_atBot_atTop
1410
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/QuadraticForm/Prod.lean
1411
+ theorems:
1412
+ - QuadraticForm.posDef_prod_iff
1413
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/Lebesgue.lean
1414
+ theorems:
1415
+ - NNReal.count_const_le_le_of_tsum_le
1416
+ - MeasureTheory.lintegral_indicator_le
1417
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Adjunction/Opposites.lean
1418
+ theorems:
1419
+ - CategoryTheory.Adjunction.homEquiv_leftAdjointUniq_hom_app
1420
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/CompactConvergence.lean
1421
+ theorems:
1422
+ - ContinuousMap.mem_compactConvergence_entourage_iff
1423
+ - Filter.HasBasis.compactConvergenceUniformity
1424
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Sub/Canonical.lean
1425
+ theorems:
1426
+ - AddLECancellable.tsub_lt_iff_left
1427
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Integral.lean
1428
+ theorems:
1429
+ - MeasureTheory.Integrable.comp_div_right
1430
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Regularity/Bound.lean
1431
+ theorems:
1432
+ - SzemerediRegularity.eps_pos
1433
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/PseudoMetric.lean
1434
+ theorems:
1435
+ - Real.Ioo_eq_ball
1436
+ - swap_dist
1437
+ - path: .lake/packages/mathlib/Mathlib/Order/Lattice.lean
1438
+ theorems:
1439
+ - sup_right_comm
1440
+ - inf_eq_right
1441
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Submodule/Bilinear.lean
1442
+ theorems:
1443
+ - "Submodule.map\u2082_flip"
1444
+ - "Submodule.map\u2082_eq_span_image2"
1445
+ - path: .lake/packages/mathlib/Mathlib/Order/WithBot.lean
1446
+ theorems:
1447
+ - WithBot.some_le_some
1448
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/InteriorBoundary.lean
1449
+ theorems:
1450
+ - ModelWithCorners.boundary_eq_complement_interior
1451
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Minpoly/MinpolyDiv.lean
1452
+ theorems:
1453
+ - natDegree_minpolyDiv_succ
1454
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Ray.lean
1455
+ theorems:
1456
+ - eq_zero_of_sameRay_self_neg
1457
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Pointwise.lean
1458
+ theorems:
1459
+ - "Finset.smul_univ\u2080"
1460
+ - Finset.preimage_mul_left_singleton
1461
+ - path: .lake/packages/mathlib/Mathlib/Data/Setoid/Partition.lean
1462
+ theorems:
1463
+ - Setoid.classes_ker_subset_fiber_set
1464
+ - path: .lake/packages/mathlib/Mathlib/Topology/Connected/PathConnected.lean
1465
+ theorems:
1466
+ - Path.map_trans
1467
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Submodule/Map.lean
1468
+ theorems:
1469
+ - LinearMap.map_codRestrict
1470
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/RamificationInertia.lean
1471
+ theorems:
1472
+ - Ideal.powQuotSuccInclusion_injective
1473
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/QuasiIso.lean
1474
+ theorems:
1475
+ - CategoryTheory.ShortComplex.quasiIso_iff_isIso_descOpcycles
1476
+ - CategoryTheory.ShortComplex.quasiIso_opMap_iff
1477
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Fib/Zeckendorf.lean
1478
+ theorems:
1479
+ - Nat.zeckendorf_succ
1480
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/RightAngle.lean
1481
+ theorems:
1482
+ - EuclideanGeometry.dist_div_sin_oangle_right_of_oangle_eq_pi_div_two
1483
+ - Orientation.sin_oangle_sub_right_of_oangle_eq_pi_div_two
1484
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Contraction.lean
1485
+ theorems:
1486
+ - dualTensorHomEquivOfBasis_apply
1487
+ - homTensorHomEquiv_toLinearMap
1488
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subgroup/Basic.lean
1489
+ theorems:
1490
+ - Subgroup.Normal.comap
1491
+ - mul_mem_cancel_right
1492
+ - Subgroup.map_eq_comap_of_inverse
1493
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Periodic.lean
1494
+ theorems:
1495
+ - Function.Antiperiodic.neg_eq
1496
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Splits.lean
1497
+ theorems:
1498
+ - Polynomial.splits_mul
1499
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Card.lean
1500
+ theorems:
1501
+ - Finset.injOn_of_card_image_eq
1502
+ - path: .lake/packages/mathlib/Mathlib/Tactic/Ring/Basic.lean
1503
+ theorems:
1504
+ - Mathlib.Tactic.Ring.div_pf
1505
+ - Mathlib.Tactic.Ring.mul_one
1506
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pairwise/Lattice.lean
1507
+ theorems:
1508
+ - Set.pairwise_sUnion
1509
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/StructureSheaf.lean
1510
+ theorems:
1511
+ - AlgebraicGeometry.StructureSheaf.comap_const
1512
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Basic.lean
1513
+ theorems:
1514
+ - Orientation.oangle_sign_sub_smul_right
1515
+ - Orientation.oangle_eq_zero_iff_sameRay
1516
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/LinearIndependent.lean
1517
+ theorems:
1518
+ - linearIndependent_sum
1519
+ - LinearIndependent.map'
1520
+ - linearIndependent_iff
1521
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Basic.lean
1522
+ theorems:
1523
+ - Polynomial.exists_irreducible_of_natDegree_pos
1524
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/Lebesgue.lean
1525
+ theorems:
1526
+ - MeasureTheory.Measure.mutuallySingular_singularPart
1527
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Images.lean
1528
+ theorems:
1529
+ - "CategoryTheory.Limits.image.map_\u03B9"
1530
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gamma/Basic.lean
1531
+ theorems:
1532
+ - Complex.Gamma_eq_GammaAux
1533
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/CauchyIntegral.lean
1534
+ theorems:
1535
+ - Complex.circleIntegral_div_sub_of_differentiable_on_off_countable
1536
+ - Complex.integral_boundary_rect_of_hasFDerivAt_real_off_countable
1537
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Basic.lean
1538
+ theorems:
1539
+ - LieHom.ext_iff
1540
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/PiTensorProduct.lean
1541
+ theorems:
1542
+ - PiTensorProduct.tprodCoeff_eq_smul_tprod
1543
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Tilted.lean
1544
+ theorems:
1545
+ - MeasureTheory.tilted_neg_same
1546
+ - path: .lake/packages/mathlib/Mathlib/Data/Holor.lean
1547
+ theorems:
1548
+ - Holor.cprankMax_upper_bound
1549
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Degree/Definitions.lean
1550
+ theorems:
1551
+ - Polynomial.degree_X_sub_C
1552
+ - Polynomial.leadingCoeff_quadratic
1553
+ - Polynomial.X_pow_add_C_ne_one
1554
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/LHopital.lean
1555
+ theorems:
1556
+ - deriv.lhopital_zero_atBot_on_Iio
1557
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Stieltjes.lean
1558
+ theorems:
1559
+ - StieltjesFunction.iInf_Ioi_eq
1560
+ - StieltjesFunction.measure_singleton
1561
+ - StieltjesFunction.measure_Ioc
1562
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Pointwise.lean
1563
+ theorems:
1564
+ - IsCompact.closedBall_mul
1565
+ - div_ball_one
1566
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Arithmetic.lean
1567
+ theorems:
1568
+ - List.aemeasurable_prod
1569
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/Prod.lean
1570
+ theorems:
1571
+ - RingHom.prod_unique
1572
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Archimedean.lean
1573
+ theorems:
1574
+ - existsUnique_sub_zsmul_mem_Ico
1575
+ - path: .lake/packages/mathlib/Mathlib/Logic/Unique.lean
1576
+ theorems:
1577
+ - unique_subtype_iff_exists_unique
1578
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/SpecificGroups/Cyclic.lean
1579
+ theorems:
1580
+ - IsCyclic.ext
1581
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/QuadraticForm/Basic.lean
1582
+ theorems:
1583
+ - QuadraticForm.associated_left_inverse
1584
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/CompleteField.lean
1585
+ theorems:
1586
+ - LinearOrderedField.le_inducedMap_mul_self_of_mem_cutMap
1587
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/NonsingularInverse.lean
1588
+ theorems:
1589
+ - Matrix.nonsing_inv_mul_cancel_right
1590
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Prod/Basic.lean
1591
+ theorems:
1592
+ - MeasureTheory.Measure.measure_prod_null
1593
+ - MeasureTheory.Measure.prod_restrict
1594
+ - path: .lake/packages/mathlib/Mathlib/Computability/TMToPartrec.lean
1595
+ theorems:
1596
+ - Turing.PartrecToTM2.move_ok
1597
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/MappingCone.lean
1598
+ theorems:
1599
+ - CochainComplex.mappingCone.liftCochain_descCochain
1600
+ - CochainComplex.mappingCone.ext_to
1601
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/FiniteMeasure.lean
1602
+ theorems:
1603
+ - MeasureTheory.FiniteMeasure.eq_of_forall_apply_eq
1604
+ - path: .lake/packages/mathlib/Mathlib/Data/Analysis/Topology.lean
1605
+ theorems:
1606
+ - Ctop.ofEquiv_val
1607
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Modular.lean
1608
+ theorems:
1609
+ - ModularGroup.re_T_zpow_smul
1610
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Content.lean
1611
+ theorems:
1612
+ - Polynomial.primPart_mul
1613
+ - Polynomial.normUnit_content
1614
+ - path: .lake/packages/mathlib/Mathlib/Order/Sublattice.lean
1615
+ theorems:
1616
+ - Sublattice.map_symm_eq_iff_eq_map
1617
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/PiLp.lean
1618
+ theorems:
1619
+ - PiLp.norm_equiv_symm_const'
1620
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/MeasureSpaceDef.lean
1621
+ theorems:
1622
+ - MeasureTheory.measure_eq_trim
1623
+ - path: .lake/packages/mathlib/Mathlib/Probability/Process/Stopping.lean
1624
+ theorems:
1625
+ - MeasureTheory.IsStoppingTime.measurableSet_lt
1626
+ - MeasureTheory.stronglyMeasurable_stoppedValue_of_le
1627
+ - path: .lake/packages/std/Std/Data/Int/Order.lean
1628
+ theorems:
1629
+ - Int.natAbs_add_le
1630
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Finite/Trace.lean
1631
+ theorems:
1632
+ - FiniteField.trace_to_zmod_nondegenerate
1633
+ - path: .lake/packages/mathlib/Mathlib/Probability/Independence/Kernel.lean
1634
+ theorems:
1635
+ - ProbabilityTheory.kernel.iIndepFun.indepFun_mul_left
1636
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ClassNumber/Finite.lean
1637
+ theorems:
1638
+ - ClassGroup.mkMMem_surjective
1639
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/Hom.lean
1640
+ theorems:
1641
+ - NeZero.of_map
1642
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Quotient.lean
1643
+ theorems:
1644
+ - Submodule.unique_quotient_iff_eq_top
1645
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/NNReal.lean
1646
+ theorems:
1647
+ - NNReal.orderIsoRpow_symm_eq
1648
+ - ENNReal.top_rpow_of_pos
1649
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Unoriented/RightAngle.lean
1650
+ theorems:
1651
+ - InnerProductGeometry.tan_angle_add_mul_norm_of_inner_eq_zero
1652
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Factors.lean
1653
+ theorems:
1654
+ - Equiv.Perm.cycleFactorsFinset_injective
1655
+ - Equiv.Perm.IsCycle.cycleOf
1656
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Conjugation.lean
1657
+ theorems:
1658
+ - CliffordAlgebra.evenOdd_comap_reverse
1659
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Spec.lean
1660
+ theorems:
1661
+ - AlgebraicGeometry.Spec.sheafedSpaceMap_comp
1662
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/PartENat.lean
1663
+ theorems:
1664
+ - PartENat.withTopEquiv_ofNat
1665
+ - PartENat.get_le_get
1666
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LSeries/Convergence.lean
1667
+ theorems:
1668
+ - LSeries.abscissaOfAbsConv_le_of_forall_lt_LSeriesSummable'
1669
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Order/Lemmas.lean
1670
+ theorems:
1671
+ - Nat.dvd_right_iff_eq
1672
+ - Nat.div_eq_zero_iff
1673
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Side.lean
1674
+ theorems:
1675
+ - AffineSubspace.sSameSide_iff_exists_left
1676
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Angle.lean
1677
+ theorems:
1678
+ - Real.Angle.cos_toReal
1679
+ - path: .lake/packages/mathlib/Mathlib/Data/Erased.lean
1680
+ theorems:
1681
+ - Erased.out_mk
1682
+ - path: .lake/packages/mathlib/Mathlib/Topology/EMetricSpace/Lipschitz.lean
1683
+ theorems:
1684
+ - continuousOn_prod_of_subset_closure_continuousOn_lipschitzOnWith
1685
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/CauSeq/BigOperators.lean
1686
+ theorems:
1687
+ - IsCauSeq.of_abv_le
1688
+ - IsCauSeq.series_ratio_test
1689
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Functor/FullyFaithful.lean
1690
+ theorems:
1691
+ - CategoryTheory.preimage_comp
1692
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Comp.lean
1693
+ theorems:
1694
+ - HasDerivAt.iterate
1695
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Quandle.lean
1696
+ theorems:
1697
+ - Rack.self_distrib_inv
1698
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Algebra/Field/CharP.lean
1699
+ theorems:
1700
+ - FirstOrder.Field.realize_eqZero
1701
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Cyclotomic/Basic.lean
1702
+ theorems:
1703
+ - Polynomial.cyclotomic_coeff_zero
1704
+ - path: .lake/packages/mathlib/Mathlib/Analysis/ODE/Gronwall.lean
1705
+ theorems:
1706
+ - le_gronwallBound_of_liminf_deriv_right_le
1707
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Exp.lean
1708
+ theorems:
1709
+ - Real.comap_exp_nhds_zero
1710
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/PrimeSpectrum/Basic.lean
1711
+ theorems:
1712
+ - PrimeSpectrum.basicOpen_mul_le_left
1713
+ - PrimeSpectrum.vanishingIdeal_strict_anti_mono_iff
1714
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Transvection.lean
1715
+ theorems:
1716
+ - Matrix.det_transvection_of_ne
1717
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Basic.lean
1718
+ theorems:
1719
+ - Matrix.comp_equiv_symm_dotProduct
1720
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Dioph.lean
1721
+ theorems:
1722
+ - Dioph.mod_dioph
1723
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Lattice.lean
1724
+ theorems:
1725
+ - Set.iInter_eq_empty_iff
1726
+ - Set.biInter_iUnion
1727
+ - Set.iUnion_setOf
1728
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Nullstellensatz.lean
1729
+ theorems:
1730
+ - MvPolynomial.vanishingIdeal_pointToPoint
1731
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/IntegralCurve.lean
1732
+ theorems:
1733
+ - isIntegralCurve_iff_isIntegralCurveAt
1734
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Lagrange.lean
1735
+ theorems:
1736
+ - Lagrange.natDegree_basisDivisor_self
1737
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Algebra/Ring/Basic.lean
1738
+ theorems:
1739
+ - FirstOrder.Ring.realize_one
1740
+ - path: .lake/packages/std/Std/Data/Int/DivMod.lean
1741
+ theorems:
1742
+ - Int.negSucc_emod
1743
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/SelmerGroup.lean
1744
+ theorems:
1745
+ - IsDedekindDomain.HeightOneSpectrum.valuation_of_unit_eq
1746
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Fourier/FourierTransformDeriv.lean
1747
+ theorems:
1748
+ - Real.hasDerivAt_fourierChar
1749
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/LocallyFinite.lean
1750
+ theorems:
1751
+ - Multiset.Ico_filter_lt_of_le_right
1752
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/InfiniteSum/Basic.lean
1753
+ theorems:
1754
+ - tsum_subtype_eq_of_support_subset
1755
+ - hasSum_extend_zero
1756
+ - path: .lake/packages/mathlib/Mathlib/Topology/Homotopy/Product.lean
1757
+ theorems:
1758
+ - Path.Homotopic.prod_projLeft_projRight
1759
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Additive.lean
1760
+ theorems:
1761
+ - HomologicalComplex.singleMapHomologicalComplex_hom_app_ne
1762
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Units.lean
1763
+ theorems:
1764
+ - eq_divp_iff_mul_eq
1765
+ - IsUnit.div_left_inj
1766
+ - path: .lake/packages/std/Std/Data/List/Lemmas.lean
1767
+ theorems:
1768
+ - List.drop_take
1769
+ - List.diff_cons
1770
+ - List.Sublist.eq_of_length
1771
+ - List.range'_eq_nil
1772
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Order/Basic.lean
1773
+ theorems:
1774
+ - Nat.findGreatest_spec
1775
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/ExteriorAlgebra/Basic.lean
1776
+ theorems:
1777
+ - "ExteriorAlgebra.\u03B9Multi_span_fixedDegree"
1778
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CrossProduct.lean
1779
+ theorems:
1780
+ - triple_product_eq_det
1781
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/ZeroMorphisms.lean
1782
+ theorems:
1783
+ - CategoryTheory.Limits.isIso_of_source_target_iso_zero
1784
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Divisibility/Units.lean
1785
+ theorems:
1786
+ - isRelPrime_mul_unit_left_right
1787
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Analytic/Basic.lean
1788
+ theorems:
1789
+ - HasFPowerSeriesOnBall.eventually_eq_zero
1790
+ - HasFPowerSeriesOnBall.tendstoLocallyUniformlyOn'
1791
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/FreeAbelianGroup.lean
1792
+ theorems:
1793
+ - FreeAbelianGroup.lift.map_hom
1794
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Presheaf.lean
1795
+ theorems:
1796
+ - CategoryTheory.final_toCostructuredArrow_comp_pre
1797
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Young/SemistandardTableau.lean
1798
+ theorems:
1799
+ - SemistandardYoungTableau.ext
1800
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Pow.lean
1801
+ theorems:
1802
+ - Nat.one_lt_two_pow'
1803
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/FilteredColimitCommutesFiniteLimit.lean
1804
+ theorems:
1805
+ - "CategoryTheory.Limits.\u03B9_colimitLimitIso_limit_\u03C0"
1806
+ - path: .lake/packages/mathlib/Mathlib/Data/Stream/Init.lean
1807
+ theorems:
1808
+ - Stream'.mem_interleave_left
1809
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/ModEq.lean
1810
+ theorems:
1811
+ - Nat.odd_mul_odd
1812
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorial/Basic.lean
1813
+ theorems:
1814
+ - Nat.factorial_mul_ascFactorial
1815
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/HasLimits.lean
1816
+ theorems:
1817
+ - CategoryTheory.Limits.colimit.pre_post
1818
+ - CategoryTheory.Limits.colimit.post_post
1819
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/Different.lean
1820
+ theorems:
1821
+ - Submodule.traceDual_top'
1822
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/MonotoneConvergence.lean
1823
+ theorems:
1824
+ - tendsto_atTop_ciInf
1825
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/SumFourSquares.lean
1826
+ theorems:
1827
+ - Int.exists_sq_add_sq_add_one_eq_mul
1828
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Padics/RingHoms.lean
1829
+ theorems:
1830
+ - PadicInt.ext_of_toZModPow
1831
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Noetherian.lean
1832
+ theorems:
1833
+ - isNoetherian_iff_wellFounded
1834
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Cyclotomic/Eval.lean
1835
+ theorems:
1836
+ - Polynomial.cyclotomic_pos_and_nonneg
1837
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gamma/Deligne.lean
1838
+ theorems:
1839
+ - "Complex.Gamma\u211D_mul_Gamma\u211D_add_one"
1840
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Pullbacks.lean
1841
+ theorems:
1842
+ - AlgebraicGeometry.Scheme.Pullback.cocycle_snd_fst_snd
1843
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Isometry.lean
1844
+ theorems:
1845
+ - IsometryEquiv.preimage_sphere
1846
+ - IsometryEquiv.completeSpace_iff
1847
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/MeasureCompProd.lean
1848
+ theorems:
1849
+ - MeasureTheory.Measure.snd_dirac_unit_compProd_const
1850
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/Pow.lean
1851
+ theorems:
1852
+ - Mathlib.Meta.NormNum.isNat_zpow_pos
1853
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Derivative.lean
1854
+ theorems:
1855
+ - Polynomial.iterate_derivative_X_pow_eq_smul
1856
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FinitePresentation.lean
1857
+ theorems:
1858
+ - Algebra.FiniteType.of_finitePresentation
1859
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/ComposableArrows.lean
1860
+ theorems:
1861
+ - CategoryTheory.ComposableArrows.hom_ext_succ
1862
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/Units/Basic.lean
1863
+ theorems:
1864
+ - mul_div_cancel_of_imp
1865
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Basic.lean
1866
+ theorems:
1867
+ - LinearEquiv.ofBijective_symm_apply_apply
1868
+ - Submodule.map_comap_eq
1869
+ - path: .lake/packages/mathlib/Mathlib/Algebra/CubicDiscriminant.lean
1870
+ theorems:
1871
+ - Cubic.natDegree_of_b_eq_zero
1872
+ - path: .lake/packages/mathlib/Mathlib/Init/Data/Nat/Lemmas.lean
1873
+ theorems:
1874
+ - Nat.bit1_lt_bit0
1875
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteSublattice.lean
1876
+ theorems:
1877
+ - CompleteSublattice.coe_sInf'
1878
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/ConcreteCategory.lean
1879
+ theorems:
1880
+ - CategoryTheory.Limits.Concrete.pullbackMk_surjective
1881
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Star/Multiplier.lean
1882
+ theorems:
1883
+ - DoubleCentralizer.norm_fst
1884
+ - DoubleCentralizer.norm_fst_eq_snd
1885
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/MaxPowDiv.lean
1886
+ theorems:
1887
+ - Nat.maxPowDiv.go_eq
1888
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Basic.lean
1889
+ theorems:
1890
+ - Equiv.mul_swap_eq_swap_mul
1891
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/UniformConvergence.lean
1892
+ theorems:
1893
+ - tendstoLocallyUniformlyOn_univ
1894
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/SmoothNumbers.lean
1895
+ theorems:
1896
+ - Nat.mem_smoothNumbers'
1897
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/Result.lean
1898
+ theorems:
1899
+ - Mathlib.Meta.NormNum.IsRat.to_isNat
1900
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Associated.lean
1901
+ theorems:
1902
+ - Associates.prod_mk
1903
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Sites/IsSheafFor.lean
1904
+ theorems:
1905
+ - CategoryTheory.Presieve.isSheafFor_arrows_iff_pullbacks
1906
+ - CategoryTheory.Presieve.FamilyOfElements.Compatible.pullback
1907
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/AdjMatrix.lean
1908
+ theorems:
1909
+ - SimpleGraph.adjMatrix_pow_apply_eq_card_walk
1910
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Continuity.lean
1911
+ theorems:
1912
+ - continuousAt_const_cpow
1913
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/Triangulated.lean
1914
+ theorems:
1915
+ - "CochainComplex.mappingConeCompTriangleh_comm\u2081"
1916
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Tropical/BigOperators.lean
1917
+ theorems:
1918
+ - List.trop_sum
1919
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Seminorm.lean
1920
+ theorems:
1921
+ - Seminorm.preimage_metric_ball
1922
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Minpoly/IsIntegrallyClosed.lean
1923
+ theorems:
1924
+ - Algebra.adjoin.powerBasis'_gen
1925
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/Compression/UV.lean
1926
+ theorems:
1927
+ - UV.shadow_compression_subset_compression_shadow
1928
+ - UV.compression_self
1929
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Zsqrtd/Basic.lean
1930
+ theorems:
1931
+ - Zsqrtd.nonnegg_comm
1932
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Cast/Order.lean
1933
+ theorems:
1934
+ - Rat.cast_abs
1935
+ - Rat.cast_pos_of_pos
1936
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/FiniteDimension.lean
1937
+ theorems:
1938
+ - Basis.opNorm_le
1939
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/RadonNikodym.lean
1940
+ theorems:
1941
+ - MeasureTheory.Measure.rnDeriv_eq_zero_of_mutuallySingular
1942
+ - path: .lake/packages/mathlib/Mathlib/Data/IsROrC/Basic.lean
1943
+ theorems:
1944
+ - IsROrC.re_eq_add_conj
1945
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/DoubleCoset.lean
1946
+ theorems:
1947
+ - Doset.eq
1948
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dimension/Free.lean
1949
+ theorems:
1950
+ - nonempty_linearEquiv_of_lift_rank_eq
1951
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Category/Basic.lean
1952
+ theorems:
1953
+ - CategoryTheory.whisker_eq
1954
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Submodule/LinearMap.lean
1955
+ theorems:
1956
+ - Submodule.subtype_comp_inclusion
1957
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Operations.lean
1958
+ theorems:
1959
+ - Submodule.le_one_toAddSubmonoid
1960
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Dilation.lean
1961
+ theorems:
1962
+ - Dilation.ediam_image
1963
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/StronglyMeasurable/Basic.lean
1964
+ theorems:
1965
+ - Measurable.stronglyMeasurable
1966
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dimension/Finite.lean
1967
+ theorems:
1968
+ - CompleteLattice.Independent.subtype_ne_bot_le_rank
1969
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Box/Basic.lean
1970
+ theorems:
1971
+ - BoxIntegral.Box.mk'_eq_coe
1972
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/Semiconj.lean
1973
+ theorems:
1974
+ - SemiconjBy.sub_right
1975
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/DivergenceTheorem.lean
1976
+ theorems:
1977
+ - MeasureTheory.integral_divergence_of_hasFDerivWithinAt_off_countable
1978
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector/Basic.lean
1979
+ theorems:
1980
+ - Vector.get_tail
1981
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/EllipticCurve/Group.lean
1982
+ theorems:
1983
+ - WeierstrassCurve.Affine.CoordinateRing.exists_smul_basis_eq
1984
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/Projections.lean
1985
+ theorems:
1986
+ - AlgebraicTopology.DoldKan.Q_idem
1987
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Partition/Split.lean
1988
+ theorems:
1989
+ - BoxIntegral.Prepartition.not_disjoint_imp_le_of_subset_of_mem_splitMany
1990
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Category/GroupCat/FilteredColimits.lean
1991
+ theorems:
1992
+ - GroupCat.FilteredColimits.colimitInvAux_eq_of_rel
1993
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteLattice.lean
1994
+ theorems:
1995
+ - iSup_option_elim
1996
+ - "iInf\u2082_comm"
1997
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Type.lean
1998
+ theorems:
1999
+ - Equiv.Perm.cycleType_eq'
2000
+ - Equiv.Perm.IsThreeCycle.isCycle
2001
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Nilpotent.lean
2002
+ theorems:
2003
+ - Polynomial.isNilpotent_X_mul_iff
2004
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/GroupAction/Hom.lean
2005
+ theorems:
2006
+ - MulSemiringActionHom.id_comp
2007
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PrincipalIdealDomain.lean
2008
+ theorems:
2009
+ - IsBezout.gcd_dvd_right
2010
+ - path: .lake/packages/mathlib/Mathlib/Topology/DenseEmbedding.lean
2011
+ theorems:
2012
+ - DenseInducing.interior_compact_eq_empty
2013
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Field/Basic.lean
2014
+ theorems:
2015
+ - Commute.inv_sub_inv
2016
+ - one_div_mul_add_mul_one_div_eq_one_div_add_one_div
2017
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/MFDeriv/Basic.lean
2018
+ theorems:
2019
+ - mfderiv_congr_point
2020
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/PartitionOfUnity.lean
2021
+ theorems:
2022
+ - EMetric.exists_continuous_real_forall_closedBall_subset
2023
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Image.lean
2024
+ theorems:
2025
+ - Finset.map_subset_map
2026
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Infsep.lean
2027
+ theorems:
2028
+ - Set.infsep_pair_eq_toReal
2029
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Sites/Sheaf.lean
2030
+ theorems:
2031
+ - CategoryTheory.Presheaf.isSheaf_iff_isSheaf_comp
2032
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Basic.lean
2033
+ theorems:
2034
+ - Complex.normSq_sub
2035
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Discriminant.lean
2036
+ theorems:
2037
+ - Algebra.discr_not_zero_of_basis
2038
+ - Algebra.discr_mul_isIntegral_mem_adjoin
2039
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/SnakeLemma.lean
2040
+ theorems:
2041
+ - "CategoryTheory.ShortComplex.SnakeInput.naturality_\u03B4"
2042
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/MemPartition.lean
2043
+ theorems:
2044
+ - memPartitionSet_eq_iff
2045
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Module/FiniteDimension.lean
2046
+ theorems:
2047
+ - LinearMap.continuous_of_isClosed_ker
2048
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/PrimeFin.lean
2049
+ theorems:
2050
+ - Nat.Prime.primeFactors
2051
+ - path: .lake/packages/mathlib/Mathlib/Order/SymmDiff.lean
2052
+ theorems:
2053
+ - bihimp_of_le
2054
+ - Disjoint.symmDiff_eq_sup
2055
+ - symmDiff_left_comm
2056
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCofiber.lean
2057
+ theorems:
2058
+ - HomologicalComplex.homotopyCofiber.sndX_inrX
2059
+ - "HomologicalComplex.cylinder.\u03B9\u2081_\u03C0"
2060
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Ordinal.lean
2061
+ theorems:
2062
+ - Cardinal.mk_finsupp_of_infinite
2063
+ - path: .lake/packages/mathlib/Mathlib/Topology/Basic.lean
2064
+ theorems:
2065
+ - nhds_basis_opens'
2066
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/SeparableDegree.lean
2067
+ theorems:
2068
+ - Polynomial.IsSeparableContraction.natSepDegree_eq
2069
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Basic.lean
2070
+ theorems:
2071
+ - "CliffordAlgebra.lift_comp_\u03B9"
2072
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/DirectLimit.lean
2073
+ theorems:
2074
+ - FirstOrder.Language.DirectLimit.equiv_iff
2075
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Comma/Arrow.lean
2076
+ theorems:
2077
+ - CategoryTheory.Arrow.isIso_of_isIso_left_of_isIso_right
2078
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/SemidirectProduct.lean
2079
+ theorems:
2080
+ - SemidirectProduct.lift_inr
2081
+ - path: .lake/packages/mathlib/Mathlib/Topology/SeparatedMap.lean
2082
+ theorems:
2083
+ - isLocallyInjective_iff_isOpen_diagonal
2084
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Choose/Multinomial.lean
2085
+ theorems:
2086
+ - Nat.binomial_eq
2087
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/CondDistrib.lean
2088
+ theorems:
2089
+ - ProbabilityTheory.condDistrib_apply_of_ne_zero
2090
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Disintegration/Density.lean
2091
+ theorems:
2092
+ - ProbabilityTheory.kernel.set_lintegral_density
2093
+ - ProbabilityTheory.kernel.density_mono_set
2094
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Fintype.lean
2095
+ theorems:
2096
+ - Multiset.toEmbedding_coeEquiv_trans
2097
+ - path: .lake/packages/mathlib/Mathlib/Tactic/PushNeg.lean
2098
+ theorems:
2099
+ - Mathlib.Tactic.PushNeg.not_nonempty_eq
2100
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/NAry.lean
2101
+ theorems:
2102
+ - "Finset.image_image\u2082_distrib"
2103
+ - "Finset.forall_image\u2082_iff"
2104
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Opposites.lean
2105
+ theorems:
2106
+ - CategoryTheory.Limits.PullbackCone.op_inl
2107
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Killing.lean
2108
+ theorems:
2109
+ - LieIdeal.coe_killingCompl_top
2110
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Colex.lean
2111
+ theorems:
2112
+ - Finset.Colex.toColex_sdiff_lt_toColex_sdiff'
2113
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Pointwise.lean
2114
+ theorems:
2115
+ - closedBall_add_closedBall
2116
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Composition.lean
2117
+ theorems:
2118
+ - CompositionAsSet.boundary_length
2119
+ - path: .lake/packages/mathlib/Mathlib/Tactic/LinearCombination.lean
2120
+ theorems:
2121
+ - Mathlib.Tactic.LinearCombination.eq_of_add_pow
2122
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/ToNat.lean
2123
+ theorems:
2124
+ - Cardinal.mk_toNat_of_infinite
2125
+ - path: .lake/packages/std/Std/Data/RBMap/WF.lean
2126
+ theorems:
2127
+ - Std.RBNode.balance2_eq
2128
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/SetIntegral.lean
2129
+ theorems:
2130
+ - "integral_withDensity_eq_integral_smul\u2080"
2131
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Multiset/Basic.lean
2132
+ theorems:
2133
+ - Multiset.prod_induction_nonempty
2134
+ - Multiset.sum_int_mod
2135
+ - Multiset.one_le_prod_of_one_le
2136
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/JacobsonIdeal.lean
2137
+ theorems:
2138
+ - Ideal.eq_jacobson_iff_sInf_maximal
2139
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Star.lean
2140
+ theorems:
2141
+ - NNRat.addSubmonoid_closure_range_pow
2142
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactness/Lindelof.lean
2143
+ theorems:
2144
+ - lindelofSpace_of_countable_subfamily_closed
2145
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Fold.lean
2146
+ theorems:
2147
+ - Finset.fold_union_inter
2148
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/FiniteDimensional.lean
2149
+ theorems:
2150
+ - LinearMap.finrank_range_add_finrank_ker
2151
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Additive/PluenneckeRuzsa.lean
2152
+ theorems:
2153
+ - Finset.card_mul_mul_le_card_div_mul_card_div
2154
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Semantics.lean
2155
+ theorems:
2156
+ - FirstOrder.Language.BoundedFormula.realize_exs
2157
+ - path: .lake/packages/mathlib/Mathlib/Algebra/EuclideanDomain/Basic.lean
2158
+ theorems:
2159
+ - EuclideanDomain.eq_div_of_mul_eq_right
2160
+ - path: .lake/packages/mathlib/Mathlib/Computability/DFA.lean
2161
+ theorems:
2162
+ - DFA.pumping_lemma
2163
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Localization/Equivalence.lean
2164
+ theorems:
2165
+ - CategoryTheory.Functor.IsLocalization.of_equivalence_source
2166
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Pointwise.lean
2167
+ theorems:
2168
+ - Real.sSup_smul_of_nonneg
2169
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Basic.lean
2170
+ theorems:
2171
+ - Ordinal.lift_down'
2172
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Inverse.lean
2173
+ theorems:
2174
+ - Real.arccos_of_le_neg_one
2175
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/Mul.lean
2176
+ theorems:
2177
+ - HasFDerivWithinAt.mul_const
2178
+ - hasStrictFDerivAt_finset_prod
2179
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/DominatedConvergence.lean
2180
+ theorems:
2181
+ - MeasureTheory.hasSum_integral_of_summable_integral_norm
2182
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Jacobson.lean
2183
+ theorems:
2184
+ - Ideal.Polynomial.isJacobson_polynomial_of_isJacobson
2185
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/BumpFunction/Normed.lean
2186
+ theorems:
2187
+ - ContDiffBump.measure_closedBall_div_le_integral
2188
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Asymptotics.lean
2189
+ theorems:
2190
+ - Complex.isTheta_exp_arg_mul_im
2191
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Torsion.lean
2192
+ theorems:
2193
+ - Module.isTorsionBySet_singleton_iff
2194
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/Abs.lean
2195
+ theorems:
2196
+ - mabs_div_comm
2197
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Defs.lean
2198
+ theorems:
2199
+ - Finsupp.update_self
2200
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/Basic.lean
2201
+ theorems:
2202
+ - hasFDerivWithinAt_diff_singleton
2203
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LegendreSymbol/JacobiSymbol.lean
2204
+ theorems:
2205
+ - jacobiSym.eq_zero_iff_not_coprime
2206
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Exponential.lean
2207
+ theorems:
2208
+ - Ordinal.opow_dvd_opow
2209
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Trace.lean
2210
+ theorems:
2211
+ - Algebra.trace_eq_zero_of_not_exists_basis
2212
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/lpSpace.lean
2213
+ theorems:
2214
+ - LipschitzWith.uniformly_bounded
2215
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Fib/Basic.lean
2216
+ theorems:
2217
+ - Nat.fib_two_mul_add_two
2218
+ - path: .lake/packages/std/Std/Data/Nat/Gcd.lean
2219
+ theorems:
2220
+ - Nat.gcd_mul_lcm
2221
+ - Nat.lcm_comm
2222
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/InverseFunctionTheorem/FDeriv.lean
2223
+ theorems:
2224
+ - HasStrictFDerivAt.to_localInverse
2225
+ - path: .lake/packages/mathlib/Mathlib/Order/Monotone/Union.lean
2226
+ theorems:
2227
+ - StrictMonoOn.union
2228
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Flat/Basic.lean
2229
+ theorems:
2230
+ - Module.Flat.of_retract
2231
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Tower.lean
2232
+ theorems:
2233
+ - IsScalarTower.algebraMap_apply
2234
+ - path: .lake/packages/mathlib/Mathlib/Topology/PartialHomeomorph.lean
2235
+ theorems:
2236
+ - PartialHomeomorph.prod_eq_prod_of_nonempty
2237
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/ContMDiff/Basic.lean
2238
+ theorems:
2239
+ - ContMDiff.comp
2240
+ - path: .lake/packages/mathlib/Mathlib/Data/Sign.lean
2241
+ theorems:
2242
+ - SignType.nonpos_iff_ne_one
2243
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Subset.lean
2244
+ theorems:
2245
+ - Set.image_val_sUnion
2246
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Basis.lean
2247
+ theorems:
2248
+ - Basis.ext'
2249
+ - Basis.repr_self_apply
2250
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/PurelyInseparable.lean
2251
+ theorems:
2252
+ - isPurelyInseparable_of_finSepDegree_eq_one
2253
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Join.lean
2254
+ theorems:
2255
+ - List.length_join
2256
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Rank.lean
2257
+ theorems:
2258
+ - Matrix.rank_diagonal
2259
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Schnirelmann.lean
2260
+ theorems:
2261
+ - exists_of_schnirelmannDensity_eq_zero
2262
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/IntegralClosure.lean
2263
+ theorems:
2264
+ - IsIntegral.fg_adjoin_singleton
2265
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Sigma.lean
2266
+ theorems:
2267
+ - Finset.card_sigmaLift
2268
+ - path: .lake/packages/mathlib/Mathlib/Data/Option/NAry.lean
2269
+ theorems:
2270
+ - "Option.map_map\u2082"
2271
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ConditionalExpectation/AEMeasurable.lean
2272
+ theorems:
2273
+ - MeasureTheory.AEStronglyMeasurable'.continuous_comp
2274
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/QuotientPi.lean
2275
+ theorems:
2276
+ - Submodule.piQuotientLift_single
2277
+ - path: .lake/packages/mathlib/Mathlib/Order/Monotone/Basic.lean
2278
+ theorems:
2279
+ - monotone_dual_iff
2280
+ - path: .lake/packages/mathlib/Mathlib/Order/PropInstances.lean
2281
+ theorems:
2282
+ - Pi.isCompl_iff
2283
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Basic.lean
2284
+ theorems:
2285
+ - Set.mem_dite_empty_right
2286
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Finiteness.lean
2287
+ theorems:
2288
+ - Submodule.fg_unit
2289
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Lipschitz.lean
2290
+ theorems:
2291
+ - lipschitzWith_iff_dist_le_mul
2292
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Module.lean
2293
+ theorems:
2294
+ - rank_real_of_complex
2295
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Defs.lean
2296
+ theorems:
2297
+ - Rat.mul_add
2298
+ - path: .lake/packages/mathlib/Mathlib/Topology/LocallyFinite.lean
2299
+ theorems:
2300
+ - LocallyFinite.closure
2301
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monoid/MinMax.lean
2302
+ theorems:
2303
+ - fn_min_mul_fn_max
2304
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Div.lean
2305
+ theorems:
2306
+ - Int.ofNat_add_negSucc_of_ge
2307
+ - path: .lake/packages/mathlib/Mathlib/Data/List/NodupEquivFin.lean
2308
+ theorems:
2309
+ - List.sublist_of_orderEmbedding_get?_eq
2310
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ContinuousMapDense.lean
2311
+ theorems:
2312
+ - MeasureTheory.Lp.boundedContinuousFunction_dense
2313
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/Functor.lean
2314
+ theorems:
2315
+ - Functor.mapEquiv_refl
2316
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/LapMatrix.lean
2317
+ theorems:
2318
+ - SimpleGraph.lapMatrix_toLin'_apply_eq_zero_iff_forall_reachable
2319
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/DivMod.lean
2320
+ theorems:
2321
+ - Mathlib.Meta.NormNum.isInt_dvd_false
2322
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Order/LiminfLimsup.lean
2323
+ theorems:
2324
+ - iUnion_Ici_eq_Ioi_of_lt_of_tendsto
2325
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/DirichletCharacter/Basic.lean
2326
+ theorems:
2327
+ - DirichletCharacter.changeLevel_trans
2328
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ContinuedFractions/Computation/TerminatesIffRat.lean
2329
+ theorems:
2330
+ - GeneralizedContinuedFraction.exists_rat_eq_nth_numerator
2331
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/AddCircle.lean
2332
+ theorems:
2333
+ - AddCircle.norm_coe_eq_abs_iff
2334
+ - path: .lake/packages/std/Std/Data/AssocList.lean
2335
+ theorems:
2336
+ - Std.AssocList.contains_eq
2337
+ - path: .lake/packages/mathlib/Mathlib/Data/PFun.lean
2338
+ theorems:
2339
+ - PFun.coe_preimage
2340
+ - path: .lake/packages/mathlib/Mathlib/Data/PNat/Interval.lean
2341
+ theorems:
2342
+ - PNat.card_Ico
2343
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Choose/Cast.lean
2344
+ theorems:
2345
+ - Nat.cast_choose
2346
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Separable.lean
2347
+ theorems:
2348
+ - Polynomial.rootMultiplicity_le_one_of_separable
2349
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Tuple/Basic.lean
2350
+ theorems:
2351
+ - Fin.insertNth_apply_succAbove
2352
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Multilinear/Curry.lean
2353
+ theorems:
2354
+ - ContinuousMultilinearMap.uncurry0_curry0
2355
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/Lemmas.lean
2356
+ theorems:
2357
+ - exists_square_le'
2358
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Defs.lean
2359
+ theorems:
2360
+ - Nat.pred_sub
2361
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/TangentCone.lean
2362
+ theorems:
2363
+ - UniqueDiffWithinAt.prod
2364
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Field/Basic.lean
2365
+ theorems:
2366
+ - antilipschitzWith_mul_right
2367
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/FourFunctions.lean
2368
+ theorems:
2369
+ - collapse_modular
2370
+ - path: .lake/packages/mathlib/Mathlib/Init/Logic.lean
2371
+ theorems:
2372
+ - let_eq
2373
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/NoncommProd.lean
2374
+ theorems:
2375
+ - Multiset.noncommFoldr_eq_foldr
2376
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Composition.lean
2377
+ theorems:
2378
+ - ProbabilityTheory.kernel.snd_swapRight
2379
+ - path: .lake/packages/mathlib/Mathlib/Data/Seq/Seq.lean
2380
+ theorems:
2381
+ - Stream'.Seq.dropn_tail
2382
+ - path: .lake/packages/mathlib/Mathlib/Order/LocallyFinite.lean
2383
+ theorems:
2384
+ - Finset.map_subtype_embedding_Ici
2385
+ - path: .lake/packages/std/Std/Data/Int/Gcd.lean
2386
+ theorems:
2387
+ - Int.gcd_neg
2388
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/WithTop.lean
2389
+ theorems:
2390
+ - WithTop.distrib'
2391
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Kaehler.lean
2392
+ theorems:
2393
+ - Derivation.liftKaehlerDifferential_unique
2394
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Fubini.lean
2395
+ theorems:
2396
+ - "CategoryTheory.Limits.colimitFlipCompColimIsoColimitCompColim_\u03B9_\u03B9\
2397
+ _hom"
2398
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Covering/VitaliFamily.lean
2399
+ theorems:
2400
+ - VitaliFamily.tendsto_filterAt_iff
2401
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/Shatter.lean
2402
+ theorems:
2403
+ - Finset.shatters_empty
2404
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Equalizers.lean
2405
+ theorems:
2406
+ - "CategoryTheory.Limits.Cocone.ofCofork_\u03B9"
2407
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Pi.lean
2408
+ theorems:
2409
+ - Filter.pi_mem_pi
2410
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/HausdorffDistance.lean
2411
+ theorems:
2412
+ - Metric.hausdorffDist_triangle'
2413
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/ENNReal.lean
2414
+ theorems:
2415
+ - ENNReal.continuousOn_sub_left
2416
+ - path: .lake/packages/std/Std/Data/RBMap/Lemmas.lean
2417
+ theorems:
2418
+ - Std.RBNode.Stream.next?_toList
2419
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Star.lean
2420
+ theorems:
2421
+ - StarConvex.sub