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,2504 @@
1
+ name: leandojo-eval
2
+ num_files: 729
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: 1035
9
+ datasets:
10
+ - project: data/test/Mathlib
11
+ files:
12
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/Basic.lean
13
+ theorems:
14
+ - Set.div_subset_range
15
+ - Set.pow_mem_pow
16
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Real.lean
17
+ theorems:
18
+ - Complex.abs_cpow_eq_rpow_re_of_nonneg
19
+ - Real.rpow_div_two_eq_sqrt
20
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/AtTopBot.lean
21
+ theorems:
22
+ - Filter.exists_eventually_atTop
23
+ - Filter.tendsto_const_mul_atTop_of_pos
24
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/RightHomology.lean
25
+ theorems:
26
+ - CategoryTheory.ShortComplex.HasRightHomology.hasKernel
27
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Verschiebung.lean
28
+ theorems:
29
+ - WittVector.verschiebungFun_coeff
30
+ - path: .lake/packages/mathlib/Mathlib/Order/WellFounded.lean
31
+ theorems:
32
+ - WellFounded.eq_strictMono_iff_eq_range_aux
33
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/MinMax.lean
34
+ theorems:
35
+ - max_one_div_max_inv_one_eq_self
36
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Intervals.lean
37
+ theorems:
38
+ - List.Ico.filter_lt_of_succ_bot
39
+ - List.Ico.length
40
+ - path: .lake/packages/mathlib/Mathlib/Data/Seq/Computation.lean
41
+ theorems:
42
+ - Computation.results_of_terminates'
43
+ - path: .lake/packages/mathlib/Mathlib/Probability/ProbabilityMassFunction/Basic.lean
44
+ theorems:
45
+ - PMF.toMeasure_injective
46
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/SmoothTransition.lean
47
+ theorems:
48
+ - expNegInvGlue.hasDerivAt_polynomial_eval_inv_mul
49
+ - expNegInvGlue.pos_of_pos
50
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Game/PGame.lean
51
+ theorems:
52
+ - SetTheory.PGame.add_le_add_right'
53
+ - SetTheory.PGame.isOption_neg
54
+ - SetTheory.PGame.moveLeft_neg_symm
55
+ - SetTheory.PGame.bddAbove_range_of_small
56
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Range.lean
57
+ theorems:
58
+ - List.unzip_enum_eq_prod
59
+ - List.pairwise_lt_finRange
60
+ - List.chain'_range_succ
61
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Conjugation.lean
62
+ theorems:
63
+ - "CliffordAlgebra.\u03B9_range_map_reverse"
64
+ - CliffordAlgebra.submodule_comap_pow_reverse
65
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Order/Basic.lean
66
+ theorems:
67
+ - Nat.div_eq_self
68
+ - Nat.add_sub_one_le_mul
69
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactness/Compact.lean
70
+ theorems:
71
+ - IsCompact.nhdsSet_prod_eq_biSup
72
+ - IsCompact.union
73
+ - IsCompact.inter_right
74
+ - path: .lake/packages/std/Std/Data/List/Lemmas.lean
75
+ theorems:
76
+ - List.diff_cons_right
77
+ - List.length_insert_of_not_mem
78
+ - List.forall_mem_append
79
+ - List.map_subset
80
+ - List.take_take
81
+ - List.exists_of_replaceF
82
+ - List.drop_sizeOf_le
83
+ - List.suffix_of_suffix_length_le
84
+ - List.append_ne_nil_of_left_ne_nil
85
+ - List.findIdx?_eq_some_iff
86
+ - List.erase_of_not_mem
87
+ - List.drop_eq_nil_iff_le
88
+ - List.take_eq_take
89
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ADEInequality.lean
90
+ theorems:
91
+ - ADEInequality.admissible_of_one_lt_sumInv_aux'
92
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Unoriented/RightAngle.lean
93
+ theorems:
94
+ - InnerProductGeometry.norm_div_sin_angle_add_of_inner_eq_zero
95
+ - EuclideanGeometry.angle_eq_arcsin_of_angle_eq_pi_div_two
96
+ - InnerProductGeometry.angle_sub_eq_arccos_of_inner_eq_zero
97
+ - InnerProductGeometry.norm_div_sin_angle_sub_of_inner_eq_zero
98
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/SeparableDegree.lean
99
+ theorems:
100
+ - IntermediateField.finSepDegree_bot
101
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/FLT/Four.lean
102
+ theorems:
103
+ - Fermat42.exists_pos_odd_minimal
104
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Basis.lean
105
+ theorems:
106
+ - Matrix.StdBasisMatrix.mul_of_ne
107
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Block.lean
108
+ theorems:
109
+ - Matrix.toBlock_diagonal_disjoint
110
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/AlgebraMap.lean
111
+ theorems:
112
+ - Polynomial.aeval_apply_smul_mem_of_le_comap'
113
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Sub/Canonical.lean
114
+ theorems:
115
+ - tsub_tsub_eq_add_tsub_of_le
116
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Parity.lean
117
+ theorems:
118
+ - Nat.even_add
119
+ - Odd.ne_two_of_dvd_nat
120
+ - pow_eq_neg_one_iff
121
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Basic.lean
122
+ theorems:
123
+ - FirstOrder.Language.Embedding.coe_injective
124
+ - path: .lake/packages/mathlib/Mathlib/Topology/Covering.lean
125
+ theorems:
126
+ - isCoveringMap_iff_isCoveringMapOn_univ
127
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Cast/Lemmas.lean
128
+ theorems:
129
+ - Int.cast_nonneg
130
+ - Int.cast_le_neg_one_of_neg
131
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Subalgebra/Unitization.lean
132
+ theorems:
133
+ - NonUnitalSubalgebra.toSubalgebra_toNonUnitalSubalgebra
134
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/FieldDivision.lean
135
+ theorems:
136
+ - Polynomial.mod_eq_self_iff
137
+ - Polynomial.rootSet_prod
138
+ - Polynomial.monic_normalize
139
+ - Polynomial.one_lt_rootMultiplicity_iff_isRoot_iterate_derivative
140
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/WithDensity.lean
141
+ theorems:
142
+ - MeasureTheory.withDensity_eq_zero
143
+ - MeasureTheory.withDensity_add_measure
144
+ - MeasureTheory.restrict_withDensity
145
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/InfiniteSum/Constructions.lean
146
+ theorems:
147
+ - HasSum.sigma
148
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Lattice.lean
149
+ theorems:
150
+ - Set.biUnion_iUnion
151
+ - Set.iUnion_of_singleton_coe
152
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Fin.lean
153
+ theorems:
154
+ - Fin.cycleRange_apply
155
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Basic.lean
156
+ theorems:
157
+ - Set.ite_right
158
+ - Set.ite_compl
159
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/ZeroMorphisms.lean
160
+ theorems:
161
+ - CategoryTheory.Limits.HasZeroObject.zeroIsoIsTerminal_hom
162
+ - CategoryTheory.Limits.HasZeroObject.zeroIsoIsInitial_inv
163
+ - "CategoryTheory.Limits.image.\u03B9_zero'"
164
+ - "CategoryTheory.Limits.image_\u03B9_comp_eq_zero"
165
+ - CategoryTheory.Limits.HasZeroObject.zeroIsoTerminal_inv
166
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Seminorm.lean
167
+ theorems:
168
+ - Seminorm.smul_inf
169
+ - Seminorm.bddBelow_range_add
170
+ - Seminorm.comp_smul
171
+ - absorbent_ball_zero
172
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/Basic.lean
173
+ theorems:
174
+ - DifferentiableWithinAt.hasFDerivWithinAt
175
+ - fderivWithin_zero_of_isolated
176
+ - HasFDerivWithinAt.lim
177
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/ExponentialBounds.lean
178
+ theorems:
179
+ - Real.exp_neg_one_gt_d9
180
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Ordinal.lean
181
+ theorems:
182
+ - Cardinal.ciSup_mul_ciSup
183
+ - Cardinal.mk_cardinal
184
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Circumcenter.lean
185
+ theorems:
186
+ - Affine.Simplex.dist_circumcenter_sq_eq_sq_sub_circumradius
187
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Archimedean.lean
188
+ theorems:
189
+ - Filter.Tendsto.atBot_zsmul_const
190
+ - Filter.Tendsto.atTop_mul_const'
191
+ - Filter.Eventually.int_cast_atBot
192
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Eval.lean
193
+ theorems:
194
+ - "Polynomial.eval\u2082_monomial"
195
+ - Polynomial.coeff_comp_degree_mul_degree
196
+ - Polynomial.eval_ofNat
197
+ - path: .lake/packages/mathlib/Mathlib/Data/PNat/Factors.lean
198
+ theorems:
199
+ - PNat.factorMultiset_gcd
200
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/MeasurableSpace/Defs.lean
201
+ theorems:
202
+ - MeasurableSpace.generateFrom_insert_univ
203
+ - MeasurableSet.univ
204
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Kernels.lean
205
+ theorems:
206
+ - CategoryTheory.Limits.KernelFork.app_one
207
+ - "CategoryTheory.Limits.CokernelCofork.IsColimit.isIso_\u03C0"
208
+ - CategoryTheory.Limits.cokernel.map_desc
209
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Surreal/Dyadic.lean
210
+ theorems:
211
+ - Surreal.dyadicMap_apply_pow'
212
+ - path: .lake/packages/mathlib/Mathlib/Order/LocallyFinite.lean
213
+ theorems:
214
+ - Multiset.mem_Ioo
215
+ - path: .lake/packages/mathlib/Mathlib/Condensed/Equivalence.lean
216
+ theorems:
217
+ - Condensed.StoneanProfinite.coverDense.inducedTopology_Sieve_iff_EffectiveEpiFamily
218
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/lpSpace.lean
219
+ theorems:
220
+ - lp.norm_le_of_tendsto
221
+ - "Mem\u2113p.infty_mul"
222
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subgroup/Pointwise.lean
223
+ theorems:
224
+ - Subgroup.sup_eq_closure_mul
225
+ - Subgroup.conj_smul_le_of_le
226
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Ends/Defs.lean
227
+ theorems:
228
+ - SimpleGraph.ComponentCompl.exists_adj_boundary_pair
229
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/Zlattice.lean
230
+ theorems:
231
+ - Zspan.repr_floor_apply
232
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Symmetric.lean
233
+ theorems:
234
+ - LinearMap.IsSymmetric.conj_inner_sym
235
+ - path: .lake/packages/mathlib/Mathlib/Tactic/Abel.lean
236
+ theorems:
237
+ - Mathlib.Tactic.Abel.term_add_termg
238
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/SmoothManifoldWithCorners.lean
239
+ theorems:
240
+ - PartialHomeomorph.contDiffOn_extend_coord_change
241
+ - path: .lake/packages/mathlib/Mathlib/Data/Fintype/Basic.lean
242
+ theorems:
243
+ - Set.toFinset_image
244
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Basic.lean
245
+ theorems:
246
+ - Filter.frequently_and_distrib_left
247
+ - Filter.iInf_principal_finite
248
+ - Filter.iSup_join
249
+ - Filter.sup_join
250
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Basic.lean
251
+ theorems:
252
+ - Orientation.two_zsmul_oangle_smul_right_of_ne_zero
253
+ - Orientation.oangle_self
254
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Intervals.lean
255
+ theorems:
256
+ - Finset.prod_Ioc_mul_eq_prod_Icc
257
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactification/OnePoint.lean
258
+ theorems:
259
+ - OnePoint.ne_infty_iff_exists
260
+ - OnePoint.continuousAt_infty
261
+ - OnePoint.inseparable_iff
262
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/UniformConvergenceTopology.lean
263
+ theorems:
264
+ - UniformOnFun.topologicalSpace_eq
265
+ - UniformOnFun.tendsto_iff_tendstoUniformlyOn
266
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Determinant.lean
267
+ theorems:
268
+ - Matrix.det_eq_of_forall_col_eq_smul_add_pred
269
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Group/Basic.lean
270
+ theorems:
271
+ - QuotientGroup.isOpenMap_coe
272
+ - topologicalGroup_iInf
273
+ - tendsto_inv_nhdsWithin_Iic
274
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Preserves/Shapes/Biproducts.lean
275
+ theorems:
276
+ - CategoryTheory.Limits.biprod.mapBiprod_hom_desc
277
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pairwise/Basic.lean
278
+ theorems:
279
+ - Set.pairwise_insert
280
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Perfect.lean
281
+ theorems:
282
+ - Perfect.small_diam_aux
283
+ - path: .lake/packages/mathlib/Mathlib/Topology/PartialHomeomorph.lean
284
+ theorems:
285
+ - PartialHomeomorph.subtypeRestr_symm_eqOn
286
+ - PartialHomeomorph.ofSet_trans'
287
+ - PartialHomeomorph.IsImage.interior
288
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Basic.lean
289
+ theorems:
290
+ - inner_add_right
291
+ - Orthonormal.sum_inner_products_le
292
+ - path: .lake/packages/mathlib/Mathlib/Order/SuccPred/Limit.lean
293
+ theorems:
294
+ - Order.mem_range_pred_of_not_isPredLimit
295
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Module/Basic.lean
296
+ theorems:
297
+ - PolynomialModule.comp_smul
298
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Bitwise.lean
299
+ theorems:
300
+ - Int.bit_val
301
+ - Int.testBit_bit_zero
302
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Disintegration.lean
303
+ theorems:
304
+ - ProbabilityTheory.set_integral_condKernel_univ_right
305
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/RatFunc.lean
306
+ theorems:
307
+ - RatFunc.num_mul_eq_mul_denom_iff
308
+ - RatFunc.induction_on
309
+ - RatFunc.ofFractionRing_sub
310
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Card.lean
311
+ theorems:
312
+ - Finset.le_card_of_inj_on_range
313
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/LowerUpperTopology.lean
314
+ theorems:
315
+ - Topology.IsLower.isClosed_upperClosure
316
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/SmoothSeries.lean
317
+ theorems:
318
+ - differentiable_tsum
319
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Index.lean
320
+ theorems:
321
+ - Subgroup.relindex_self
322
+ - Subgroup.relindex_bot_right
323
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/UpperHalfPlane/Metric.lean
324
+ theorems:
325
+ - UpperHalfPlane.isometry_pos_mul
326
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/EraseLead.lean
327
+ theorems:
328
+ - Polynomial.eraseLead_C_mul_X_pow
329
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Asymptotics/SpecificAsymptotics.lean
330
+ theorems:
331
+ - Asymptotics.isLittleO_pow_pow_atTop_of_lt
332
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Basic.lean
333
+ theorems:
334
+ - Finsupp.equivMapDomain_trans
335
+ - path: .lake/packages/mathlib/Mathlib/Order/SupIndep.lean
336
+ theorems:
337
+ - Finset.supIndep_univ_bool
338
+ - CompleteLattice.independent_iff_supIndep_univ
339
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PowerBasis.lean
340
+ theorems:
341
+ - PowerBasis.natDegree_minpoly
342
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Subobject/Basic.lean
343
+ theorems:
344
+ - CategoryTheory.Subobject.ofMkLEMk_refl
345
+ - path: .lake/packages/mathlib/Mathlib/Order/SupClosed.lean
346
+ theorems:
347
+ - infClosed_empty
348
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/Hom/Defs.lean
349
+ theorems:
350
+ - RingHom.map_ite_one_zero
351
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Unoriented/Basic.lean
352
+ theorems:
353
+ - InnerProductGeometry.cos_angle_mul_norm_mul_norm
354
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/PiSystem.lean
355
+ theorems:
356
+ - generateFrom_piiUnionInter_le
357
+ - MeasurableSpace.DynkinSystem.ext
358
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Localization/InvSubmonoid.lean
359
+ theorems:
360
+ - IsLocalization.finiteType_of_monoid_fg
361
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/ContDiff/Bounds.lean
362
+ theorems:
363
+ - norm_iteratedFDeriv_clm_apply
364
+ - norm_iteratedFDeriv_clm_apply_const
365
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Adjugate.lean
366
+ theorems:
367
+ - Matrix.adjugate_diagonal
368
+ - Matrix.adjugate_transpose
369
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Teichmuller.lean
370
+ theorems:
371
+ - WittVector.map_teichmullerFun
372
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/Instances/Sphere.lean
373
+ theorems:
374
+ - contMDiff_coe_sphere
375
+ - stereographic_apply_neg
376
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/RightDerived.lean
377
+ theorems:
378
+ - CategoryTheory.InjectiveResolution.toRightDerivedZero'_comp_iCycles
379
+ - path: .lake/packages/mathlib/Mathlib/Data/QPF/Multivariate/Constructions/Fix.lean
380
+ theorems:
381
+ - MvQPF.wrepr_equiv
382
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Biproducts.lean
383
+ theorems:
384
+ - CategoryTheory.Limits.biprod.braid_natural
385
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/Ideal.lean
386
+ theorems:
387
+ - FractionalIdeal.coe_ideal_span_singleton_inv_mul
388
+ - multiplicity_normalizedFactorsEquivSpanNormalizedFactors_eq_multiplicity
389
+ - Ideal.prime_span_singleton_iff
390
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/StrictConvexSpace.lean
391
+ theorems:
392
+ - combo_mem_ball_of_ne
393
+ - path: .lake/packages/mathlib/Mathlib/Deprecated/Subgroup.lean
394
+ theorems:
395
+ - IsGroupHom.injective_of_trivial_ker
396
+ - Group.normalClosure_subset
397
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Lagrange.lean
398
+ theorems:
399
+ - Lagrange.eval_basis_self
400
+ - Lagrange.eval_nodal_at_node
401
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/NonUnitalSubalgebra.lean
402
+ theorems:
403
+ - NonUnitalAlgHom.coe_range
404
+ - path: .lake/packages/mathlib/Mathlib/Data/Fintype/Perm.lean
405
+ theorems:
406
+ - mem_perms_of_finset_iff
407
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subgroup/Basic.lean
408
+ theorems:
409
+ - Subgroup.eq_bot_of_subsingleton
410
+ - Subgroup.Normal.mem_comm
411
+ - CommGroup.center_eq_top
412
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Module/LocalizedModule.lean
413
+ theorems:
414
+ - IsLocalizedModule.iso_symm_apply_aux
415
+ - IsLocalizedModule.mk'_sub
416
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Coset.lean
417
+ theorems:
418
+ - Subgroup.card_comap_dvd_of_injective
419
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/NNReal.lean
420
+ theorems:
421
+ - NNReal.mul_eq_mul_left
422
+ - Real.toNNReal_pos
423
+ - NNReal.sSup_of_not_bddAbove
424
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/HomComplexShift.lean
425
+ theorems:
426
+ - CochainComplex.HomComplex.Cochain.leftUnshift_smul
427
+ - CochainComplex.HomComplex.Cochain.shift_v'
428
+ - path: .lake/packages/mathlib/Mathlib/Algebra/EuclideanDomain/Defs.lean
429
+ theorems:
430
+ - EuclideanDomain.lt_one
431
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Hall/Basic.lean
432
+ theorems:
433
+ - Fintype.all_card_le_filter_rel_iff_exists_injective
434
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Rayleigh.lean
435
+ theorems:
436
+ - IsSelfAdjoint.hasEigenvector_of_isMaxOn
437
+ - path: .lake/packages/mathlib/Mathlib/Order/Bounds/Basic.lean
438
+ theorems:
439
+ - IsGreatest.insert
440
+ - path: .lake/packages/mathlib/Mathlib/Tactic/Ring/RingNF.lean
441
+ theorems:
442
+ - Mathlib.Tactic.RingNF.mul_neg
443
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Basic.lean
444
+ theorems:
445
+ - Matrix.dotProduct_pUnit
446
+ - Matrix.mulVec_zero
447
+ - Matrix.mul_neg
448
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Sylow.lean
449
+ theorems:
450
+ - IsPGroup.sylow_mem_fixedPoints_iff
451
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/GramSchmidtOrtho.lean
452
+ theorems:
453
+ - gramSchmidt_orthonormal'
454
+ - gramSchmidt_triangular
455
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/OperatorNorm/Basic.lean
456
+ theorems:
457
+ - ContinuousLinearMap.le_of_opNorm_le_of_le
458
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/Basic.lean
459
+ theorems:
460
+ - "mul_eq_right\u2080"
461
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Multiset.lean
462
+ theorems:
463
+ - Finsupp.toMultiset_sup
464
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/RingDivision.lean
465
+ theorems:
466
+ - Polynomial.roots_C
467
+ - Polynomial.root_mul
468
+ - Polynomial.not_dvd_of_natDegree_lt
469
+ - Polynomial.zero_of_eval_zero
470
+ - Polynomial.roots_pow
471
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Images.lean
472
+ theorems:
473
+ - CategoryTheory.Limits.image.factorThruImage_preComp
474
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntegrableOn.lean
475
+ theorems:
476
+ - MeasureTheory.hasFiniteIntegral_restrict_of_bounded
477
+ - integrableOn_Ico_iff_integrableOn_Ioo
478
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ModularForms/CongruenceSubgroups.lean
479
+ theorems:
480
+ - Gamma_is_cong_sub
481
+ - Gamma1_in_Gamma0
482
+ - path: .lake/packages/mathlib/Mathlib/Order/Monotone/Odd.lean
483
+ theorems:
484
+ - monotone_of_odd_of_monotoneOn_nonneg
485
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Log.lean
486
+ theorems:
487
+ - Nat.log_le_clog
488
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Sigma.lean
489
+ theorems:
490
+ - Set.range_sigmaMk
491
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/Abs.lean
492
+ theorems:
493
+ - abs_lt_of_sq_lt_sq
494
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Field/Basic.lean
495
+ theorems:
496
+ - one_le_one_div
497
+ - inv_le_one
498
+ - inv_le_inv
499
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/OuterMeasure/Basic.lean
500
+ theorems:
501
+ - MeasureTheory.OuterMeasure.restrict_mono
502
+ - MeasureTheory.OuterMeasure.sUnion_null_iff
503
+ - MeasureTheory.OuterMeasure.isCaratheodory_iUnion_lt
504
+ - MeasureTheory.OuterMeasure.ext_nonempty
505
+ - MeasureTheory.OuterMeasure.iSup_apply
506
+ - MeasureTheory.OuterMeasure.union_null
507
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Prod.lean
508
+ theorems:
509
+ - SimpleGraph.Connected.boxProd
510
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/PartialEquiv.lean
511
+ theorems:
512
+ - PartialEquiv.symm_symm
513
+ - PartialEquiv.prod_symm
514
+ - PartialEquiv.IsImage.leftInvOn_piecewise
515
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/IsometricSMul.lean
516
+ theorems:
517
+ - nndist_div_left
518
+ - path: .lake/packages/mathlib/Mathlib/Topology/Category/Profinite/Nobeling.lean
519
+ theorems:
520
+ - Profinite.NobelingProof.contained_eq_proj
521
+ - path: .lake/packages/std/Std/Data/AssocList.lean
522
+ theorems:
523
+ - Std.AssocList.length_toList
524
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/ContDiff/Basic.lean
525
+ theorems:
526
+ - ContinuousLinearEquiv.iteratedFDerivWithin_comp_right
527
+ - ContDiff.pow
528
+ - contDiffOn_top_iff_derivWithin
529
+ - path: .lake/packages/mathlib/Mathlib/InformationTheory/Hamming.lean
530
+ theorems:
531
+ - hammingDist_lt_one
532
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Count.lean
533
+ theorems:
534
+ - Nat.count_lt_count_succ_iff
535
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoundedVariation.lean
536
+ theorems:
537
+ - LocallyBoundedVariationOn.ae_differentiableWithinAt
538
+ - variationOnFromTo.eq_left_iff
539
+ - path: .lake/packages/mathlib/Mathlib/Data/List/NodupEquivFin.lean
540
+ theorems:
541
+ - List.sublist_iff_exists_fin_orderEmbedding_get_eq
542
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Angle.lean
543
+ theorems:
544
+ - Real.Angle.neg_coe_abs_toReal_of_sign_nonpos
545
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/MeasurableIntegral.lean
546
+ theorems:
547
+ - MeasureTheory.StronglyMeasurable.integral_kernel_prod_left''
548
+ - Measurable.lintegral_kernel_prod_right'
549
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Padics/PadicVal.lean
550
+ theorems:
551
+ - one_le_padicValNat_of_dvd
552
+ - path: .lake/packages/mathlib/Mathlib/Topology/Connected/PathConnected.lean
553
+ theorems:
554
+ - PathConnectedSpace.exists_path_through_family'
555
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Finprod.lean
556
+ theorems:
557
+ - finprod_mem_insert'
558
+ - finprod_mem_eq_one_of_infinite
559
+ - finprod_eq_dif
560
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Restrict.lean
561
+ theorems:
562
+ - MeasureTheory.Measure.restrict_toMeasurable
563
+ - MeasureTheory.Measure.restrict_sUnion_congr
564
+ - path: .lake/packages/mathlib/Mathlib/Topology/LocallyConstant/Basic.lean
565
+ theorems:
566
+ - LocallyConstant.piecewise_apply_right
567
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/MorphismProperty.lean
568
+ theorems:
569
+ - CategoryTheory.MorphismProperty.RespectsIso.isoClosure_eq
570
+ - path: .lake/packages/mathlib/Mathlib/Logic/Function/Basic.lean
571
+ theorems:
572
+ - Function.surjective_of_right_cancellable_Prop
573
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/NaturalOps.lean
574
+ theorems:
575
+ - Ordinal.nadd_nat
576
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/Bochner.lean
577
+ theorems:
578
+ - MeasureTheory.SimpleFunc.integral_eq_sum_filter
579
+ - MeasureTheory.integral_undef
580
+ - MeasureTheory.ae_le_trim_of_stronglyMeasurable
581
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSeminorm/TriangleInequality.lean
582
+ theorems:
583
+ - MeasureTheory.LpAddConst_of_one_le
584
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Padics/PadicNumbers.lean
585
+ theorems:
586
+ - padicNormE.eq_of_norm_add_lt_right
587
+ - Padic.valuation_one
588
+ - PadicSeq.norm_nonarchimedean_aux
589
+ - Padic.padicNormE_lim_le
590
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Rigid/Basic.lean
591
+ theorems:
592
+ - CategoryTheory.tensorLeftHomEquiv_whiskerLeft_comp_evaluation
593
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Basic.lean
594
+ theorems:
595
+ - Fin.val_bit1
596
+ - Fin.le_pred_iff
597
+ - Fin.rev_castPred
598
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Bernstein.lean
599
+ theorems:
600
+ - bernsteinPolynomial.sum_mul_smul
601
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Body.lean
602
+ theorems:
603
+ - ConvexBody.hausdorffEdist_ne_top
604
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Matrix.lean
605
+ theorems:
606
+ - Matrix.linfty_opNorm_def
607
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Single.lean
608
+ theorems:
609
+ - "ChainComplex.toSingle\u2080Equiv_symm_apply_f_zero"
610
+ - path: .lake/packages/mathlib/Mathlib/Data/MvPolynomial/Basic.lean
611
+ theorems:
612
+ - MvPolynomial.prod_X_pow_eq_monomial
613
+ - MvPolynomial.induction_on_monomial
614
+ - "MvPolynomial.eval_eval\u2082"
615
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Asymptotics/Asymptotics.lean
616
+ theorems:
617
+ - Asymptotics.isLittleO_pow_sub_sub
618
+ - Asymptotics.isLittleO_insert
619
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Pointwise.lean
620
+ theorems:
621
+ - cthickening_cthickening
622
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/BilinearForm/Basic.lean
623
+ theorems:
624
+ - BilinForm.flip_flip_aux
625
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Contracting.lean
626
+ theorems:
627
+ - ContractingWith.isFixedPt_fixedPoint_iterate
628
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/CharZero.lean
629
+ theorems:
630
+ - Int.cast_eq_one
631
+ - path: .lake/packages/mathlib/Mathlib/Topology/IndicatorConstPointwise.lean
632
+ theorems:
633
+ - tendsto_indicator_const_apply_iff_eventually
634
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Eisenstein/Basic.lean
635
+ theorems:
636
+ - Polynomial.IsWeaklyEisensteinAt.map
637
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Constructions.lean
638
+ theorems:
639
+ - Units.topology_eq_inf
640
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/TensorProduct/Basic.lean
641
+ theorems:
642
+ - Algebra.TensorProduct.map_comp_includeLeft
643
+ - path: .lake/packages/mathlib/Mathlib/Data/QPF/Univariate/Basic.lean
644
+ theorems:
645
+ - QPF.Cofix.dest_corec
646
+ - QPF.Fix.rec_eq
647
+ - QPF.Fix.ind
648
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Hom/Defs.lean
649
+ theorems:
650
+ - map_comp_div'
651
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/NNReal.lean
652
+ theorems:
653
+ - NNReal.summable_nat_add_iff
654
+ - NNReal.tendsto_tsum_compl_atTop_zero
655
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupPower/Ring.lean
656
+ theorems:
657
+ - add_sq
658
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/BorelSpace/Basic.lean
659
+ theorems:
660
+ - Measurable.ennreal_tsum
661
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Side.lean
662
+ theorems:
663
+ - AffineSubspace.sSameSide_vadd_right_iff
664
+ - AffineSubspace.wOppSide_iff_exists_right
665
+ - path: .lake/packages/mathlib/Mathlib/Data/NNRat/Lemmas.lean
666
+ theorems:
667
+ - Rat.toNNRat_div
668
+ - Rat.toNNRat_inv
669
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Basic.lean
670
+ theorems:
671
+ - dist_prod_prod_le_of_le
672
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Exact.lean
673
+ theorems:
674
+ - CategoryTheory.exact_of_image_eq_kernel
675
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Preadditive/Generator.lean
676
+ theorems:
677
+ - CategoryTheory.isCoseparator_iff_faithful_preadditiveYoneda
678
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Sigma.lean
679
+ theorems:
680
+ - List.mem_keys_kinsert
681
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Partition/Split.lean
682
+ theorems:
683
+ - BoxIntegral.Box.coe_splitUpper
684
+ - BoxIntegral.Prepartition.IsPartition.exists_splitMany_le
685
+ - BoxIntegral.Box.splitLower_eq_self
686
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/RightAngle.lean
687
+ theorems:
688
+ - Orientation.tan_oangle_add_right_smul_rotation_pi_div_two
689
+ - Orientation.oangle_add_right_eq_arccos_of_oangle_eq_pi_div_two
690
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/Lebesgue.lean
691
+ theorems:
692
+ - MeasureTheory.lintegral_iSup
693
+ - ENNReal.count_const_le_le_of_tsum_le
694
+ - MeasureTheory.lintegral_lintegral_mul
695
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/PushoutI.lean
696
+ theorems:
697
+ - Monoid.PushoutI.NormalWord.eq_one_of_smul_normalized
698
+ - path: .lake/packages/mathlib/Mathlib/Order/LiminfLimsup.lean
699
+ theorems:
700
+ - Filter.blimsup_mono
701
+ - Filter.isCobounded_principal
702
+ - Filter.limsup_congr
703
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/OrderHom.lean
704
+ theorems:
705
+ - Fin.predAbove_rev_left
706
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Algebra/Spectrum.lean
707
+ theorems:
708
+ - spectrum.add_mem_add_iff
709
+ - spectrum.unit_smul_eq_smul
710
+ - spectrum.map_star
711
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Derivative.lean
712
+ theorems:
713
+ - Polynomial.derivative_C_mul_X_sq
714
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Subobject/Comma.lean
715
+ theorems:
716
+ - CategoryTheory.CostructuredArrow.unop_left_comp_underlyingIso_hom_unop
717
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Dirac.lean
718
+ theorems:
719
+ - MeasureTheory.Measure.tsum_indicator_apply_singleton
720
+ - path: .lake/packages/mathlib/Mathlib/Order/CompactlyGenerated/Basic.lean
721
+ theorems:
722
+ - DirectedOn.disjoint_sSup_left
723
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Inductions.lean
724
+ theorems:
725
+ - Polynomial.divX_X_pow
726
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Basic.lean
727
+ theorems:
728
+ - Real.cauchy_sub
729
+ - path: .lake/packages/std/Std/Data/Nat/Gcd.lean
730
+ theorems:
731
+ - Nat.Coprime.gcd_mul_left_cancel_right
732
+ - path: .lake/packages/mathlib/Mathlib/Topology/NoetherianSpace.lean
733
+ theorems:
734
+ - TopologicalSpace.NoetherianSpace.exists_finset_irreducible
735
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Dioph.lean
736
+ theorems:
737
+ - Dioph.ext
738
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/ToLin.lean
739
+ theorems:
740
+ - Matrix.toLin'_mul_apply
741
+ - path: .lake/packages/std/Std/Data/Nat/Lemmas.lean
742
+ theorems:
743
+ - Nat.compare_eq_eq
744
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Gauge.lean
745
+ theorems:
746
+ - gauge_neg
747
+ - continuousAt_gauge
748
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Sum.lean
749
+ theorems:
750
+ - Multiset.mem_disjSum
751
+ - path: .lake/packages/mathlib/Mathlib/Order/ConditionallyCompleteLattice/Basic.lean
752
+ theorems:
753
+ - WithTop.iInf_empty
754
+ - ciSup_unique
755
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/MappingCone.lean
756
+ theorems:
757
+ - CochainComplex.mappingCone.inr_snd
758
+ - CochainComplex.mappingCone.inl_v_descCochain_v
759
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/OrdConnected.lean
760
+ theorems:
761
+ - OrderEmbedding.image_Ioo
762
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Card.lean
763
+ theorems:
764
+ - Set.encard_union_le
765
+ - Set.Nat.encard_range
766
+ - Set.one_lt_ncard_iff
767
+ - Set.eq_of_subset_of_ncard_le
768
+ - path: .lake/packages/mathlib/Mathlib/Data/Part.lean
769
+ theorems:
770
+ - Part.bind_some_eq_map
771
+ - Part.mem_restrict
772
+ - Part.sdiff_get_eq
773
+ - Part.bind_none
774
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Types.lean
775
+ theorems:
776
+ - FirstOrder.Language.Theory.CompleteType.setOf_subset_eq_univ_iff
777
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Rotate.lean
778
+ theorems:
779
+ - List.rotate'_cons_succ
780
+ - List.rotate'_length_mul
781
+ - List.rotate_rotate
782
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/StoneSeparation.lean
783
+ theorems:
784
+ - exists_convex_convex_compl_subset
785
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Orientation.lean
786
+ theorems:
787
+ - Basis.orientation_unitsSMul
788
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/CoprodI.lean
789
+ theorems:
790
+ - Monoid.CoprodI.lift_word_prod_nontrivial_of_not_empty
791
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GCDMonoid/Basic.lean
792
+ theorems:
793
+ - gcd_mul_dvd_mul_gcd
794
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Bitwise.lean
795
+ theorems:
796
+ - Nat.xor_self
797
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/StronglyMeasurable/Basic.lean
798
+ theorems:
799
+ - MeasureTheory.StronglyMeasurable.norm_approxBounded_le
800
+ - MeasureTheory.StronglyMeasurable.tendsto_approxBounded_ae
801
+ - MeasureTheory.StronglyMeasurable.piecewise
802
+ - List.aestronglyMeasurable_prod'
803
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monoid/Lemmas.lean
804
+ theorems:
805
+ - lt_one_of_mul_lt_right
806
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monovary.lean
807
+ theorems:
808
+ - monovaryOn_iff_mul_rearrangement
809
+ - path: .lake/packages/mathlib/Mathlib/Order/UpperLower/Basic.lean
810
+ theorems:
811
+ - isLowerSet_iff_Iic_subset
812
+ - UpperSet.codisjoint_coe
813
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Vandermonde.lean
814
+ theorems:
815
+ - Matrix.det_vandermonde
816
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Subgraph.lean
817
+ theorems:
818
+ - SimpleGraph.Subgraph.deleteVerts_le
819
+ - SimpleGraph.Subgraph.coe_degree
820
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Basic.lean
821
+ theorems:
822
+ - div_mul_mul_cancel
823
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/OperatorNorm/NormedSpace.lean
824
+ theorems:
825
+ - LinearIsometry.norm_toContinuousLinearMap_comp
826
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/Group.lean
827
+ theorems:
828
+ - Set.pairwise_disjoint_Ioo_add_int_cast
829
+ - path: .lake/packages/std/Std/Data/RBMap/WF.lean
830
+ theorems:
831
+ - Std.RBNode.RedRed.balance2
832
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Comma/Presheaf.lean
833
+ theorems:
834
+ - "CategoryTheory.OverPresheafAux.MakesOverArrow.map\u2081"
835
+ - CategoryTheory.OverPresheafAux.counitForward_val_snd
836
+ - path: .lake/packages/mathlib/Mathlib/Topology/VectorBundle/Basic.lean
837
+ theorems:
838
+ - VectorBundleCore.coordChange_linear_comp
839
+ - path: .lake/packages/mathlib/Mathlib/Topology/NhdsSet.lean
840
+ theorems:
841
+ - nhdsSet_diagonal
842
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Pairing.lean
843
+ theorems:
844
+ - Nat.unpair_left_le
845
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/MvPolynomial/Homogeneous.lean
846
+ theorems:
847
+ - MvPolynomial.homogeneousComponent_zero
848
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/Sheaf/LocallyRingedSpace.lean
849
+ theorems:
850
+ - smoothSheafCommRing.isUnit_stalk_iff
851
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/UniformGroup.lean
852
+ theorems:
853
+ - UniformGroup.uniformContinuous_iff_open_ker
854
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Killing.lean
855
+ theorems:
856
+ - LieAlgebra.IsKilling.ker_restrictBilinear_eq_bot_of_isCartanSubalgebra
857
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Sphere/Power.lean
858
+ theorems:
859
+ - EuclideanGeometry.mul_dist_eq_mul_dist_of_cospherical_of_angle_eq_pi
860
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/ChartedSpace.lean
861
+ theorems:
862
+ - TopologicalSpace.Opens.chartAt_inclusion_symm_eventuallyEq
863
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/IntegralEqImproper.lean
864
+ theorems:
865
+ - MeasureTheory.integrable_of_intervalIntegral_norm_bounded
866
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Complement.lean
867
+ theorems:
868
+ - Subgroup.IsComplement.equiv_snd_eq_iff_rightCosetEquivalence
869
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Localization/Basic.lean
870
+ theorems:
871
+ - IsLocalization.map_eq_zero_iff
872
+ - IsLocalization.algebraMap_eq_map_map_submonoid
873
+ - path: .lake/packages/mathlib/Mathlib/Data/MvPolynomial/Degrees.lean
874
+ theorems:
875
+ - MvPolynomial.degrees_rename
876
+ - MvPolynomial.totalDegree_zero
877
+ - MvPolynomial.degrees_monomial_eq
878
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Fold.lean
879
+ theorems:
880
+ - "CliffordAlgebra.foldl_prod_map_\u03B9"
881
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Bounded.lean
882
+ theorems:
883
+ - Metric.dist_le_diam_of_mem'
884
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Banach.lean
885
+ theorems:
886
+ - LinearMap.continuous_of_seq_closed_graph
887
+ - ContinuousLinearMap.range_eq_map_coprodSubtypeLEquivOfIsCompl
888
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Basic.lean
889
+ theorems:
890
+ - List.head_mem
891
+ - List.getLastI_eq_getLast?
892
+ - List.get_set_of_ne
893
+ - List.map_bijective_iff
894
+ - List.disjoint_map
895
+ - List.zipWith_flip
896
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/FiniteAbelian.lean
897
+ theorems:
898
+ - AddCommGroup.equiv_directSum_zmod_of_finite
899
+ - path: .lake/packages/mathlib/Mathlib/Data/Bool/Count.lean
900
+ theorems:
901
+ - List.Chain'.length_div_two_le_count_bool
902
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gaussian.lean
903
+ theorems:
904
+ - GaussianFourier.integrable_cexp_neg_mul_sq_norm_add
905
+ - norm_cexp_neg_mul_sq
906
+ - integrable_mul_cexp_neg_mul_sq
907
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/IncMatrix.lean
908
+ theorems:
909
+ - SimpleGraph.incMatrix_apply_eq_zero_iff
910
+ - SimpleGraph.incMatrix_apply'
911
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Cyclotomic/CyclotomicCharacter.lean
912
+ theorems:
913
+ - ModularCyclotomicCharacter.id
914
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Degree/Definitions.lean
915
+ theorems:
916
+ - Polynomial.eq_X_add_C_of_degree_eq_one
917
+ - Polynomial.ne_zero_of_natDegree_gt
918
+ - Polynomial.degree_linear
919
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Adjoint.lean
920
+ theorems:
921
+ - LinearIsometryEquiv.adjoint_eq_symm
922
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousFunction/Bounded.lean
923
+ theorems:
924
+ - BoundedContinuousFunction.add_norm_nonneg
925
+ - BoundedContinuousFunction.abs_diff_coe_le_dist
926
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Pullbacks.lean
927
+ theorems:
928
+ - CategoryTheory.Limits.pullback_symmetry_hom_of_epi_eq
929
+ - path: .lake/packages/mathlib/Mathlib/Dynamics/Circle/RotationNumber/TranslationNumber.lean
930
+ theorems:
931
+ - CircleDeg1Lift.translationNumber_one
932
+ - CircleDeg1Lift.translationNumber_mul_of_commute
933
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Basic.lean
934
+ theorems:
935
+ - SimpleGraph.not_mem_neighborSet_self
936
+ - SimpleGraph.mem_incidence_iff_neighbor
937
+ - SimpleGraph.disjoint_edgeSet
938
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Combination.lean
939
+ theorems:
940
+ - Set.Finite.convexHull_eq_image
941
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Circulant.lean
942
+ theorems:
943
+ - Matrix.circulant_mul_comm
944
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Divisors.lean
945
+ theorems:
946
+ - Nat.image_div_divisors_eq_divisors
947
+ - Nat.swap_mem_divisorsAntidiagonal
948
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Basic.lean
949
+ theorems:
950
+ - dist_pos
951
+ - MetricSpace.replaceUniformity_eq
952
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Adjunction/AdjointFunctorTheorems.lean
953
+ theorems:
954
+ - CategoryTheory.solutionSetCondition_of_isRightAdjoint
955
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Completion.lean
956
+ theorems:
957
+ - CauchyFilter.uniformInducing_pureCauchy
958
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/OrdConnectedComponent.lean
959
+ theorems:
960
+ - Set.self_mem_ordConnectedComponent
961
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/ModEq.lean
962
+ theorems:
963
+ - Nat.add_mod_add_of_le_add_mod
964
+ - Nat.odd_mod_four_iff
965
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Equicontinuity.lean
966
+ theorems:
967
+ - Filter.HasBasis.uniformEquicontinuousOn_iff_left
968
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/NeZero.lean
969
+ theorems:
970
+ - inv_mul_cancel
971
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Tuple/Curry.lean
972
+ theorems:
973
+ - Function.FromTypes.curry_uncurry
974
+ - path: .lake/packages/mathlib/Mathlib/Order/JordanHolder.lean
975
+ theorems:
976
+ - JordanHolderLattice.second_iso_of_eq
977
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector/Snoc.lean
978
+ theorems:
979
+ - Vector.map_snoc
980
+ - path: .lake/packages/mathlib/Mathlib/Topology/ContinuousOn.lean
981
+ theorems:
982
+ - continuous_mulIndicator
983
+ - nhdsWithin_pi_eq'
984
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/SumPrimeReciprocals.lean
985
+ theorems:
986
+ - one_half_le_sum_primes_ge_one_div
987
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Basic.lean
988
+ theorems:
989
+ - Polynomial.coeff_update_apply
990
+ - Polynomial.support_monomial
991
+ - Polynomial.toFinsupp_add
992
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/LineDeriv/Basic.lean
993
+ theorems:
994
+ - hasLineDerivAt_iff_tendsto_slope_zero
995
+ - HasLineDerivAt.of_comp
996
+ - path: .lake/packages/mathlib/Mathlib/Topology/Baire/Lemmas.lean
997
+ theorems:
998
+ - "IsG\u03B4.dense_biUnion_interior_of_closed"
999
+ - "dense_biInter_of_G\u03B4"
1000
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Span.lean
1001
+ theorems:
1002
+ - Submodule.iSup_eq_span
1003
+ - Submodule.mem_sSup
1004
+ - Submodule.sup_span
1005
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Fin.lean
1006
+ theorems:
1007
+ - Fin.partialProd_succ'
1008
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/ProjectiveResolution.lean
1009
+ theorems:
1010
+ - CategoryTheory.ProjectiveResolution.iso_inv_naturality
1011
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/Defs.lean
1012
+ theorems:
1013
+ - le_mul_of_le_one_right
1014
+ - one_le_bit1
1015
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Valuation/Basic.lean
1016
+ theorems:
1017
+ - Valuation.one_lt_val_iff
1018
+ - Valuation.map_sub_le
1019
+ - path: .lake/packages/mathlib/Mathlib/Order/GaloisConnection.lean
1020
+ theorems:
1021
+ - "GaloisConnection.l_iSup\u2082"
1022
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Transfer.lean
1023
+ theorems:
1024
+ - MonoidHom.transferSylow_eq_pow_aux
1025
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Basis.lean
1026
+ theorems:
1027
+ - Basis.constr_apply
1028
+ - path: .lake/packages/mathlib/Mathlib/Computability/Primrec.lean
1029
+ theorems:
1030
+ - Nat.Primrec.sub
1031
+ - Primrec.bind_decode_iff
1032
+ - Primrec.const
1033
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Subadditive.lean
1034
+ theorems:
1035
+ - Subadditive.apply_mul_add_le
1036
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/UniqueFactorizationDomain.lean
1037
+ theorems:
1038
+ - Associates.map_subtype_coe_factors'
1039
+ - UniqueFactorizationMonoid.multiplicity_eq_count_normalizedFactors
1040
+ - Associates.FactorSet.prod_eq_zero_iff
1041
+ - UniqueFactorizationMonoid.dvdNotUnit_iff_normalizedFactors_lt_normalizedFactors
1042
+ - path: .lake/packages/mathlib/Mathlib/Data/Seq/WSeq.lean
1043
+ theorems:
1044
+ - Stream'.WSeq.LiftRel.refl
1045
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Composition.lean
1046
+ theorems:
1047
+ - List.map_length_splitWrtCompositionAux
1048
+ - CompositionAsSet.mem_boundaries_iff_exists_blocks_sum_take_eq
1049
+ - path: .lake/packages/mathlib/Mathlib/Order/WellFoundedSet.lean
1050
+ theorems:
1051
+ - Set.PartiallyWellOrderedOn.wellFoundedOn
1052
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/Analytic.lean
1053
+ theorems:
1054
+ - ContinuousMultilinearMap.cPolynomialAt
1055
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/BilinearForm/Properties.lean
1056
+ theorems:
1057
+ - BilinForm.dualBasis_dualBasis
1058
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Defs.lean
1059
+ theorems:
1060
+ - Set.mem_univ_pi
1061
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Defs.lean
1062
+ theorems:
1063
+ - Rat.coe_nat_eq_divInt
1064
+ - Rat.zero_add
1065
+ - path: .lake/packages/std/Std/Data/Array/Lemmas.lean
1066
+ theorems:
1067
+ - Array.get?_push_lt
1068
+ - Array.contains_def
1069
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/FreeAbelianGroupFinsupp.lean
1070
+ theorems:
1071
+ - FreeAbelianGroup.support_nsmul
1072
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Contraction.lean
1073
+ theorems:
1074
+ - CliffordAlgebra.changeForm_changeForm
1075
+ - CliffordAlgebra.changeForm.associated_neg_proof
1076
+ - path: .lake/packages/mathlib/Mathlib/Data/List/OfFn.lean
1077
+ theorems:
1078
+ - List.last_ofFn
1079
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/Defs.lean
1080
+ theorems:
1081
+ - ite_sub_ite
1082
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Between.lean
1083
+ theorems:
1084
+ - wbtw_iff_right_eq_or_left_mem_image_Ici
1085
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Star.lean
1086
+ theorems:
1087
+ - StarConvex.preimage_add_left
1088
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/LaxMilgram.lean
1089
+ theorems:
1090
+ - IsCoercive.antilipschitz
1091
+ - IsCoercive.bounded_below
1092
+ - path: .lake/packages/mathlib/Mathlib/Logic/Basic.lean
1093
+ theorems:
1094
+ - xor_false
1095
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/LHopital.lean
1096
+ theorems:
1097
+ - HasDerivAt.lhopital_zero_atTop_on_Ioi
1098
+ - deriv.lhopital_zero_nhds
1099
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Reverse.lean
1100
+ theorems:
1101
+ - Polynomial.reverse_neg
1102
+ - Polynomial.reverse_mul
1103
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCofiber.lean
1104
+ theorems:
1105
+ - "HomologicalComplex.cylinder.map_\u03B9\u2080_eq_map_\u03B9\u2081"
1106
+ - path: .lake/packages/mathlib/Mathlib/Probability/Independence/Kernel.lean
1107
+ theorems:
1108
+ - ProbabilityTheory.kernel.iIndep_comap_mem_iff
1109
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Pointwise.lean
1110
+ theorems:
1111
+ - Real.sSup_smul_of_nonpos
1112
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Rotation.lean
1113
+ theorems:
1114
+ - Orientation.det_rotation
1115
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/AffineSubspace.lean
1116
+ theorems:
1117
+ - affineSpan_le_toAffineSubspace_span
1118
+ - vectorSpan_eq_span_vsub_set_left
1119
+ - AffineSubspace.spanPoints_subset_coe_of_subset_coe
1120
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Convolution.lean
1121
+ theorems:
1122
+ - MeasureTheory.Measure.mconv_add
1123
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Basic.lean
1124
+ theorems:
1125
+ - Multiset.prod_sum
1126
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/LinearIndependent.lean
1127
+ theorems:
1128
+ - LinearIndependent.maximal_iff
1129
+ - LinearIndependent.disjoint_span_image
1130
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/GaussLemma.lean
1131
+ theorems:
1132
+ - Polynomial.Monic.irreducible_iff_irreducible_map_fraction_map
1133
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Diagonal.lean
1134
+ theorems:
1135
+ - CategoryTheory.Limits.pullbackDiagonalMapIdIso_inv_snd_snd
1136
+ - CategoryTheory.Limits.diagonalObjPullbackFstIso_hom_snd
1137
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Expand.lean
1138
+ theorems:
1139
+ - Polynomial.contract_expand
1140
+ - Polynomial.natDegree_expand
1141
+ - path: .lake/packages/mathlib/Mathlib/Topology/Category/TopCat/Limits/Pullbacks.lean
1142
+ theorems:
1143
+ - TopCat.pullback_fst_image_snd_preimage
1144
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Univariate/Basic.lean
1145
+ theorems:
1146
+ - PFunctor.liftp_iff'
1147
+ - PFunctor.liftr_iff
1148
+ - path: .lake/packages/std/Std/Data/Int/DivMod.lean
1149
+ theorems:
1150
+ - Int.fdiv_self
1151
+ - path: .lake/packages/mathlib/Mathlib/Data/String/Lemmas.lean
1152
+ theorems:
1153
+ - String.leftpad_suffix
1154
+ - String.leftpad_length
1155
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/MvPowerSeries/Basic.lean
1156
+ theorems:
1157
+ - MvPowerSeries.monomial_mul_monomial
1158
+ - MvPowerSeries.algebraMap_apply
1159
+ - MvPowerSeries.commute_monomial
1160
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Size.lean
1161
+ theorems:
1162
+ - Nat.size_pow
1163
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/Decomposition.lean
1164
+ theorems:
1165
+ - "AlgebraicTopology.DoldKan.MorphComponents.preComp_\u03C6"
1166
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Fold.lean
1167
+ theorems:
1168
+ - Finset.fold_image
1169
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Partition.lean
1170
+ theorems:
1171
+ - Nat.Partition.partition_one_parts
1172
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Derangements/Basic.lean
1173
+ theorems:
1174
+ - derangements.Equiv.RemoveNone.fiber_none
1175
+ - path: .lake/packages/mathlib/Mathlib/Computability/TuringMachine.lean
1176
+ theorems:
1177
+ - Turing.TM2to1.addBottom_modifyNth
1178
+ - "Turing.eval_maximal\u2081"
1179
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/Basic.lean
1180
+ theorems:
1181
+ - Equiv.sumCongr_refl
1182
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Category/Basic.lean
1183
+ theorems:
1184
+ - CategoryTheory.eq_whisker
1185
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/EqToHom.lean
1186
+ theorems:
1187
+ - CategoryTheory.eqToIso_map_trans
1188
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/GoldenRatio.lean
1189
+ theorems:
1190
+ - geom_gold_isSol_fibRec
1191
+ - goldConj_neg
1192
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Basic.lean
1193
+ theorems:
1194
+ - Complex.cos_pi_div_two
1195
+ - Real.sin_lt_sin_of_lt_of_le_pi_div_two
1196
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/EverywherePos.lean
1197
+ theorems:
1198
+ - MeasureTheory.Measure.measure_eq_zero_of_subset_diff_everywherePosSubset
1199
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/OrderOfElement.lean
1200
+ theorems:
1201
+ - Commute.orderOf_mul_dvd_lcm
1202
+ - isOfFinOrder_iff_zpow_eq_one
1203
+ - orderOf_eq_prime
1204
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monoid/WithTop.lean
1205
+ theorems:
1206
+ - WithTop.map_add
1207
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Additive/SalemSpencer.lean
1208
+ theorems:
1209
+ - MulSalemSpencer.mul_right
1210
+ - path: .lake/packages/mathlib/Mathlib/Probability/ProbabilityMassFunction/Constructions.lean
1211
+ theorems:
1212
+ - PMF.map_comp
1213
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Coeff.lean
1214
+ theorems:
1215
+ - Polynomial.coeff_mul_C
1216
+ - path: .lake/packages/mathlib/Mathlib/Data/Complex/Exponential.lean
1217
+ theorems:
1218
+ - Real.exp_approx_start
1219
+ - Real.quadratic_le_exp_of_nonneg
1220
+ - Complex.sin_zero
1221
+ - Complex.cos_two_mul
1222
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/FundamentalGroupoid/Basic.lean
1223
+ theorems:
1224
+ - Path.Homotopy.continuous_transReflReparamAux
1225
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Truncated.lean
1226
+ theorems:
1227
+ - TruncatedWittVector.card
1228
+ - path: .lake/packages/mathlib/Mathlib/Analysis/ODE/Gronwall.lean
1229
+ theorems:
1230
+ - ODE_solution_unique_of_eventually
1231
+ - path: .lake/packages/mathlib/Mathlib/Topology/Connected/Basic.lean
1232
+ theorems:
1233
+ - "PreconnectedSpace.induction\u2082'"
1234
+ - IsPreconnected.prod
1235
+ - IsPreconnected.union'
1236
+ - connectedComponentIn_eq
1237
+ - path: .lake/packages/mathlib/Mathlib/Data/Option/NAry.lean
1238
+ theorems:
1239
+ - "Option.map\u2082_assoc"
1240
+ - "Option.map\u2082_map_left_anticomm"
1241
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Arctan.lean
1242
+ theorems:
1243
+ - Real.surjOn_tan
1244
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/NNReal.lean
1245
+ theorems:
1246
+ - NNReal.rpow_neg_one
1247
+ - ENNReal.top_rpow_of_neg
1248
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Basic.lean
1249
+ theorems:
1250
+ - ProbabilityTheory.kernel.sum_add
1251
+ - ProbabilityTheory.kernel.integral_piecewise
1252
+ - ProbabilityTheory.kernel.integral_deterministic
1253
+ - ProbabilityTheory.kernel.restrict_apply'
1254
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/Operations.lean
1255
+ theorems:
1256
+ - Submodule.mem_smul_span
1257
+ - Ideal.IsPrime.multiset_prod_le
1258
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Etale.lean
1259
+ theorems:
1260
+ - Algebra.FormallyUnramified.localization_map
1261
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/QuotientOperations.lean
1262
+ theorems:
1263
+ - Ideal.mem_quotient_iff_mem
1264
+ - Ideal.fst_comp_quotientInfEquivQuotientProd
1265
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/EffectiveEpi/Preserves.lean
1266
+ theorems:
1267
+ - CategoryTheory.effectiveEpiFamilyStructOfEquivalence_aux
1268
+ - path: .lake/packages/mathlib/Mathlib/Logic/Relation.lean
1269
+ theorems:
1270
+ - Relation.TransGen.head_induction_on
1271
+ - Relation.map_map
1272
+ - Relation.reflTransGen_eq_reflGen
1273
+ - Relation.ReflTransGen.trans_induction_on
1274
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Vieta.lean
1275
+ theorems:
1276
+ - MvPolynomial.prod_C_add_X_eq_sum_esymm
1277
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Periodic.lean
1278
+ theorems:
1279
+ - Function.Periodic.const_inv_smul
1280
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Solvable.lean
1281
+ theorems:
1282
+ - LieAlgebra.derivedSeriesOfIdeal_le
1283
+ - path: .lake/packages/mathlib/Mathlib/Algebra/BigOperators/Module.lean
1284
+ theorems:
1285
+ - Finset.sum_range_by_parts
1286
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Sites/Sheaf.lean
1287
+ theorems:
1288
+ - CategoryTheory.Presheaf.isSheaf_iff_multiequalizer
1289
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Basic.lean
1290
+ theorems:
1291
+ - Cardinal.one_lt_iff_nontrivial
1292
+ - Cardinal.self_le_power
1293
+ - Cardinal.mk_subset_ge_of_subset_image_lift
1294
+ - path: .lake/packages/mathlib/Mathlib/Topology/Basic.lean
1295
+ theorems:
1296
+ - closure_diff_frontier
1297
+ - interior_eq_empty_iff_dense_compl
1298
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/ToDFinsupp.lean
1299
+ theorems:
1300
+ - finsuppLequivDFinsupp_apply_apply
1301
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Monoid/Canonical/Defs.lean
1302
+ theorems:
1303
+ - one_lt_mul_iff
1304
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/RamificationInertia.lean
1305
+ theorems:
1306
+ - Ideal.ramificationIdx_lt
1307
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Analytic/Meromorphic.lean
1308
+ theorems:
1309
+ - MeromorphicAt.order_eq_top_iff
1310
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/ToIntervalMod.lean
1311
+ theorems:
1312
+ - toIcoMod_sub_zsmul
1313
+ - toIocMod_eq_iff
1314
+ - path: .lake/packages/mathlib/Mathlib/Computability/Language.lean
1315
+ theorems:
1316
+ - Language.mul_self_kstar_comm
1317
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/MeasurableSpace/Basic.lean
1318
+ theorems:
1319
+ - MeasurableSpace.comap_compl
1320
+ - MeasurableEmbedding.iff_comap_eq
1321
+ - measurableSet_tendsto
1322
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/GaugeRescale.lean
1323
+ theorems:
1324
+ - image_gaugeRescaleHomeomorph_interior
1325
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Basis/VectorSpace.lean
1326
+ theorems:
1327
+ - LinearMap.exists_rightInverse_of_surjective
1328
+ - Submodule.exists_le_ker_of_lt_top
1329
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/PInfty.lean
1330
+ theorems:
1331
+ - AlgebraicTopology.DoldKan.PInfty_comp_QInfty
1332
+ - AlgebraicTopology.DoldKan.QInfty_f_comp_PInfty_f
1333
+ - AlgebraicTopology.DoldKan.QInfty_idem
1334
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ConditionalExpectation/Basic.lean
1335
+ theorems:
1336
+ - MeasureTheory.condexp_condexp_of_le
1337
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/FundThmCalculus.lean
1338
+ theorems:
1339
+ - intervalIntegral.integral_comp_smul_deriv''
1340
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ModEq.lean
1341
+ theorems:
1342
+ - AddCommGroup.intCast_modEq_intCast'
1343
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Multiequalizer.lean
1344
+ theorems:
1345
+ - CategoryTheory.Limits.Multiequalizer.hom_ext
1346
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Log/Basic.lean
1347
+ theorems:
1348
+ - Mathlib.Meta.Positivity.log_pos_of_isRat_neg
1349
+ - Real.tendsto_log_atTop
1350
+ - path: .lake/packages/mathlib/Mathlib/Data/QPF/Multivariate/Basic.lean
1351
+ theorems:
1352
+ - MvQPF.liftR_iff
1353
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/DegreewiseSplit.lean
1354
+ theorems:
1355
+ - HomotopyCategory.distinguished_iff_iso_trianglehOfDegreewiseSplit
1356
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Midpoint.lean
1357
+ theorems:
1358
+ - midpoint_sub_add
1359
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Eigenspace/Minpoly.lean
1360
+ theorems:
1361
+ - Module.End.isRoot_of_hasEigenvalue
1362
+ - path: .lake/packages/mathlib/Mathlib/Data/Finmap.lean
1363
+ theorems:
1364
+ - Finmap.mem_singleton
1365
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Gamma/Basic.lean
1366
+ theorems:
1367
+ - Real.Gamma_one
1368
+ - Complex.Gamma_ofReal
1369
+ - path: .lake/packages/mathlib/Mathlib/Data/Rat/Floor.lean
1370
+ theorems:
1371
+ - Rat.floor_def'
1372
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/Homotopy.lean
1373
+ theorems:
1374
+ - Homotopy.comp_nullHomotopicMap
1375
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Symmetric.lean
1376
+ theorems:
1377
+ - Matrix.IsSymm.fromBlocks
1378
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ModularForms/JacobiTheta/TwoVariable.lean
1379
+ theorems:
1380
+ - "jacobiTheta\u2082_add_left"
1381
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Univariate/M.lean
1382
+ theorems:
1383
+ - PFunctor.M.cases_mk
1384
+ - path: .lake/packages/mathlib/Mathlib/Geometry/RingedSpace/PresheafedSpace.lean
1385
+ theorems:
1386
+ - AlgebraicGeometry.PresheafedSpace.Hom.ext
1387
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Order/Compact.lean
1388
+ theorems:
1389
+ - IsCompact.exists_isLeast
1390
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/UniformConvergence.lean
1391
+ theorems:
1392
+ - TendstoUniformly.prod_map
1393
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/ListOfFn.lean
1394
+ theorems:
1395
+ - Set.mem_pow
1396
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Derivation/Basic.lean
1397
+ theorems:
1398
+ - Derivation.eqOn_adjoin
1399
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FractionalIdeal/Basic.lean
1400
+ theorems:
1401
+ - FractionalIdeal.coeIdeal_mul
1402
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/LeftDerived.lean
1403
+ theorems:
1404
+ - CategoryTheory.ProjectiveResolution.isoLeftDerivedObj_hom_naturality
1405
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Young/YoungDiagram.lean
1406
+ theorems:
1407
+ - YoungDiagram.exists_not_mem_row
1408
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Preadditive.lean
1409
+ theorems:
1410
+ - CategoryTheory.leftDistributor_assoc
1411
+ - path: .lake/packages/mathlib/Mathlib/Computability/AkraBazzi/GrowsPolynomially.lean
1412
+ theorems:
1413
+ - AkraBazziRecurrence.GrowsPolynomially.neg_iff
1414
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Finsupp.lean
1415
+ theorems:
1416
+ - Finsupp.totalOn_range
1417
+ - path: .lake/packages/mathlib/Mathlib/Data/IsROrC/Basic.lean
1418
+ theorems:
1419
+ - IsROrC.exists_norm_eq_mul_self
1420
+ - IsROrC.div_re
1421
+ - IsROrC.nonneg_iff
1422
+ - IsROrC.conj_smul
1423
+ - IsROrC.one_re
1424
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Defs.lean
1425
+ theorems:
1426
+ - Nat.mul_div_cancel_left'
1427
+ - Nat.div_le_div_right
1428
+ - Nat.div_lt_one_iff
1429
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteBooleanAlgebra.lean
1430
+ theorems:
1431
+ - "disjoint_iSup\u2082_iff"
1432
+ - path: .lake/packages/mathlib/Mathlib/Algebra/CharP/MixedCharZero.lean
1433
+ theorems:
1434
+ - MixedCharZero.reduce_to_maximal_ideal
1435
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/BigOperators.lean
1436
+ theorems:
1437
+ - Set.multiset_prod_subset_multiset_prod
1438
+ - path: .lake/packages/mathlib/Mathlib/Probability/StrongLaw.lean
1439
+ theorems:
1440
+ - ProbabilityTheory.abs_truncation_le_abs_self
1441
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/LYM.lean
1442
+ theorems:
1443
+ - Finset.mem_falling
1444
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Rayleigh.lean
1445
+ theorems:
1446
+ - compl_beattySeq
1447
+ - path: .lake/packages/mathlib/Mathlib/Init/Data/Int/CompLemmas.lean
1448
+ theorems:
1449
+ - Int.natAbs_bit0_step
1450
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Star/StarAlgHom.lean
1451
+ theorems:
1452
+ - NonUnitalStarAlgHom.mk_coe
1453
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/IsAlgClosed/AlgebraicClosure.lean
1454
+ theorems:
1455
+ - AlgebraicClosure.Step.isIntegral
1456
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/NumberField/Embeddings.lean
1457
+ theorems:
1458
+ - NumberField.InfinitePlace.isUnramified_mk_iff_forall_isConj
1459
+ - NumberField.InfinitePlace.card_eq_card_isUnramifiedIn
1460
+ - NumberField.InfinitePlace.isReal_of_mk_isReal
1461
+ - NumberField.InfinitePlace.ComplexEmbedding.exists_comp_symm_eq_of_comp_eq
1462
+ - path: .lake/packages/mathlib/Mathlib/Topology/Maps.lean
1463
+ theorems:
1464
+ - OpenEmbedding.open_iff_image_open
1465
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/Basic.lean
1466
+ theorems:
1467
+ - eventually_abs_sub_lt
1468
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Image.lean
1469
+ theorems:
1470
+ - Finset.image_biUnion
1471
+ - path: .lake/packages/mathlib/Mathlib/Topology/Constructions.lean
1472
+ theorems:
1473
+ - continuous_sigma_iff
1474
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Adjoin/Basic.lean
1475
+ theorems:
1476
+ - Algebra.adjoin_adjoin_coe_preimage
1477
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Groupoid/Subgroupoid.lean
1478
+ theorems:
1479
+ - CategoryTheory.Subgroupoid.generated_le_generatedNormal
1480
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SetFamily/AhlswedeZhang.lean
1481
+ theorems:
1482
+ - Finset.sups_aux
1483
+ - Finset.truncatedInf_union
1484
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Thickening.lean
1485
+ theorems:
1486
+ - Metric.ediam_cthickening_le
1487
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Eigenspace/Basic.lean
1488
+ theorems:
1489
+ - Module.End.iSup_generalizedEigenspace_inf_le_add
1490
+ - Module.End.hasGeneralizedEigenvalue_of_hasEigenvalue
1491
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/AlternatingFaceMapComplex.lean
1492
+ theorems:
1493
+ - AlgebraicTopology.alternatingFaceMapComplex_obj_d
1494
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/MonotoneConvergence.lean
1495
+ theorems:
1496
+ - tendsto_atBot_isLUB
1497
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Multilinear/Basic.lean
1498
+ theorems:
1499
+ - MultilinearMap.bound_of_shell
1500
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Integral/SetToL1.lean
1501
+ theorems:
1502
+ - MeasureTheory.tendsto_setToFun_of_L1
1503
+ - path: .lake/packages/mathlib/Mathlib/Data/Matrix/Notation.lean
1504
+ theorems:
1505
+ - Matrix.tail_transpose
1506
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Haar/OfBasis.lean
1507
+ theorems:
1508
+ - Basis.addHaar_eq_iff
1509
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/LocallyFinite/Basic.lean
1510
+ theorems:
1511
+ - Finset.Ioc_subset_Ioo_right
1512
+ - Finset.map_add_left_Ioc
1513
+ - Finset.Ioc_insert_left
1514
+ - path: .lake/packages/mathlib/Mathlib/Data/Sign.lean
1515
+ theorems:
1516
+ - SignType.pos_iff
1517
+ - SignType.mul_assoc
1518
+ - abs_mul_sign
1519
+ - SignType.le_trans
1520
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/Sqrt.lean
1521
+ theorems:
1522
+ - Real.sqrt_one_add_le
1523
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/FixedPointFree.lean
1524
+ theorems:
1525
+ - MonoidHom.FixedPointFree.prod_pow_eq_one
1526
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Whiskering.lean
1527
+ theorems:
1528
+ - CategoryTheory.Functor.pentagon
1529
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/NumberField/CanonicalEmbedding.lean
1530
+ theorems:
1531
+ - NumberField.canonicalEmbedding.nnnorm_eq
1532
+ - NumberField.mixedEmbedding.finrank
1533
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Sqrt.lean
1534
+ theorems:
1535
+ - Nat.sqrt_le_add
1536
+ - Nat.le_three_of_sqrt_eq_one
1537
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Isometry.lean
1538
+ theorems:
1539
+ - IsometryEquiv.ediam_preimage
1540
+ - path: .lake/packages/mathlib/Mathlib/Topology/Homotopy/Contractible.lean
1541
+ theorems:
1542
+ - ContinuousMap.nullhomotopic_of_constant
1543
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/SplitSimplicialObject.lean
1544
+ theorems:
1545
+ - "SimplicialObject.Splitting.cofan_inj_\u03C0Summand_eq_id"
1546
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/GroupAction/Hom.lean
1547
+ theorems:
1548
+ - DistribMulActionHom.ext_ring
1549
+ - path: .lake/packages/mathlib/Mathlib/Algebra/MonoidAlgebra/Support.lean
1550
+ theorems:
1551
+ - MonoidAlgebra.mem_span_support
1552
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Lists.lean
1553
+ theorems:
1554
+ - Lists'.to_ofList
1555
+ - Lists'.ofList_subset
1556
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Prime.lean
1557
+ theorems:
1558
+ - Nat.prime_mul_iff
1559
+ - Nat.minFac_le_div
1560
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/EuclideanDist.lean
1561
+ theorems:
1562
+ - Euclidean.closure_ball
1563
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/PseudoMetric.lean
1564
+ theorems:
1565
+ - edist_le_ofReal
1566
+ - nndist_dist
1567
+ - dist_dist_dist_le_right
1568
+ - Metric.eventually_isCompact_closedBall
1569
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/OfScientific.lean
1570
+ theorems:
1571
+ - Mathlib.Meta.NormNum.isRat_ofScientific_of_true
1572
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Arithmetic.lean
1573
+ theorems:
1574
+ - Ordinal.bsup_eq_blsub_iff_succ
1575
+ - Ordinal.IsNormal.blsub_eq
1576
+ - Ordinal.enum_succ_eq_top
1577
+ - Ordinal.sup_typein_succ
1578
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RootsOfUnity/Complex.lean
1579
+ theorems:
1580
+ - Complex.isPrimitiveRoot_exp
1581
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Projection.lean
1582
+ theorems:
1583
+ - smul_orthogonalProjection_singleton
1584
+ - path: .lake/packages/mathlib/Mathlib/Analysis/ConstantSpeed.lean
1585
+ theorems:
1586
+ - hasConstantSpeedOnWith_of_subsingleton
1587
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/Category.lean
1588
+ theorems:
1589
+ - CategoryTheory.MonoidalCategory.comp_tensor_id
1590
+ - CategoryTheory.MonoidalCategory.associator_naturality_right
1591
+ - path: .lake/packages/mathlib/Mathlib/Tactic/NormNum/LegendreSymbol.lean
1592
+ theorems:
1593
+ - "Mathlib.Meta.NormNum.jacobiSymNat.qr\u2083"
1594
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/RootSystem/Basic.lean
1595
+ theorems:
1596
+ - RootPairing.isReduced_iff
1597
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/ZetaFunction.lean
1598
+ theorems:
1599
+ - riemannZeta_one_sub
1600
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Normed.lean
1601
+ theorems:
1602
+ - Convex.thickening
1603
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Free.lean
1604
+ theorems:
1605
+ - FreeMagma.length_toFreeSemigroup
1606
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/CentroidHom.lean
1607
+ theorems:
1608
+ - CentroidHom.centroid_eq_centralizer_mulLeftRight
1609
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/AffineMap.lean
1610
+ theorems:
1611
+ - AffineMap.image_vsub_image
1612
+ - path: .lake/packages/mathlib/Mathlib/Topology/Partial.lean
1613
+ theorems:
1614
+ - pcontinuous_iff'
1615
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Cylinders.lean
1616
+ theorems:
1617
+ - MeasureTheory.disjoint_cylinder_iff
1618
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/EllipticCurve/Jacobian.lean
1619
+ theorems:
1620
+ - WeierstrassCurve.Jacobian.equation_zero'
1621
+ - WeierstrassCurve.Jacobian.equation_some
1622
+ - path: .lake/packages/mathlib/Mathlib/Algebra/ContinuedFractions/Computation/Translations.lean
1623
+ theorems:
1624
+ - GeneralizedContinuedFraction.IntFractPair.succ_nth_stream_eq_none_iff
1625
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/ProbabilityMeasure.lean
1626
+ theorems:
1627
+ - MeasureTheory.ProbabilityMeasure.continuous_map
1628
+ - MeasureTheory.ProbabilityMeasure.ennreal_coeFn_eq_coeFn_toMeasure
1629
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/SchurComplement.lean
1630
+ theorems:
1631
+ - Matrix.det_one_sub_mul_comm
1632
+ - path: .lake/packages/mathlib/Mathlib/Order/Directed.lean
1633
+ theorems:
1634
+ - directedOn_image
1635
+ - path: .lake/packages/std/Std/Data/List/Pairwise.lean
1636
+ theorems:
1637
+ - List.Pairwise.imp_of_mem
1638
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/ZPow.lean
1639
+ theorems:
1640
+ - Matrix.pow_inv_comm'
1641
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/MFDeriv/SpecificFunctions.lean
1642
+ theorems:
1643
+ - mfderiv_sub
1644
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Basic.lean
1645
+ theorems:
1646
+ - Multiset.filter_attach'
1647
+ - Multiset.union_le
1648
+ - Multiset.one_le_count_iff_mem
1649
+ - Multiset.pairwise_coe_iff
1650
+ - Multiset.lt_replicate_succ
1651
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Transvection.lean
1652
+ theorems:
1653
+ - Matrix.transvection_mul_apply_of_ne
1654
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/ContMDiff/Basic.lean
1655
+ theorems:
1656
+ - contMDiff_inclusion
1657
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GeomSum.lean
1658
+ theorems:
1659
+ - geom_sum_pos'
1660
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector/Basic.lean
1661
+ theorems:
1662
+ - Vector.reverse_get_zero
1663
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/PosDef.lean
1664
+ theorems:
1665
+ - Matrix.PosSemidef.one
1666
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/MeasureSpace.lean
1667
+ theorems:
1668
+ - "MeasureTheory.measure_sUnion\u2080"
1669
+ - MeasureTheory.Measure.measure_le_sInf
1670
+ - MeasureTheory.sum_measure_preimage_singleton
1671
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Hausdorff.lean
1672
+ theorems:
1673
+ - MeasureTheory.Measure.mkMetric_le_liminf_sum
1674
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/GiryMonad.lean
1675
+ theorems:
1676
+ - MeasureTheory.Measure.join_map_join
1677
+ - MeasureTheory.Measure.measurable_of_measurable_coe
1678
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorial/Cast.lean
1679
+ theorems:
1680
+ - Nat.cast_descFactorial_two
1681
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Typeclasses.lean
1682
+ theorems:
1683
+ - "MeasureTheory.Measure.countable_meas_pos_of_disjoint_iUnion\u2080"
1684
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Factorial/DoubleFactorial.lean
1685
+ theorems:
1686
+ - Nat.doubleFactorial_two_mul
1687
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Basic.lean
1688
+ theorems:
1689
+ - Finset.singleton_inter_of_not_mem
1690
+ - Finset.filter_inter
1691
+ - Finset.erase_insert
1692
+ - path: .lake/packages/mathlib/Mathlib/Geometry/RingedSpace/LocallyRingedSpace/HasColimits.lean
1693
+ theorems:
1694
+ - AlgebraicGeometry.LocallyRingedSpace.HasCoequalizer.imageBasicOpen_image_preimage
1695
+ - path: .lake/packages/std/Std/Data/Rat/Lemmas.lean
1696
+ theorems:
1697
+ - Rat.mkRat_mul_mkRat
1698
+ - Rat.maybeNormalize_eq
1699
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Determinant.lean
1700
+ theorems:
1701
+ - Basis.det_unitsSMul
1702
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/Homotopies.lean
1703
+ theorems:
1704
+ - "AlgebraicTopology.DoldKan.h\u03C3'_eq"
1705
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Pow/Complex.lean
1706
+ theorems:
1707
+ - Complex.cpow_neg
1708
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Trigonometric/Inverse.lean
1709
+ theorems:
1710
+ - Real.arccos_neg_one
1711
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Submonoid/Operations.lean
1712
+ theorems:
1713
+ - Submonoid.mrange_inl_sup_mrange_inr
1714
+ - Submonoid.equivMapOfInjective_coe_mulEquiv
1715
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/LinearPMap.lean
1716
+ theorems:
1717
+ - LinearPMap.adjoint_apply_of_not_dense
1718
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Group/Units.lean
1719
+ theorems:
1720
+ - Units.isUnit_units_mul
1721
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/IntegralNormalization.lean
1722
+ theorems:
1723
+ - Polynomial.integralNormalization_support
1724
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LocallyIntegrable.lean
1725
+ theorems:
1726
+ - MeasureTheory.IntegrableOn.continuousOn_mul_of_subset
1727
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/NAry.lean
1728
+ theorems:
1729
+ - "Finset.image\u2082_left_comm"
1730
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/FDeriv/RestrictScalars.lean
1731
+ theorems:
1732
+ - hasFDerivAt_of_restrictScalars
1733
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Chebyshev.lean
1734
+ theorems:
1735
+ - sum_div_card_sq_le_sum_sq_div_card
1736
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Padics/RingHoms.lean
1737
+ theorems:
1738
+ - PadicInt.denseRange_int_cast
1739
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Add.lean
1740
+ theorems:
1741
+ - deriv_sub_const
1742
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dual.lean
1743
+ theorems:
1744
+ - TensorProduct.dualDistribInvOfBasis_apply
1745
+ - Subspace.finrank_add_finrank_dualCoannihilator_eq
1746
+ - LinearMap.range_dualMap_le_dualAnnihilator_ker
1747
+ - Submodule.iSup_dualAnnihilator_le_iInf
1748
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/MStructure.lean
1749
+ theorems:
1750
+ - IsLprojection.compl_mul
1751
+ - path: .lake/packages/std/Std/Data/PairingHeap.lean
1752
+ theorems:
1753
+ - Std.PairingHeapImp.Heap.noSibling_merge
1754
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RootsOfUnity/Basic.lean
1755
+ theorems:
1756
+ - IsPrimitiveRoot.of_map_of_injective
1757
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Pointwise.lean
1758
+ theorems:
1759
+ - Finset.preimage_mul_right_one
1760
+ - Finset.op_smul_finset_smul_eq_smul_smul_finset
1761
+ - Finset.inv_smul_mem_iff
1762
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Charpoly/LinearMap.lean
1763
+ theorems:
1764
+ - Matrix.Represents.one
1765
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Noetherian.lean
1766
+ theorems:
1767
+ - isNoetherian_of_fg_of_noetherian
1768
+ - path: .lake/packages/mathlib/Mathlib/Probability/Independence/ZeroOne.lean
1769
+ theorems:
1770
+ - ProbabilityTheory.measure_eq_zero_or_one_of_indepSet_self
1771
+ - ProbabilityTheory.kernel.measure_eq_zero_or_one_of_indepSet_self
1772
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/ProjectiveSpectrum/StructureSheaf.lean
1773
+ theorems:
1774
+ - AlgebraicGeometry.ProjectiveSpectrum.StructureSheaf.SectionSubring.addMem'
1775
+ - path: .lake/packages/mathlib/Mathlib/Topology/Homeomorph.lean
1776
+ theorems:
1777
+ - Homeomorph.symm_map_nhds_eq
1778
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Substructures.lean
1779
+ theorems:
1780
+ - FirstOrder.Language.Substructure.comap_id
1781
+ - path: .lake/packages/mathlib/Mathlib/Topology/AlexandrovDiscrete.lean
1782
+ theorems:
1783
+ - isOpen_iff_forall_specializes
1784
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Products/Bifunctor.lean
1785
+ theorems:
1786
+ - CategoryTheory.Bifunctor.diagonal'
1787
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Digits.lean
1788
+ theorems:
1789
+ - Nat.toDigitsCore_lens_eq
1790
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/SimpleGraph/Connectivity.lean
1791
+ theorems:
1792
+ - SimpleGraph.Walk.edges_copy
1793
+ - SimpleGraph.Walk.support_concat
1794
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Dickson.lean
1795
+ theorems:
1796
+ - Polynomial.map_dickson
1797
+ - path: .lake/packages/mathlib/Mathlib/ModelTheory/Semantics.lean
1798
+ theorems:
1799
+ - FirstOrder.Language.BoundedFormula.realize_toPrenex
1800
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecificLimits/Normed.lean
1801
+ theorems:
1802
+ - isLittleO_pow_const_mul_const_pow_const_pow_of_norm_lt
1803
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Pointwise.lean
1804
+ theorems:
1805
+ - singleton_div_closedBall
1806
+ - path: .lake/packages/mathlib/Mathlib/Analysis/MeanInequalitiesPow.lean
1807
+ theorems:
1808
+ - ENNReal.rpow_add_rpow_le_add
1809
+ - path: .lake/packages/mathlib/Mathlib/Computability/TMToPartrec.lean
1810
+ theorems:
1811
+ - Turing.PartrecToTM2.codeSupp_case
1812
+ - Turing.PartrecToTM2.trNormal_supports
1813
+ - Turing.PartrecToTM2.K'.elim_update_main
1814
+ - Turing.PartrecToTM2.trNormal_respects
1815
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Coprime/Basic.lean
1816
+ theorems:
1817
+ - IsCoprime.of_mul_right_right
1818
+ - path: .lake/packages/mathlib/Mathlib/Data/Sym/Basic.lean
1819
+ theorems:
1820
+ - Sym.map_id'
1821
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/LocalDiffeomorph.lean
1822
+ theorems:
1823
+ - IsLocalDiffeomorphAt.contMDiffAt
1824
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSeminorm/CompareExp.lean
1825
+ theorems:
1826
+ - MeasureTheory.snorm_le_snorm_mul_snorm_of_nnnorm
1827
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/RadonNikodym.lean
1828
+ theorems:
1829
+ - MeasureTheory.Measure.inv_rnDeriv_aux
1830
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteLattice.lean
1831
+ theorems:
1832
+ - iSup_split_single
1833
+ - path: .lake/packages/mathlib/Mathlib/Topology/UniformSpace/Basic.lean
1834
+ theorems:
1835
+ - uniformity_lift_le_swap
1836
+ - UniformSpace.toTopologicalSpace_iInf
1837
+ - Disjoint.exists_uniform_thickening
1838
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Interval.lean
1839
+ theorems:
1840
+ - Nat.Ico_insert_succ_left
1841
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Rearrangement.lean
1842
+ theorems:
1843
+ - Monovary.sum_smul_comp_perm_eq_sum_smul_iff
1844
+ - path: .lake/packages/mathlib/Mathlib/Data/List/AList.lean
1845
+ theorems:
1846
+ - AList.lookup_insert
1847
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/SesquilinearForm.lean
1848
+ theorems:
1849
+ - LinearMap.IsRefl.nondegenerate_of_separatingRight
1850
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/DiophantineApproximation.lean
1851
+ theorems:
1852
+ - Real.exists_rat_eq_convergent
1853
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Jacobson.lean
1854
+ theorems:
1855
+ - Ideal.Polynomial.jacobson_bot_of_integral_localization
1856
+ - path: .lake/packages/mathlib/Mathlib/Data/Vector3.lean
1857
+ theorems:
1858
+ - Vector3.append_left
1859
+ - path: .lake/packages/mathlib/Mathlib/Topology/Homotopy/Product.lean
1860
+ theorems:
1861
+ - Path.Homotopic.comp_pi_eq_pi_comp
1862
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Gluing.lean
1863
+ theorems:
1864
+ - "AlgebraicGeometry.Scheme.GlueData.\u03B9_isoCarrier_inv"
1865
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/ConcreteCategory.lean
1866
+ theorems:
1867
+ - CategoryTheory.Preadditive.epi_iff_surjective'
1868
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Splits.lean
1869
+ theorems:
1870
+ - Polynomial.splits_of_splits_mul'
1871
+ - path: .lake/packages/mathlib/Mathlib/Data/ENNReal/Real.lean
1872
+ theorems:
1873
+ - ENNReal.ofReal_sub
1874
+ - ENNReal.mul_iInf
1875
+ - path: .lake/packages/mathlib/Mathlib/Order/BooleanAlgebra.lean
1876
+ theorems:
1877
+ - inf_sdiff_eq_bot_iff
1878
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Zip.lean
1879
+ theorems:
1880
+ - List.revzip_map_fst
1881
+ - List.map_prod_right_eq_zip
1882
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Normed/Group/Hom.lean
1883
+ theorems:
1884
+ - NormedAddGroupHom.mem_ker
1885
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/NonUnitalSubring/Basic.lean
1886
+ theorems:
1887
+ - "NonUnitalSubring.closure_induction\u2082"
1888
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Group/Measure.lean
1889
+ theorems:
1890
+ - MeasureTheory.Measure.isHaarMeasure_map
1891
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Pi/Basic.lean
1892
+ theorems:
1893
+ - CategoryTheory.isIso_pi_iff
1894
+ - path: .lake/packages/mathlib/Mathlib/Logic/Equiv/List.lean
1895
+ theorems:
1896
+ - Denumerable.list_ofNat_succ
1897
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/Morphisms/FiniteType.lean
1898
+ theorems:
1899
+ - AlgebraicGeometry.locallyOfFiniteType_eq
1900
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Covering/Vitali.lean
1901
+ theorems:
1902
+ - Vitali.exists_disjoint_subfamily_covering_enlargment_closedBall
1903
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Abelian/FunctorCategory.lean
1904
+ theorems:
1905
+ - CategoryTheory.Abelian.FunctorCategory.coimageImageComparison_app'
1906
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Preadditive/OfBiproducts.lean
1907
+ theorems:
1908
+ - CategoryTheory.SemiadditiveOfBinaryBiproducts.isUnital_leftAdd
1909
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Complex/Arg.lean
1910
+ theorems:
1911
+ - Complex.abs_mul_cos_add_sin_mul_I
1912
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Localization/Module.lean
1913
+ theorems:
1914
+ - LinearIndependent.of_isLocalizedModule
1915
+ - path: .lake/packages/mathlib/Mathlib/Data/Real/EReal.lean
1916
+ theorems:
1917
+ - EReal.exists_between_coe_real
1918
+ - EReal.sub_lt_sub_of_lt_of_le
1919
+ - path: .lake/packages/mathlib/Mathlib/Topology/Gluing.lean
1920
+ theorems:
1921
+ - "TopCat.GlueData.eqvGen_of_\u03C0_eq"
1922
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Sub.lean
1923
+ theorems:
1924
+ - MeasureTheory.Measure.sub_apply
1925
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Covering/VitaliFamily.lean
1926
+ theorems:
1927
+ - VitaliFamily.mem_filterAt_iff
1928
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/Nondegenerate.lean
1929
+ theorems:
1930
+ - Matrix.nondegenerate_of_det_ne_zero
1931
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LegendreSymbol/MulCharacter.lean
1932
+ theorems:
1933
+ - MulChar.pow_apply'
1934
+ - path: .lake/packages/mathlib/Mathlib/Order/ModularLattice.lean
1935
+ theorems:
1936
+ - wellFounded_lt_exact_sequence
1937
+ - path: .lake/packages/mathlib/Mathlib/Data/Sym/Sym2.lean
1938
+ theorems:
1939
+ - Sym2.other_spec
1940
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/DedekindDomain/Different.lean
1941
+ theorems:
1942
+ - Submodule.le_traceDual
1943
+ - aeval_derivative_mem_differentIdeal
1944
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/CompactOperator.lean
1945
+ theorems:
1946
+ - IsCompactOperator.continuous
1947
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/CompleteField.lean
1948
+ theorems:
1949
+ - LinearOrderedField.cutMap_bddAbove
1950
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convolution.lean
1951
+ theorems:
1952
+ - BddAbove.continuous_convolution_left_of_integrable
1953
+ - HasCompactSupport.convolution_integrand_bound_left
1954
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Stieltjes.lean
1955
+ theorems:
1956
+ - StieltjesFunction.measure_Ioo
1957
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/InfiniteSum/Basic.lean
1958
+ theorems:
1959
+ - Set.Finite.summable
1960
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Cofinite.lean
1961
+ theorems:
1962
+ - "Filter.coprod\u1D62_cofinite"
1963
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Monoidal/End.lean
1964
+ theorems:
1965
+ - "CategoryTheory.\u03BC_inv_naturality\u2097"
1966
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/MeasureCompProd.lean
1967
+ theorems:
1968
+ - MeasureTheory.Measure.dirac_compProd_apply
1969
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Sublists.lean
1970
+ theorems:
1971
+ - List.sublists'_eq_sublists
1972
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Divisibility/Units.lean
1973
+ theorems:
1974
+ - isRelPrime_mul_unit_right_right
1975
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Units.lean
1976
+ theorems:
1977
+ - Int.isUnit_iff
1978
+ - path: .lake/packages/mathlib/Mathlib/Data/Num/Lemmas.lean
1979
+ theorems:
1980
+ - PosNum.to_nat_inj
1981
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PrincipalIdealDomain.lean
1982
+ theorems:
1983
+ - gcd_isUnit_iff
1984
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Type.lean
1985
+ theorems:
1986
+ - Equiv.Perm.cycleType_eq
1987
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/Parity.lean
1988
+ theorems:
1989
+ - Int.add_one_ediv_two_mul_two_of_odd
1990
+ - Int.ne_of_odd_add
1991
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Additive/Behrend.lean
1992
+ theorems:
1993
+ - Behrend.map_succ
1994
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/Monoid.lean
1995
+ theorems:
1996
+ - Set.image_const_add_Ioi
1997
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ConditionalExpectation/CondexpL2.lean
1998
+ theorems:
1999
+ - MeasureTheory.snorm_condexpL2_le
2000
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Combination.lean
2001
+ theorems:
2002
+ - Finset.affineCombination_eq_of_weightedVSub_eq_zero_of_eq_neg_one
2003
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Choose/Basic.lean
2004
+ theorems:
2005
+ - Nat.choose_one_right
2006
+ - path: .lake/packages/mathlib/Mathlib/Order/Disjoint.lean
2007
+ theorems:
2008
+ - Disjoint.left_le_of_le_sup_left
2009
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Category/Ring/Constructions.lean
2010
+ theorems:
2011
+ - CommRingCat.pushoutCocone_inl
2012
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Indexes.lean
2013
+ theorems:
2014
+ - List.foldlIdx_eq_foldlIdxSpec
2015
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Orientation.lean
2016
+ theorems:
2017
+ - Orientation.abs_volumeForm_apply_of_pairwise_orthogonal
2018
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/GroupAction/Basic.lean
2019
+ theorems:
2020
+ - MulAction.disjoint_image_image_iff
2021
+ - path: .lake/packages/mathlib/Mathlib/Analysis/LocallyConvex/WithSeminorms.lean
2022
+ theorems:
2023
+ - WithSeminorms.partial_sups
2024
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupPower/Order.lean
2025
+ theorems:
2026
+ - zero_pow_le_one
2027
+ - path: .lake/packages/mathlib/Mathlib/Data/Ordmap/Ordset.lean
2028
+ theorems:
2029
+ - Ordnode.balanceL_eq_balance
2030
+ - Ordnode.Raised.add_left
2031
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Nodup.lean
2032
+ theorems:
2033
+ - List.Nodup.erase_get
2034
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/ImproperIntegrals.lean
2035
+ theorems:
2036
+ - integrableOn_exp_Iic
2037
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/InverseFunctionTheorem/ApproximatesLinearOn.lean
2038
+ theorems:
2039
+ - ApproximatesLinearOn.open_image
2040
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Polynomial/Basic.lean
2041
+ theorems:
2042
+ - MvPolynomial.prime_rename_iff
2043
+ - path: .lake/packages/mathlib/Mathlib/Topology/Order/NhdsSet.lean
2044
+ theorems:
2045
+ - nhdsSet_Ici
2046
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Multiplicity.lean
2047
+ theorems:
2048
+ - padicValNat.pow_add_pow
2049
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/Deriv/Basic.lean
2050
+ theorems:
2051
+ - DifferentiableAt.derivWithin
2052
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/RootsOfUnity/Minpoly.lean
2053
+ theorems:
2054
+ - IsPrimitiveRoot.minpoly_eq_pow_coprime
2055
+ - path: .lake/packages/mathlib/Mathlib/Data/List/MinMax.lean
2056
+ theorems:
2057
+ - List.getElem_le_maximum_of_length_pos
2058
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/ContDiff/Defs.lean
2059
+ theorems:
2060
+ - iteratedFDerivWithin_succ_apply_right
2061
+ - contDiffWithinAt_succ_iff_hasFDerivWithinAt'
2062
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Cardinal/Cofinality.lean
2063
+ theorems:
2064
+ - Cardinal.nfpBFamily_lt_ord_of_isRegular
2065
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/MFDeriv/Basic.lean
2066
+ theorems:
2067
+ - mfderiv_comp_of_eq
2068
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Quaternion.lean
2069
+ theorems:
2070
+ - Quaternion.self_mul_star
2071
+ - path: .lake/packages/mathlib/Mathlib/Logic/Denumerable.lean
2072
+ theorems:
2073
+ - Nat.Subtype.ofNat_surjective_aux
2074
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/QuadraticForm/TensorProduct.lean
2075
+ theorems:
2076
+ - QuadraticForm.associated_baseChange
2077
+ - path: .lake/packages/mathlib/Mathlib/Init/Data/Nat/Bitwise.lean
2078
+ theorems:
2079
+ - Nat.bodd_add
2080
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/SpecificFunctions/Deriv.lean
2081
+ theorems:
2082
+ - hasDerivAt_sqrt_mul_log
2083
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PowerSeries/Order.lean
2084
+ theorems:
2085
+ - PowerSeries.coeff_of_lt_order
2086
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/LpSpace.lean
2087
+ theorems:
2088
+ - MeasureTheory.Lp.dist_def
2089
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Manifold/VectorBundle/Basic.lean
2090
+ theorems:
2091
+ - Bundle.contMDiffAt_totalSpace
2092
+ - path: .lake/packages/mathlib/Mathlib/RepresentationTheory/Rep.lean
2093
+ theorems:
2094
+ - Rep.ihom_ev_app_hom
2095
+ - path: .lake/packages/mathlib/Mathlib/Data/Int/GCD.lean
2096
+ theorems:
2097
+ - Int.ne_zero_of_gcd
2098
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Yoneda.lean
2099
+ theorems:
2100
+ - CategoryTheory.isIso_of_yoneda_map_bijective
2101
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Shift/Pullback.lean
2102
+ theorems:
2103
+ - CategoryTheory.pullbackShiftFunctorZero_hom_app
2104
+ - path: .lake/packages/mathlib/Mathlib/Computability/PartrecCode.lean
2105
+ theorems:
2106
+ - Nat.Partrec.Code.eval_prec_zero
2107
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/LeftHomology.lean
2108
+ theorems:
2109
+ - CategoryTheory.ShortComplex.LeftHomologyMapData.cyclesMap_eq
2110
+ - CategoryTheory.ShortComplex.f'_cyclesMap'
2111
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Identities.lean
2112
+ theorems:
2113
+ - WittVector.coeff_p_pow_eq_zero
2114
+ - path: .lake/packages/mathlib/Mathlib/Topology/Instances/ENNReal.lean
2115
+ theorems:
2116
+ - ENNReal.tendsto_nhds_top_iff_nnreal
2117
+ - path: .lake/packages/mathlib/Mathlib/Computability/Halting.lean
2118
+ theorems:
2119
+ - ComputablePred.computable_iff_re_compl_re
2120
+ - path: .lake/packages/mathlib/Mathlib/Data/Fin/Tuple/Basic.lean
2121
+ theorems:
2122
+ - Fin.snoc_init_self
2123
+ - Fin.snoc_zero
2124
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/GammaSpecAdjunction.lean
2125
+ theorems:
2126
+ - "AlgebraicGeometry.\u0393Spec.right_triangle"
2127
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Perm/Cycle/Basic.lean
2128
+ theorems:
2129
+ - Equiv.Perm.isCycleOn_singleton
2130
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Ideal/LocalRing.lean
2131
+ theorems:
2132
+ - LocalRing.isLocalRingHom_residue
2133
+ - path: .lake/packages/mathlib/Mathlib/Data/PFunctor/Multivariate/Basic.lean
2134
+ theorems:
2135
+ - MvPFunctor.comp.get_mk
2136
+ - path: .lake/packages/std/Std/Data/Array/Monadic.lean
2137
+ theorems:
2138
+ - Array.SatisfiesM_anyM
2139
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/SmallObject/Construction.lean
2140
+ theorems:
2141
+ - "CategoryTheory.SmallObject.\u03B9FunctorObj_\u03C0FunctorObj"
2142
+ - path: .lake/packages/mathlib/Mathlib/GroupTheory/Subsemigroup/Center.lean
2143
+ theorems:
2144
+ - Set.neg_mem_center
2145
+ - path: .lake/packages/mathlib/Mathlib/Topology/Category/TopCat/Opens.lean
2146
+ theorems:
2147
+ - TopologicalSpace.Opens.map_eq
2148
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Prod.lean
2149
+ theorems:
2150
+ - Set.univ_prod_univ
2151
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Semisimple.lean
2152
+ theorems:
2153
+ - Module.End.isSemisimple_neg
2154
+ - path: .lake/packages/mathlib/Mathlib/SetTheory/Ordinal/Exponential.lean
2155
+ theorems:
2156
+ - Ordinal.log_opow_mul_add
2157
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Lipschitz.lean
2158
+ theorems:
2159
+ - LipschitzWith.dist
2160
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FractionalIdeal/Operations.lean
2161
+ theorems:
2162
+ - FractionalIdeal.spanSingleton_eq_spanSingleton
2163
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/PiTensorProduct.lean
2164
+ theorems:
2165
+ - PiTensorProduct.induction_on'
2166
+ - path: .lake/packages/mathlib/Mathlib/Data/DFinsupp/Basic.lean
2167
+ theorems:
2168
+ - DFinsupp.extendWith_zero
2169
+ - path: .lake/packages/mathlib/Mathlib/Deprecated/Submonoid.lean
2170
+ theorems:
2171
+ - Submonoid.isSubmonoid
2172
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/LinearPMap.lean
2173
+ theorems:
2174
+ - LinearPMap.mem_graph_snd_inj
2175
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/GroupCompletion.lean
2176
+ theorems:
2177
+ - AddMonoidHom.completion_add
2178
+ - path: .lake/packages/mathlib/Mathlib/Topology/Compactness/LocallyCompact.lean
2179
+ theorems:
2180
+ - exists_mem_nhdsSet_isCompact_mapsTo
2181
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/IdealOperations.lean
2182
+ theorems:
2183
+ - LieSubmodule.lie_sup
2184
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/MonoCoprod.lean
2185
+ theorems:
2186
+ - CategoryTheory.Limits.MonoCoprod.monoCoprod_of_preservesCoprod_of_reflectsMono
2187
+ - path: .lake/packages/mathlib/Mathlib/Topology/Algebra/Ring/Ideal.lean
2188
+ theorems:
2189
+ - QuotientRing.quotientMap_coe_coe
2190
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Ordered.lean
2191
+ theorems:
2192
+ - left_lt_lineMap_iff_lt
2193
+ - path: .lake/packages/mathlib/Mathlib/Analysis/MellinInversion.lean
2194
+ theorems:
2195
+ - rexp_neg_image_aux
2196
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Nilpotent.lean
2197
+ theorems:
2198
+ - LieSubmodule.lowerCentralSeries_eq_lcs_comap
2199
+ - LieModule.isTrivial_of_nilpotencyLength_le_one
2200
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Prod.lean
2201
+ theorems:
2202
+ - Submodule.prod_comap_inl
2203
+ - LinearMap.tailing_sup_tunnel_succ_le_tunnel
2204
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Adjoin.lean
2205
+ theorems:
2206
+ - IntermediateField.adjoin_simple_toSubalgebra_of_integral
2207
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Strict.lean
2208
+ theorems:
2209
+ - DirectedOn.strictConvex_sUnion
2210
+ - path: .lake/packages/mathlib/Mathlib/Data/List/BigOperators/Basic.lean
2211
+ theorems:
2212
+ - List.prod_drop_succ
2213
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/ProjectiveSpectrum/Topology.lean
2214
+ theorems:
2215
+ - ProjectiveSpectrum.vanishingIdeal_iUnion
2216
+ - path: .lake/packages/mathlib/Mathlib/Data/Multiset/Powerset.lean
2217
+ theorems:
2218
+ - Multiset.powersetCard_zero_left
2219
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Ring/BooleanRing.lean
2220
+ theorems:
2221
+ - ofBoolAlg_symmDiff
2222
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/VectorMeasure.lean
2223
+ theorems:
2224
+ - MeasureTheory.VectorMeasure.nonpos_of_restrict_le_zero
2225
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Convex/Segment.lean
2226
+ theorems:
2227
+ - openSegment_eq_Ioo'
2228
+ - path: .lake/packages/mathlib/Mathlib/Control/Fold.lean
2229
+ theorems:
2230
+ - Traversable.toList_spec
2231
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Log/Base.lean
2232
+ theorems:
2233
+ - Real.logb_inv
2234
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Finite/Basic.lean
2235
+ theorems:
2236
+ - ZMod.pow_card_sub_one_eq_one
2237
+ - path: .lake/packages/mathlib/Mathlib/Probability/Martingale/Upcrossing.lean
2238
+ theorems:
2239
+ - MeasureTheory.upperCrossingTime_le
2240
+ - path: .lake/packages/mathlib/Mathlib/Topology/Separation.lean
2241
+ theorems:
2242
+ - Filter.coclosedCompact_eq_cocompact
2243
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/FundamentalGroupoid/InducedMaps.lean
2244
+ theorems:
2245
+ - ContinuousMap.Homotopy.apply_zero_path
2246
+ - path: .lake/packages/mathlib/Mathlib/Order/OmegaCompletePartialOrder.lean
2247
+ theorems:
2248
+ - OmegaCompletePartialOrder.ContinuousHom.map_continuous'
2249
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/TensorProduct/RightExactness.lean
2250
+ theorems:
2251
+ - Algebra.TensorProduct.rTensor_ker
2252
+ - path: .lake/packages/mathlib/Mathlib/Init/Data/Bool/Lemmas.lean
2253
+ theorems:
2254
+ - Bool.and_eq_false_eq_eq_false_or_eq_false
2255
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/NAry.lean
2256
+ theorems:
2257
+ - "Filter.map_map\u2082"
2258
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/BilinearForm.lean
2259
+ theorems:
2260
+ - Matrix.toBilin_comp
2261
+ - path: .lake/packages/mathlib/Mathlib/Order/InitialSeg.lean
2262
+ theorems:
2263
+ - InitialSeg.acc
2264
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Calculus/TangentCone.lean
2265
+ theorems:
2266
+ - uniqueDiffWithinAt_of_mem_nhds
2267
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Star/Subalgebra.lean
2268
+ theorems:
2269
+ - StarSubalgebra.sInf_toSubalgebra
2270
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/Lebesgue.lean
2271
+ theorems:
2272
+ - MeasureTheory.Measure.rnDeriv_smul_left'
2273
+ - path: .lake/packages/mathlib/Mathlib/Data/Finsupp/Defs.lean
2274
+ theorems:
2275
+ - Finsupp.support_single_disjoint
2276
+ - Finsupp.erase_single_ne
2277
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/AffineSpace/Basis.lean
2278
+ theorems:
2279
+ - AffineBasis.affineCombination_coord_eq_self
2280
+ - path: .lake/packages/mathlib/Mathlib/Order/CompleteLatticeIntervals.lean
2281
+ theorems:
2282
+ - Set.Iic.coe_iInf
2283
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/PosPart.lean
2284
+ theorems:
2285
+ - leOnePart_one
2286
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/ShortComplex/HomologicalComplex.lean
2287
+ theorems:
2288
+ - HomologicalComplex.d_pOpcycles
2289
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/ClassGroup.lean
2290
+ theorems:
2291
+ - ClassGroup.mk_eq_one_of_coe_ideal
2292
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/PiL2.lean
2293
+ theorems:
2294
+ - OrthonormalBasis.sum_repr_symm
2295
+ - path: .lake/packages/mathlib/Mathlib/Geometry/Euclidean/Angle/Oriented/Affine.lean
2296
+ theorems:
2297
+ - "Wbtw.oangle\u2083\u2081\u2082_eq_zero"
2298
+ - path: .lake/packages/mathlib/Mathlib/Order/Heyting/Basic.lean
2299
+ theorems:
2300
+ - Disjoint.sup_sdiff_cancel_left
2301
+ - sup_sdiff_distrib
2302
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Matrix.lean
2303
+ theorems:
2304
+ - Matrix.lieConj_symm_apply
2305
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Discriminant.lean
2306
+ theorems:
2307
+ - Algebra.discr_of_matrix_mulVec
2308
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/Condexp.lean
2309
+ theorems:
2310
+ - MeasureTheory.AEStronglyMeasurable.comp_snd_map_prod_id
2311
+ - path: .lake/packages/mathlib/Mathlib/Data/ENNReal/Inv.lean
2312
+ theorems:
2313
+ - ENNReal.mul_lt_of_lt_div
2314
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Homology/HomotopyCategory/HomComplex.lean
2315
+ theorems:
2316
+ - CochainComplex.HomComplex.Cochain.ofHom_injective
2317
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Localization/Away/Basic.lean
2318
+ theorems:
2319
+ - selfZPow_pow_sub
2320
+ - path: .lake/packages/mathlib/Mathlib/Order/Hom/Lattice.lean
2321
+ theorems:
2322
+ - LatticeHom.withTopWithBot_id
2323
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/JacobsonIdeal.lean
2324
+ theorems:
2325
+ - Ideal.exists_mul_sub_mem_of_sub_one_mem_jacobson
2326
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/GCD/Basic.lean
2327
+ theorems:
2328
+ - Nat.gcd_add_self_right
2329
+ - path: .lake/packages/std/Std/Data/String/Lemmas.lean
2330
+ theorems:
2331
+ - String.Iterator.forward_eq_nextn
2332
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Ring/Lemmas.lean
2333
+ theorems:
2334
+ - mul_eq_mul_iff_eq_and_eq_of_pos'
2335
+ - path: .lake/packages/mathlib/Mathlib/Data/List/Perm.lean
2336
+ theorems:
2337
+ - List.length_permutations'Aux
2338
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/FreeCommRing.lean
2339
+ theorems:
2340
+ - FreeCommRing.isSupported_of
2341
+ - path: .lake/packages/mathlib/Mathlib/Data/ZMod/Basic.lean
2342
+ theorems:
2343
+ - ZMod.nontrivial_iff
2344
+ - ZMod.nat_cast_self'
2345
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Category/ModuleCat/Monoidal/Basic.lean
2346
+ theorems:
2347
+ - ModuleCat.MonoidalCategory.associator_naturality
2348
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Intervals/WithBotTop.lean
2349
+ theorems:
2350
+ - WithTop.preimage_coe_Ioc
2351
+ - WithTop.preimage_coe_Iio_top
2352
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/CliffordAlgebra/Basic.lean
2353
+ theorems:
2354
+ - CliffordAlgebra.induction
2355
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/Lift.lean
2356
+ theorems:
2357
+ - Filter.lift_iInf_of_map_univ
2358
+ - path: .lake/packages/mathlib/Mathlib/Topology/UrysohnsBounded.lean
2359
+ theorems:
2360
+ - exists_bounded_mem_Icc_of_closed_of_le
2361
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/Zsqrtd/GaussianInt.lean
2362
+ theorems:
2363
+ - GaussianInt.toComplex_re
2364
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupPower/Basic.lean
2365
+ theorems:
2366
+ - pow_bit0'
2367
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Lie/Submodule.lean
2368
+ theorems:
2369
+ - LieSubmodule.iInf_coe
2370
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/ChainOfDivisors.lean
2371
+ theorems:
2372
+ - coe_factor_orderIso_map_eq_one_iff
2373
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Decomposition/Jordan.lean
2374
+ theorems:
2375
+ - MeasureTheory.SignedMeasure.absolutelyContinuous_ennreal_iff
2376
+ - path: .lake/packages/mathlib/Mathlib/Analysis/Complex/Liouville.lean
2377
+ theorems:
2378
+ - Complex.liouville_theorem_aux
2379
+ - path: .lake/packages/mathlib/Mathlib/Analysis/InnerProductSpace/Positive.lean
2380
+ theorems:
2381
+ - ContinuousLinearMap.isPositive_zero
2382
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Image.lean
2383
+ theorems:
2384
+ - Set.range_subtype_map
2385
+ - path: .lake/packages/mathlib/Mathlib/Combinatorics/Additive/ETransform.lean
2386
+ theorems:
2387
+ - Finset.MulETransform.card
2388
+ - path: .lake/packages/mathlib/Mathlib/Algebra/GroupWithZero/Units/Basic.lean
2389
+ theorems:
2390
+ - Units.mk0_one
2391
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicTopology/DoldKan/Degeneracies.lean
2392
+ theorems:
2393
+ - "AlgebraicTopology.DoldKan.\u03C3_comp_PInfty"
2394
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Sub/Defs.lean
2395
+ theorems:
2396
+ - AddLECancellable.lt_add_of_tsub_lt_right
2397
+ - path: .lake/packages/mathlib/Mathlib/Topology/Category/TopCat/Limits/Products.lean
2398
+ theorems:
2399
+ - TopCat.prodIsoProd_hom_apply
2400
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/IntegralDomain.lean
2401
+ theorems:
2402
+ - sum_hom_units_eq_zero
2403
+ - path: .lake/packages/mathlib/Mathlib/Algebra/Order/Group/Defs.lean
2404
+ theorems:
2405
+ - div_le_div_iff_right
2406
+ - path: .lake/packages/mathlib/Mathlib/Computability/Partrec.lean
2407
+ theorems:
2408
+ - Nat.rfindOpt_mono
2409
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Subsemiring/Basic.lean
2410
+ theorems:
2411
+ - Subsemiring.mem_sSup_of_directedOn
2412
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LegendreSymbol/QuadraticChar/Basic.lean
2413
+ theorems:
2414
+ - quadraticChar_eq_pow_of_char_ne_two'
2415
+ - path: .lake/packages/mathlib/Mathlib/Probability/IdentDistrib.lean
2416
+ theorems:
2417
+ - ProbabilityTheory.IdentDistrib.ae_snd
2418
+ - path: .lake/packages/mathlib/Mathlib/Analysis/NormedSpace/Star/ContinuousFunctionalCalculus.lean
2419
+ theorems:
2420
+ - elementalStarAlgebra.isUnit_of_isUnit_of_isStarNormal
2421
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/Infsep.lean
2422
+ theorems:
2423
+ - Set.infsep_pair_le_toReal_inf
2424
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/WittVector/Basic.lean
2425
+ theorems:
2426
+ - WittVector.ghostFun_sub
2427
+ - path: .lake/packages/mathlib/Mathlib/Data/Nat/Choose/Multinomial.lean
2428
+ theorems:
2429
+ - Nat.multinomial_nil
2430
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/Filtration.lean
2431
+ theorems:
2432
+ - Ideal.isIdempotentElem_iff_eq_bot_or_top_of_localRing
2433
+ - path: .lake/packages/mathlib/Mathlib/FieldTheory/Laurent.lean
2434
+ theorems:
2435
+ - RatFunc.laurentAux_algebraMap
2436
+ - path: .lake/packages/mathlib/Mathlib/Probability/Kernel/CondDistrib.lean
2437
+ theorems:
2438
+ - MeasureTheory.Integrable.integral_norm_condDistrib_map
2439
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Constructions/Prod/Integral.lean
2440
+ theorems:
2441
+ - measurableSet_integrable
2442
+ - path: .lake/packages/mathlib/Mathlib/Data/Finset/Sigma.lean
2443
+ theorems:
2444
+ - Finset.sigma_nonempty
2445
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Terminal.lean
2446
+ theorems:
2447
+ - "CategoryTheory.Limits.\u03B9_colimitConstInitial_hom"
2448
+ - path: .lake/packages/mathlib/Mathlib/Topology/MetricSpace/HausdorffDistance.lean
2449
+ theorems:
2450
+ - Metric.infDist_image
2451
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Triangulated/Pretriangulated.lean
2452
+ theorems:
2453
+ - "CategoryTheory.Pretriangulated.Triangle.mor\u2083_eq_zero_iff_mono\u2081"
2454
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Contraction.lean
2455
+ theorems:
2456
+ - comp_dualTensorHom
2457
+ - path: .lake/packages/mathlib/Mathlib/Order/Filter/ModEq.lean
2458
+ theorems:
2459
+ - Nat.frequently_modEq
2460
+ - path: .lake/packages/mathlib/Mathlib/Data/Set/Pointwise/Interval.lean
2461
+ theorems:
2462
+ - Set.preimage_neg_Ioc
2463
+ - path: .lake/packages/mathlib/Mathlib/Data/PNat/Basic.lean
2464
+ theorems:
2465
+ - PNat.sub_coe
2466
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Measure/Haar/Basic.lean
2467
+ theorems:
2468
+ - MeasureTheory.Measure.haar.index_elim
2469
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Matrix/NonsingularInverse.lean
2470
+ theorems:
2471
+ - Matrix.det_smul_inv_vecMul_eq_cramer_transpose
2472
+ - path: .lake/packages/mathlib/Mathlib/NumberTheory/LucasLehmer.lean
2473
+ theorems:
2474
+ - "LucasLehmer.X.\u03C9_mul_\u03C9b"
2475
+ - path: .lake/packages/mathlib/Mathlib/Analysis/BoxIntegral/Partition/Basic.lean
2476
+ theorems:
2477
+ - BoxIntegral.Prepartition.ofWithBot_le
2478
+ - path: .lake/packages/mathlib/Mathlib/RepresentationTheory/Basic.lean
2479
+ theorems:
2480
+ - Representation.asAlgebraHom_single
2481
+ - path: .lake/packages/mathlib/Mathlib/LinearAlgebra/Dimension/DivisionRing.lean
2482
+ theorems:
2483
+ - rank_dual_eq_card_dual_of_aleph0_le_rank'
2484
+ - path: .lake/packages/mathlib/Mathlib/CategoryTheory/Limits/Shapes/Equalizers.lean
2485
+ theorems:
2486
+ - CategoryTheory.Limits.parallelPair_functor_obj
2487
+ - path: .lake/packages/mathlib/Mathlib/AlgebraicGeometry/EllipticCurve/Group.lean
2488
+ theorems:
2489
+ - WeierstrassCurve.Affine.CoordinateRing.mk_XYIdeal'_mul_mk_XYIdeal'
2490
+ - path: .lake/packages/mathlib/Mathlib/RingTheory/PowerSeries/Trunc.lean
2491
+ theorems:
2492
+ - PowerSeries.trunc_coe_eq_self
2493
+ - path: .lake/packages/mathlib/Mathlib/Analysis/SpecialFunctions/Log/NegMulLog.lean
2494
+ theorems:
2495
+ - Real.negMulLog_one
2496
+ - path: .lake/packages/mathlib/Mathlib/Data/Polynomial/Degree/TrailingDegree.lean
2497
+ theorems:
2498
+ - Polynomial.nextCoeffUp_C_eq_zero
2499
+ - path: .lake/packages/mathlib/Mathlib/MeasureTheory/Function/ConditionalExpectation/Real.lean
2500
+ theorems:
2501
+ - MeasureTheory.snorm_one_condexp_le_snorm
2502
+ - path: .lake/packages/mathlib/Mathlib/Topology/Sheaves/SheafCondition/EqualizerProducts.lean
2503
+ theorems:
2504
+ - "TopCat.Presheaf.SheafConditionEqualizerProducts.res_\u03C0"