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,2912 @@
1
+ name: leandojo_novel_premises_val
2
+ num_files: 451
3
+ language: LEAN
4
+ dfs_data_path_for_retrieval: null
5
+ dfs_metadata_filename_for_retrieval: null
6
+ few_shot_data_path_for_retrieval: null
7
+ few_shot_metadata_filename_for_retrieval: null
8
+ datasets:
9
+ - project: data/benchmarks/mathlib
10
+ files:
11
+ - path: src/data/set/basic.lean
12
+ theorems:
13
+ - set.not_nontrivial_singleton
14
+ - set.ite_inter
15
+ - set.inter_singleton_eq_empty
16
+ - set.subsingleton_coe
17
+ - path: src/data/int/gcd.lean
18
+ theorems:
19
+ - int.lcm_one_right
20
+ - int.dvd_of_mul_dvd_mul_right
21
+ - int.gcd_least_linear
22
+ - nat.gcd_eq_gcd_ab
23
+ - int.dvd_of_dvd_mul_right_of_gcd_one
24
+ - path: src/set_theory/cardinal/cofinality.lean
25
+ theorems:
26
+ - cardinal.mk_subset_mk_lt_cof
27
+ - ordinal.exists_fundamental_sequence
28
+ - ordinal.cof_bsup_le
29
+ - ordinal.cof_eq_one_iff_is_succ
30
+ - ordinal.ord_cof_eq
31
+ - cardinal.mk_bounded_subset
32
+ - ordinal.cof_succ
33
+ - cardinal.lt_cof_power
34
+ - ordinal.is_fundamental_sequence.trans
35
+ - cardinal.deriv_family_lt_ord_lift
36
+ - ordinal.is_fundamental_sequence.succ
37
+ - ordinal.cof_sup_le_lift
38
+ - ordinal.is_fundamental_sequence.cof_eq
39
+ - ordinal.infinite_pigeonhole_set
40
+ - ordinal.cof_le_card
41
+ - path: src/data/real/ennreal.lean
42
+ theorems:
43
+ - ennreal.exists_nnreal_pos_mul_lt
44
+ - set.ord_connected.image_coe_nnreal_ennreal
45
+ - ennreal.pow_strict_mono
46
+ - ennreal.add_halves
47
+ - ennreal.exists_nat_gt
48
+ - ennreal.exists_nat_pos_inv_mul_lt
49
+ - ennreal.le_to_real_sub
50
+ - ennreal.infi_add_infi
51
+ - ennreal.of_real_lt_iff_lt_to_real
52
+ - ennreal.infi_ne_top
53
+ - ennreal.to_nnreal_infi
54
+ - ennreal.Ioo_zero_top_eq_Union_Ico_zpow
55
+ - ennreal.top_div
56
+ - ennreal.exists_le_of_sum_le
57
+ - ennreal.zpow_le_of_le
58
+ - ennreal.inv_le_iff_le_mul
59
+ - ennreal.le_of_forall_pos_le_add
60
+ - ennreal.of_real_eq_of_real_iff
61
+ - ennreal.coe_inv_le
62
+ - ennreal.top_div_of_ne_top
63
+ - ennreal.of_real_div_of_pos
64
+ - ennreal.to_real_eq_to_real_iff'
65
+ - ennreal.bit1_top
66
+ - ennreal.exists_mem_Ico_zpow
67
+ - ennreal.add_thirds
68
+ - path: src/data/num/lemmas.lean
69
+ theorems:
70
+ - num.dvd_to_nat
71
+ - num.le_iff_cmp
72
+ - pos_num.size_to_nat
73
+ - num.nat_size_to_nat
74
+ - znum.of_int_cast
75
+ - num.ppred_to_nat
76
+ - num.bitwise_to_nat
77
+ - num.div_zero
78
+ - znum.dvd_to_int
79
+ - num.add_of_nat'
80
+ - znum.dvd_iff_mod_eq_zero
81
+ - pos_num.cast_add
82
+ - num.cmp_eq
83
+ - num.ldiff_to_nat
84
+ - pos_num.bit1_of_bit1
85
+ - num.cast_bit1
86
+ - pos_num.to_int_eq_succ_pred
87
+ - znum.cast_le
88
+ - num.of_nat'_succ
89
+ - num.succ_of_int'
90
+ - num.cast_add
91
+ - znum.of_nat_cast
92
+ - num.mod_zero
93
+ - znum.of_to_int'
94
+ - path: src/analysis/constant_speed.lean
95
+ theorems:
96
+ - has_unit_speed_natural_parameterization
97
+ - edist_natural_parameterization_eq_zero
98
+ - path: src/data/finset/pointwise.lean
99
+ theorems:
100
+ - finset.preimage_mul_right_one'
101
+ - finset.neg_smul
102
+ - "finset.smul_univ\u2080"
103
+ - finset.smul_univ
104
+ - finset.empty_pow
105
+ - finset.smul_neg
106
+ - finset.pow_subset_pow_of_one_mem
107
+ - finset.pairwise_disjoint_smul_iff
108
+ - finset.preimage_mul_left_one'
109
+ - finset.mem_prod_list_of_fn
110
+ - finset.pow_mem_pow
111
+ - finset.mem_smul_finset
112
+ - path: src/set_theory/cardinal/ordinal.lean
113
+ theorems:
114
+ - cardinal.extend_function_of_lt
115
+ - cardinal.succ_aleph_0
116
+ - cardinal.mul_eq_self
117
+ - cardinal.bit0_lt_bit1
118
+ - cardinal.bit1_eq_self_iff
119
+ - cardinal.add_lt_of_lt
120
+ - cardinal.mk_bounded_set_le
121
+ - cardinal.ord_is_limit
122
+ - cardinal.mk_cardinal
123
+ - cardinal.mk_compl_of_infinite
124
+ - cardinal.add_eq_right_iff
125
+ - cardinal.bit0_le_bit1
126
+ - cardinal.prod_eq_two_power
127
+ - cardinal.bit0_le_bit0
128
+ - cardinal.ord_aleph_eq_enum_card
129
+ - cardinal.mk_bounded_subset_le
130
+ - cardinal.mul_eq_max'
131
+ - cardinal.mk_finsupp_lift_of_infinite'
132
+ - cardinal.aleph_limit
133
+ - path: src/analysis/mean_inequalities.lean
134
+ theorems:
135
+ - real.geom_mean_le_arith_mean_weighted
136
+ - real.rpow_sum_le_const_mul_sum_rpow
137
+ - nnreal.inner_le_Lp_mul_Lq
138
+ - real.Lp_add_le_of_nonneg
139
+ - ennreal.young_inequality
140
+ - real.Lp_add_le_has_sum_of_nonneg
141
+ - real.rpow_sum_le_const_mul_sum_rpow_of_nonneg
142
+ - nnreal.is_greatest_Lp
143
+ - nnreal.geom_mean_le_arith_mean_weighted
144
+ - real.inner_le_Lp_mul_Lq_has_sum_of_nonneg
145
+ - path: src/data/real/pi/wallis.lean
146
+ theorems:
147
+ - real.wallis.tendsto_W_nhds_pi_div_two
148
+ - real.wallis.W_pos
149
+ - path: src/data/set/pointwise/interval.lean
150
+ theorems:
151
+ - set.preimage_const_mul_Iio_of_neg
152
+ - set.preimage_const_add_uIcc
153
+ - set.preimage_mul_const_uIcc
154
+ - set.preimage_const_mul_Ici_of_neg
155
+ - set.preimage_const_sub_uIcc
156
+ - set.preimage_const_mul_Icc_of_neg
157
+ - set.image_affine_Icc'
158
+ - set.preimage_const_mul_Ioi_of_neg
159
+ - set.preimage_const_mul_Ioc_of_neg
160
+ - set.preimage_const_mul_Ioo_of_neg
161
+ - path: src/data/fintype/sum.lean
162
+ theorems:
163
+ - finset.exists_equiv_extend_of_card_eq
164
+ - path: src/data/finite/defs.lean
165
+ theorems:
166
+ - finite.of_equiv
167
+ - path: src/data/real/hyperreal.lean
168
+ theorems:
169
+ - hyperreal.infinite_pos_mul_of_infinite_pos_not_infinitesimal_pos
170
+ - hyperreal.infinite_iff_infinite_abs
171
+ - hyperreal.infinite_neg_iff_infinite_of_neg
172
+ - hyperreal.is_st_le_of_le
173
+ - hyperreal.is_st_of_tendsto
174
+ - hyperreal.not_infinite_real
175
+ - hyperreal.infinite_neg_mul_of_not_infinitesimal_pos_infinite_neg
176
+ - hyperreal.infinitesimal_iff_infinite_inv
177
+ - hyperreal.infinitesimal_neg_iff_infinite_neg_inv
178
+ - path: src/model_theory/encoding.lean
179
+ theorems:
180
+ - first_order.language.bounded_formula.list_decode_encode_list
181
+ - first_order.language.term.list_decode_encode_list
182
+ - first_order.language.term.card_sigma
183
+ - path: src/data/list/cycle.lean
184
+ theorems:
185
+ - cycle.chain_of_pairwise
186
+ - cycle.subsingleton.nodup
187
+ - cycle.chain_singleton
188
+ - cycle.prev_mem
189
+ - list.next_ne_head_ne_last
190
+ - cycle.next_mem
191
+ - cycle.mem_lists_iff_coe_eq
192
+ - list.prev_nth_le
193
+ - cycle.next_reverse_eq_prev
194
+ - list.is_rotated_prev_eq
195
+ - list.prev_reverse_eq_next
196
+ - path: src/analysis/special_functions/gaussian.lean
197
+ theorems:
198
+ - complex.Gamma_one_half_eq
199
+ - integral_gaussian_Ioi
200
+ - gaussian_fourier.integrable_cexp_neg_mul_sq_add_real_mul_I
201
+ - integrable_on_rpow_mul_exp_neg_mul_sq
202
+ - integral_gaussian_sq_complex
203
+ - fourier_transform_gaussian_pi
204
+ - is_o_exp_neg_mul_sq_cocompact
205
+ - integral_gaussian_complex
206
+ - integral_mul_cexp_neg_mul_sq
207
+ - real.tsum_exp_neg_mul_int_sq
208
+ - integrable_rpow_mul_exp_neg_mul_sq
209
+ - path: src/data/list/prime.lean
210
+ theorems:
211
+ - perm_of_prod_eq_prod
212
+ - mem_list_primes_of_dvd_prod
213
+ - path: src/analysis/special_functions/pow_deriv.lean
214
+ theorems:
215
+ - real.cont_diff_rpow_const_of_le
216
+ - complex.has_strict_fderiv_at_cpow
217
+ - has_deriv_at_of_real_cpow
218
+ - path: src/data/polynomial/ring_division.lean
219
+ theorems:
220
+ - polynomial.roots_X_pow
221
+ - polynomial.coeff_coe_units_zero_ne_zero
222
+ - polynomial.mem_roots'
223
+ - polynomial.exists_prod_multiset_X_sub_C_mul
224
+ - polynomial.root_set_zero
225
+ - polynomial.card_roots_sub_C
226
+ - polynomial.zero_of_eval_zero
227
+ - polynomial.roots_list_prod
228
+ - polynomial.root_multiplicity_X_sub_C_self
229
+ - polynomial.eq_root_multiplicity_map
230
+ - polynomial.monic.not_irreducible_iff_exists_add_mul_eq_coeff
231
+ - polynomial.funext
232
+ - polynomial.roots_monomial
233
+ - polynomial.bUnion_roots_finite
234
+ - polynomial.degree_le_of_dvd
235
+ - polynomial.nat_degree_multiset_prod_X_sub_C_eq_card
236
+ - polynomial.pow_root_multiplicity_not_dvd
237
+ - path: src/data/list/big_operators/lemmas.lean
238
+ theorems:
239
+ - unop_map_list_prod
240
+ - list.neg_one_mem_of_prod_eq_neg_one
241
+ - path: src/data/dfinsupp/multiset.lean
242
+ theorems:
243
+ - multiset.to_dfinsupp_singleton
244
+ - multiset.to_dfinsupp_le_to_dfinsupp
245
+ - path: src/data/polynomial/mirror.lean
246
+ theorems:
247
+ - polynomial.mirror_nat_trailing_degree
248
+ - polynomial.mirror_leading_coeff
249
+ - polynomial.mirror_smul
250
+ - polynomial.coeff_mirror
251
+ - path: src/data/W/constructions.lean
252
+ theorems:
253
+ - W_type.right_inv_nat
254
+ - path: src/data/list/permutation.lean
255
+ theorems:
256
+ - list.permutations_append
257
+ - list.length_foldr_permutations_aux2
258
+ - list.map_permutations_aux
259
+ - list.map_permutations
260
+ - list.map_permutations_aux2
261
+ - path: src/data/ordmap/ordset.lean
262
+ theorems:
263
+ - ordnode.all_node4_r
264
+ - ordnode.find_max'_dual
265
+ - ordnode.find_max_dual
266
+ - ordnode.to_list_node
267
+ - ordnode.valid'.dual_iff
268
+ - ordset.pos_size_of_mem
269
+ - ordnode.dual_insert
270
+ - ordnode.valid'.map_aux
271
+ - ordnode.dual_node4_r
272
+ - "ordnode.valid'.merge_aux\u2081"
273
+ - ordnode.all_rotate_l
274
+ - ordnode.all_balance'
275
+ - ordnode.balance_r_eq_balance'
276
+ - path: src/data/polynomial/integral_normalization.lean
277
+ theorems:
278
+ - "polynomial.integral_normalization_eval\u2082_eq_zero"
279
+ - polynomial.support_integral_normalization
280
+ - path: src/data/set/intervals/basic.lean
281
+ theorems:
282
+ - set.Ioc_inter_Iic
283
+ - set.Ioc_union_Ioi
284
+ - set.Ioc_inter_Ioi
285
+ - set.Iic_union_Ioc
286
+ - set.Iic_union_Icc
287
+ - set.Icc_diff_Ioo_same
288
+ - set.Ioo_union_Ioi
289
+ - set.Ioc_union_Ioc
290
+ - path: src/data/finsupp/basic.lean
291
+ theorems:
292
+ - finsupp.prod_option_index
293
+ - finsupp.sum_comap_domain
294
+ - finsupp.comap_domain_single
295
+ - finsupp.filter_curry
296
+ - finsupp.subtype_domain_eq_zero_iff'
297
+ - finsupp.mem_graph_iff
298
+ - finsupp.filter_eq_self_iff
299
+ - finsupp.comap_smul_apply
300
+ - finsupp.prod_filter_mul_prod_filter_not
301
+ - finsupp.sigma_sum
302
+ - path: src/set_theory/cardinal/basic.lean
303
+ theorems:
304
+ - cardinal.mk_preimage_of_injective_lift
305
+ - cardinal.mk_subset_ge_of_subset_image
306
+ - cardinal.lift_prod
307
+ - cardinal.aleph_0_mul_nat
308
+ - cardinal.sum_nat_eq_add_sum_succ
309
+ - cardinal.to_part_enat_cast
310
+ - cardinal.nat_add_aleph_0
311
+ - cardinal.prod_eq_zero
312
+ - cardinal.mk_subset_ge_of_subset_image_lift
313
+ - cardinal.to_nat_eq_one
314
+ - cardinal.two_le_iff'
315
+ - cardinal.power_lt_aleph_0
316
+ - cardinal.infinite_iff
317
+ - cardinal.bdd_above_image
318
+ - cardinal.mk_emptyc_iff
319
+ - cardinal.sum_add_distrib
320
+ - cardinal.lt_aleph_0_iff_finite
321
+ - cardinal.card_le_of
322
+ - cardinal.mk_eq_two_iff'
323
+ - cardinal.mk_le_aleph_0_iff
324
+ - cardinal.lt_aleph_0
325
+ - cardinal.lt_wf
326
+ - cardinal.bdd_above_range
327
+ - cardinal.three_le
328
+ - path: src/data/seq/computation.lean
329
+ theorems:
330
+ - computation.eq_thinkN
331
+ - computation.of_results_think
332
+ - computation.lift_rel_think_right
333
+ - computation.results_think
334
+ - computation.mem_of_get_eq
335
+ - computation.lift_rel_aux.swap
336
+ - computation.results_thinkN_ret
337
+ - computation.of_results_bind
338
+ - computation.bind_ret'
339
+ - path: src/data/nat/dist.lean
340
+ theorems:
341
+ - nat.dist_eq_zero
342
+ - nat.dist_mul_left
343
+ - path: src/data/nat/pairing.lean
344
+ theorems:
345
+ - nat.mkpair_lt_mkpair_left
346
+ - nat.mkpair_unpair
347
+ - set.Union_unpair_prod
348
+ - nat.mkpair_unpair'
349
+ - path: src/data/nat/order/basic.lean
350
+ theorems:
351
+ - nat.not_dvd_of_between_consec_multiples
352
+ - nat.mod_mul_left_div_self
353
+ - nat.le_half_of_half_lt_sub
354
+ - nat.div_eq_self
355
+ - nat.add_pos_iff_pos_or_pos
356
+ - nat.add_eq_min_iff
357
+ - path: src/data/set/intervals/surj_on.lean
358
+ theorems:
359
+ - surj_on_Ioc_of_monotone_surjective
360
+ - path: src/data/pnat/factors.lean
361
+ theorems:
362
+ - pnat.factor_multiset_pow
363
+ - prime_multiset.prod_sup
364
+ - prime_multiset.prod_of_pnat_list
365
+ - prime_multiset.prod_add
366
+ - prime_multiset.prod_of_nat_list
367
+ - pnat.factor_multiset_gcd
368
+ - prime_multiset.prod_of_pnat_multiset
369
+ - pnat.factor_multiset_of_prime
370
+ - pnat.prod_factor_multiset
371
+ - prime_multiset.factor_multiset_prod
372
+ - prime_multiset.prod_inf
373
+ - path: src/data/dfinsupp/ne_locus.lean
374
+ theorems:
375
+ - dfinsupp.ne_locus_self_sub_right
376
+ - dfinsupp.ne_locus_self_sub_left
377
+ - path: src/set_theory/ordinal/topology.lean
378
+ theorems:
379
+ - ordinal.is_open_iff
380
+ - ordinal.enum_ord_is_normal_iff_is_closed
381
+ - ordinal.is_normal_iff_strict_mono_and_continuous
382
+ - path: src/data/pnat/xgcd.lean
383
+ theorems:
384
+ - pnat.gcd_eq
385
+ - pnat.gcd_props
386
+ - pnat.gcd_a'_coe
387
+ - path: src/analysis/special_functions/exponential.lean
388
+ theorems:
389
+ - has_strict_deriv_at_exp_of_mem_ball
390
+ - has_fderiv_at_exp_of_mem_ball
391
+ - "complex.exp_eq_exp_\u2102"
392
+ - has_strict_fderiv_at_exp_zero_of_radius_pos
393
+ - path: src/data/nat/basic.lean
394
+ theorems:
395
+ - nat.add_mod
396
+ - nat.add_mod_eq_add_mod_left
397
+ - nat.forall_lt_succ
398
+ - nat.le_rec_on_succ
399
+ - nat.strong_rec_on_beta'
400
+ - nat.decreasing_induction_trans
401
+ - path: src/model_theory/semantics.lean
402
+ theorems:
403
+ - first_order.language.model_infinite_theory_iff
404
+ - first_order.language.bounded_formula.realize_sup
405
+ - first_order.language.formula.realize_relabel
406
+ - first_order.language.term.realize_restrict_var
407
+ - first_order.language.model_nonempty_theory_iff
408
+ - first_order.language.sentence.realize_card_ge
409
+ - first_order.language.bounded_formula.realize_foldr_sup
410
+ - first_order.language.term.realize_restrict_var_left
411
+ - first_order.language.bounded_formula.realize_lift_at_one
412
+ - first_order.language.bounded_formula.realize_relabel
413
+ - "first_order.language.bounded_formula.realize_rel\u2082"
414
+ - first_order.language.term.realize_vars_to_constants
415
+ - first_order.language.bounded_formula.realize_to_prenex
416
+ - first_order.language.Lhom.realize_on_term
417
+ - "first_order.language.formula.realize_rel\u2082"
418
+ - first_order.language.formula.realize_equiv_sentence_symm_con
419
+ - first_order.language.bounded_formula.realize_subst
420
+ - first_order.language.Lhom.on_Theory_model
421
+ - "first_order.language.term.realize_functions_apply\u2082"
422
+ - first_order.language.bounded_formula.realize_cast_le_of_eq
423
+ - first_order.language.bounded_formula.realize_to_prenex_imp_right
424
+ - first_order.language.bounded_formula.realize_to_prenex_imp
425
+ - first_order.language.realize_iff_of_model_complete_theory
426
+ - path: src/data/mv_polynomial/equiv.lean
427
+ theorems:
428
+ - mv_polynomial.fin_succ_equiv_apply
429
+ - mv_polynomial.fin_succ_equiv_eq
430
+ - path: src/data/hash_map.lean
431
+ theorems:
432
+ - hash_map.find_erase_eq
433
+ - hash_map.keys_empty
434
+ - hash_map.not_contains_empty
435
+ - hash_map.find_insert
436
+ - hash_map.mem_erase
437
+ - hash_map.insert_lemma
438
+ - hash_map.append_of_modify
439
+ - bucket_array.mem_as_list
440
+ - hash_map.valid.as_list_nodup
441
+ - path: src/data/list/basic.lean
442
+ theorems:
443
+ - list.sublist_or_mem_of_sublist
444
+ - list.last'_append
445
+ - list.mem_erase_of_ne
446
+ - list.nth_update_nth_eq
447
+ - list.last_eq_of_concat_eq
448
+ - list.scanr_cons
449
+ - list.map_diff
450
+ - list.map_foldl_erase
451
+ - list.foldl_eq_of_comm_of_assoc
452
+ - list.init_append_of_ne_nil
453
+ - list.enum_from_cons'
454
+ - list.nth_le_length_sub_one
455
+ - list.last_replicate_succ
456
+ - list.sublist_replicate_iff
457
+ - list.length_filter_map_le
458
+ - list.nth_le_reverse_aux2
459
+ - list.to_chunks_join
460
+ - list.split_on_p_aux_nil
461
+ - list.extractp_eq_find_erasep
462
+ - list.last_eq_nth_le
463
+ - list.split_on_intercalate
464
+ - list.map_filter
465
+ - list.take_while_idem
466
+ - list.diff_cons_right
467
+ - list.to_chunks_length_le
468
+ - list.modify_nth_tail_modify_nth_tail_le
469
+ - "list.map\u2082_right_eq_map\u2082"
470
+ - list.map_comp_map
471
+ - list.nth_le_enum
472
+ - list.filter_eq_self
473
+ - list.map_eq_bind
474
+ - list.concat_eq_append
475
+ - list.erase_append_left
476
+ - list.map_subset_iff
477
+ - list.mfoldl_append
478
+ - list.cons_diff
479
+ - "list.map\u2082_right_eq_map\u2082_right'"
480
+ - list.nth_update_nth_ne
481
+ - list.update_nth_length
482
+ - list.take_add
483
+ - list.cons_eq_append_iff
484
+ - list.length_erase_add_one
485
+ - list.map_filter_map_of_inv
486
+ - list.update_nth_eq_take_cons_drop
487
+ - list.foldl_eq_foldr
488
+ - path: src/data/mv_polynomial/rename.lean
489
+ theorems:
490
+ - mv_polynomial.support_rename_of_injective
491
+ - mv_polynomial.coeff_rename_map_domain
492
+ - mv_polynomial.coeff_rename_ne_zero
493
+ - mv_polynomial.rename_monomial
494
+ - path: src/data/finset/basic.lean
495
+ theorems:
496
+ - finset.piecewise_singleton
497
+ - finset.insert_inter_distrib
498
+ - finset.erase_inter_comm
499
+ - finset.mem_disj_Union
500
+ - finset.sdiff_erase_self
501
+ - finset.mem_bUnion
502
+ - finset.disj_union_singleton
503
+ - finset.nonempty_iff_eq_singleton_default
504
+ - finset.sdiff_erase
505
+ - finset.to_list_eq_singleton_iff
506
+ - list.to_finset_surj_on
507
+ - finset.ssubset_iff_exists_cons_subset
508
+ - finset.inter_insert_of_not_mem
509
+ - finset.insert_erase
510
+ - multiset.to_finset_bind_dedup
511
+ - finset.erase_cons_of_ne
512
+ - finset.piecewise_mem_set_pi
513
+ - finset.disjoint_bUnion_left
514
+ - path: src/data/list/rotate.lean
515
+ theorems:
516
+ - list.is_rotated_singleton_iff'
517
+ - list.singleton_eq_rotate_iff
518
+ - list.is_rotated_cyclic_permutations_iff
519
+ - list.rotate_eq_iff
520
+ - list.head'_rotate
521
+ - list.rotate_eq_rotate'
522
+ - list.nth_le_rotate
523
+ - list.nodup.cyclic_permutations
524
+ - list.is_rotated.map
525
+ - list.rotate_eq_self_iff_eq_replicate
526
+ - list.cyclic_permutations_eq_singleton_iff
527
+ - list.cyclic_permutations_of_ne_nil
528
+ - path: src/data/list/sigma.lean
529
+ theorems:
530
+ - list.lookup_dedupkeys
531
+ - list.lookup_all_length_le_one
532
+ - list.nodupkeys.kunion
533
+ - list.kreplace_self
534
+ - list.kunion_nil
535
+ - list.mem_lookup
536
+ - list.kerase_comm
537
+ - list.kreplace_nodupkeys
538
+ - path: src/data/pequiv.lean
539
+ theorems:
540
+ - pequiv.trans_symm_eq_iff_forall_is_some
541
+ - pequiv.self_trans_symm
542
+ - pequiv.symm_trans_self
543
+ - path: src/analysis/special_functions/trigonometric/arctan_deriv.lean
544
+ theorems:
545
+ - real.continuous_at_tan
546
+ - real.has_strict_deriv_at_tan
547
+ - path: src/data/finmap.lean
548
+ theorems:
549
+ - finmap.disjoint_union_right
550
+ - finmap.mem_singleton
551
+ - finmap.replace_to_finmap
552
+ - finmap.erase_to_finmap
553
+ - finmap.lookup_list_to_finmap
554
+ - finmap.keys_erase_to_finset
555
+ - finmap.not_mem_erase_self
556
+ - finmap.lookup_singleton_eq
557
+ - finmap.disjoint_union_left
558
+ - finmap.erase_erase
559
+ - finmap.union_comm_of_disjoint
560
+ - path: src/analysis/special_functions/pow.lean
561
+ theorems:
562
+ - nnreal.pow_nat_rpow_nat_inv
563
+ - real.rpow_sub_nat
564
+ - real.rpow_sum_of_nonneg
565
+ - ennreal.one_lt_rpow
566
+ - real.abs_rpow_le_abs_rpow
567
+ - real.rpow_inv_lt_iff_of_neg
568
+ - ennreal.rpow_le_one_of_one_le_of_neg
569
+ - real.one_lt_rpow_of_pos_of_lt_one_of_neg
570
+ - ennreal.rpow_one
571
+ - ennreal.rpow_lt_rpow_of_exponent_gt
572
+ - real.rpow_lt_one_iff
573
+ - ennreal.continuous_at_rpow_const_of_pos
574
+ - complex.cpow_conj
575
+ - real.abs_log_mul_self_rpow_lt
576
+ - ennreal.inv_rpow
577
+ - complex.continuous_at_cpow_of_re_pos
578
+ - complex.is_Theta_cpow_const_rpow
579
+ - real.continuous_at_rpow_of_pos
580
+ - nnreal.eventually_pow_one_div_le
581
+ - real.exists_rat_pow_btwn
582
+ - continuous_at_cpow
583
+ - ennreal.rpow_lt_one
584
+ - complex.continuous_at_cpow_zero_of_re_pos
585
+ - ennreal.one_lt_rpow_of_pos_of_lt_one_of_neg
586
+ - real.eq_zero_rpow_iff
587
+ - path: src/data/sym/basic.lean
588
+ theorems:
589
+ - sym_option_succ_equiv.decode_encode
590
+ - sym.filter_ne_fill
591
+ - sym.map_cons
592
+ - path: src/data/finset/image.lean
593
+ theorems:
594
+ - finset.image_image
595
+ - finset.image_symm_diff
596
+ - finset.map_insert
597
+ - finset.range_add
598
+ - path: src/data/polynomial/degree/lemmas.lean
599
+ theorems:
600
+ - polynomial.coeff_mul_of_nat_degree_le
601
+ - polynomial.degree_sum_eq_of_disjoint
602
+ - polynomial.nat_degree_mul_C
603
+ - polynomial.nat_degree_C_mul
604
+ - polynomial.nat_degree_comp
605
+ - polynomial.nat_degree_sum_eq_of_disjoint
606
+ - path: src/data/fin/tuple/basic.lean
607
+ theorems:
608
+ - fin.cons_injective_iff
609
+ - fin.insert_nth_apply_succ_above
610
+ - fin.insert_nth_mem_Icc
611
+ - fin.insert_nth_last
612
+ - fin.range_cons
613
+ - fin.insert_nth_last'
614
+ - fin.insert_nth_zero'
615
+ - fin.snoc_comp_nat_add
616
+ - path: src/data/nat/prime.lean
617
+ theorems:
618
+ - nat.prime_mul_iff
619
+ - nat.min_fac_has_prop
620
+ - nat.min_fac_eq_two_iff
621
+ - nat.eq_one_iff_not_exists_prime_dvd
622
+ - nat.min_fac_le_of_dvd
623
+ - path: src/data/fin/interval.lean
624
+ theorems:
625
+ - fin.card_Ioi
626
+ - fin.card_Ico
627
+ - fin.map_subtype_embedding_Icc
628
+ - fin.card_fintype_Ioo
629
+ - fin.card_fintype_Icc
630
+ - fin.card_Iic
631
+ - fin.card_fintype_Ici
632
+ - fin.map_subtype_embedding_Iic
633
+ - fin.card_fintype_Iic
634
+ - fin.map_subtype_embedding_Ioc
635
+ - fin.card_Ioc
636
+ - path: src/analysis/mean_inequalities_pow.lean
637
+ theorems:
638
+ - ennreal.rpow_add_rpow_le
639
+ - ennreal.rpow_add_le_add_rpow
640
+ - nnreal.add_rpow_le_rpow_add
641
+ - nnreal.rpow_add_le_mul_rpow_add_rpow
642
+ - nnreal.add_rpow_le_one_of_add_le_one
643
+ - nnreal.pow_arith_mean_le_arith_mean_pow
644
+ - nnreal.rpow_add_rpow_le
645
+ - ennreal.rpow_arith_mean_le_arith_mean2_rpow
646
+ - nnreal.rpow_add_le_add_rpow
647
+ - path: src/analysis/special_functions/complex/log.lean
648
+ theorems:
649
+ - complex.log_inv_eq_ite
650
+ - complex.exp_eq_one_iff
651
+ - complex.tendsto_log_nhds_within_im_nonneg_of_re_neg_of_im_zero
652
+ - complex.exp_eq_exp_iff_exists_int
653
+ - path: src/data/nat/gcd/basic.lean
654
+ theorems:
655
+ - nat.coprime_mul_right_add_left
656
+ - nat.gcd_mul_of_coprime_of_dvd
657
+ - nat.lcm_self
658
+ - nat.gcd_mul_right_right
659
+ - nat.coprime_add_mul_right_left
660
+ - nat.pow_dvd_pow_iff
661
+ - nat.gcd_gcd_self_left_left
662
+ - path: src/data/polynomial/hasse_deriv.lean
663
+ theorems:
664
+ - polynomial.hasse_deriv_comp
665
+ - polynomial.nat_degree_hasse_deriv_le
666
+ - path: src/analysis/convex/side.lean
667
+ theorems:
668
+ - affine_subspace.is_connected_set_of_w_opp_side
669
+ - affine_subspace.is_preconnected_set_of_w_same_side
670
+ - affine_subspace.not_w_same_side_bot
671
+ - affine_subspace.not_w_opp_side_bot
672
+ - affine_subspace.set_of_w_same_side_eq_image2
673
+ - affine_subspace.s_opp_side_vadd_right_iff
674
+ - path: src/data/finset/sym.lean
675
+ theorems:
676
+ - finset.sym_eq_empty
677
+ - finset.mk_mem_sym2_iff
678
+ - finset.not_is_diag_mk_of_mem_off_diag
679
+ - finset.sym_nonempty
680
+ - path: src/data/sym/card.lean
681
+ theorems:
682
+ - sym.card_sym_fin_eq_multichoose
683
+ - sym2.card_subtype_diag
684
+ - sym2.card_subtype_not_diag
685
+ - path: src/data/fintype/big_operators.lean
686
+ theorems:
687
+ - fintype.prod_fiberwise
688
+ - fintype.prod_eq_mul
689
+ - finset.prod_fin_eq_prod_range
690
+ - finset.prod_univ_sum
691
+ - path: src/data/finset/n_ary.lean
692
+ theorems:
693
+ - "finset.image_image\u2082_antidistrib_right"
694
+ - "finset.image\u2082_right_comm"
695
+ - "finset.subset_image\u2082"
696
+ - "finset.card_le_card_image\u2082_right"
697
+ - "finset.image\u2082_insert_right"
698
+ - "finset.image_image\u2082_antidistrib"
699
+ - "finset.mem_image\u2082_iff"
700
+ - "finset.image\u2082_inter_subset_right"
701
+ - "finset.image\u2082_inter_right"
702
+ - finset.image_uncurry_product
703
+ - "finset.image\u2082_image\u2082_image\u2082_comm"
704
+ - "finset.image\u2082_inter_subset_left"
705
+ - "finset.image\u2082_curry"
706
+ - "finset.image\u2082_left_comm"
707
+ - "finset.image_image\u2082_antidistrib_left"
708
+ - path: src/analysis/convex/between.lean
709
+ theorems:
710
+ - wbtw_iff_same_ray_vsub
711
+ - mem_vsub_const_affine_segment
712
+ - collinear.wbtw_or_wbtw_or_wbtw
713
+ - mem_const_vsub_affine_segment
714
+ - sbtw_point_reflection_of_ne
715
+ - sbtw_vadd_const_iff
716
+ - wbtw.trans_left_right
717
+ - sbtw_iff_right_ne_and_left_mem_image_IoI
718
+ - sbtw_line_map_iff
719
+ - wbtw_comm
720
+ - mem_const_vadd_affine_segment
721
+ - sbtw.affine_combination_of_mem_affine_span_pair
722
+ - path: src/data/finset/lattice.lean
723
+ theorems:
724
+ - finset.card_le_of_interleaved
725
+ - finset.inf_sdiff_right
726
+ - finset.max_erase_ne_self
727
+ - finset.mem_sup
728
+ - finset.min'_mem
729
+ - finset.comp_sup'_eq_sup'_comp
730
+ - finset.is_glb_mem
731
+ - finset.sup_sdiff_left
732
+ - finset.sup_le_iff
733
+ - finset.le_sup'_iff
734
+ - path: src/set_theory/ordinal/exponential.lean
735
+ theorems:
736
+ - ordinal.opow_limit
737
+ - ordinal.opow_mul_add_lt_opow_succ
738
+ - ordinal.log_mod_opow_log_lt_log_self
739
+ - ordinal.log_eq_zero
740
+ - ordinal.opow_succ
741
+ - ordinal.opow_zero
742
+ - path: src/model_theory/basic.lean
743
+ theorems:
744
+ - first_order.language.embedding.comp_to_hom
745
+ - path: src/data/finset/nat_antidiagonal.lean
746
+ theorems:
747
+ - finset.nat.map_swap_antidiagonal
748
+ - finset.nat.mem_antidiagonal
749
+ - path: src/data/multiset/basic.lean
750
+ theorems:
751
+ - multiset.count_singleton
752
+ - multiset.le_inter
753
+ - multiset.union_add_inter
754
+ - multiset.map_count_true_eq_filter_card
755
+ - multiset.sub_eq_fold_erase
756
+ - multiset.count_map_eq_count
757
+ - multiset.eq_union_right
758
+ - multiset.rel_eq
759
+ - multiset.foldl_induction'
760
+ - multiset.sizeof_lt_sizeof_of_mem
761
+ - multiset.count_sub
762
+ - multiset.le_cons_of_not_mem
763
+ - multiset.rel_map_right
764
+ - multiset.singleton_inj
765
+ - multiset.foldr_induction'
766
+ - multiset.add_eq_union_iff_disjoint
767
+ - multiset.erase_add_left_neg
768
+ - multiset.disjoint_cons_right
769
+ - multiset.map_union
770
+ - multiset.count_map_eq_count'
771
+ - path: src/data/rat/nnrat.lean
772
+ theorems:
773
+ - rat.to_nnrat_inv
774
+ - rat.to_nnrat_bit1
775
+ - path: src/data/real/basic.lean
776
+ theorems:
777
+ - real.cauchy_sub
778
+ - real.of_cauchy_inf
779
+ - real.Inf_le_iff
780
+ - real.mk_le
781
+ - real.mk_mul
782
+ - real.mul_pos
783
+ - real.Inf_nonpos
784
+ - real.is_glb_Inf
785
+ - real.add_lt_add_iff_left
786
+ - real.mk_le_of_forall_le
787
+ - real.csupr_empty
788
+ - real.lt_cauchy
789
+ - path: src/data/multiset/antidiagonal.lean
790
+ theorems:
791
+ - multiset.antidiagonal_eq_map_powerset
792
+ - multiset.antidiagonal_cons
793
+ - multiset.mem_antidiagonal
794
+ - path: src/analysis/special_functions/exp.lean
795
+ theorems:
796
+ - complex.comap_exp_nhds_zero
797
+ - real.is_Theta_exp_comp_one
798
+ - real.tendsto_div_pow_mul_exp_add_at_top
799
+ - path: src/data/buffer/parser/basic.lean
800
+ theorems:
801
+ - parser.unfailing.sat
802
+ - parser.static.one_of'_iff
803
+ - parser.step.fix
804
+ - parser.mono.fix
805
+ - parser.many_char1_eq_done
806
+ - parser.static.one_of_iff
807
+ - parser.bounded.foldr_core
808
+ - parser.sep_by_eq_done_nil
809
+ - parser.prog.fix
810
+ - parser.str_eq_char_buf
811
+ - parser.bounded.fix
812
+ - parser.bounded.many_char
813
+ - parser.orelse_pure_eq_fail
814
+ - parser.mmap_eq_done
815
+ - parser.many'_eq_done
816
+ - parser.many_char1_ne_empty
817
+ - parser.static.fix
818
+ - parser.digit_eq_fail
819
+ - parser.eof_eq_done
820
+ - parser.bounded.decorate_errors_iff
821
+ - parser.bounded.foldr
822
+ - path: src/data/list/perm.lean
823
+ theorems:
824
+ - list.length_permutations_aux
825
+ - list.perm.take_inter
826
+ - list.erase_cons_subperm_cons_erase
827
+ - list.perm_option_to_list
828
+ - list.subperm.exists_of_length_lt
829
+ - list.perm_inv_core
830
+ - list.mem_permutations_of_perm_lemma
831
+ - list.mem_permutations_aux_of_perm
832
+ - list.nodup_permutations
833
+ - list.permutations_perm_permutations'
834
+ - list.subperm_cons_diff
835
+ - list.perm.permutations'
836
+ - path: src/data/finsupp/ne_locus.lean
837
+ theorems:
838
+ - finsupp.ne_locus_self_sub_left
839
+ - finsupp.ne_locus_self_add_right
840
+ - path: src/data/nat/factorization/basic.lean
841
+ theorems:
842
+ - nat.prod_pow_factorization_eq_self
843
+ - nat.Ioc_filter_dvd_card_eq_div
844
+ - nat.prime.factorization
845
+ - nat.prod_pow_prime_padic_val_nat
846
+ - nat.factorization_gcd
847
+ - nat.factorization_eq_zero_of_remainder
848
+ - nat.not_dvd_ord_compl
849
+ - nat.factorization_eq_zero_iff_remainder
850
+ - nat.ord_compl_mul
851
+ - nat.factorization_mul_apply_of_coprime
852
+ - nat.factorization_prod_pow_eq_self
853
+ - nat.exists_factorization_lt_of_lt
854
+ - path: src/data/set/lattice.lean
855
+ theorems:
856
+ - set.bInter_pair
857
+ - set.prod_image_seq_comm
858
+ - set.sUnion_prod_const
859
+ - "set.union_distrib_Inter\u2082_right"
860
+ - set.prod_sUnion
861
+ - set.Union_nonempty_self
862
+ - set.nonempty_sInter
863
+ - "set.image_Inter\u2082"
864
+ - set.image_Inter
865
+ - set.bijective_iff_bijective_of_Union_eq_univ
866
+ - set.preimage_sInter
867
+ - set.inj_on.image_Inter_eq
868
+ - set.bUnion_diff_bUnion_subset
869
+ - set.pi_diff_pi_subset
870
+ - path: src/set_theory/cardinal/divisibility.lean
871
+ theorems:
872
+ - cardinal.not_irreducible_of_aleph_0_le
873
+ - cardinal.nat_is_prime_iff
874
+ - cardinal.is_unit_iff
875
+ - path: src/data/stream/init.lean
876
+ theorems:
877
+ - stream.nth_unfolds_head_tail
878
+ - stream.mem_cycle
879
+ - stream.corec_id_id_eq_const
880
+ - stream.mem_interleave_right
881
+ - stream.map_eq
882
+ - stream.iterate_id
883
+ - stream.nth_tails
884
+ - path: src/data/nat/cast/basic.lean
885
+ theorems:
886
+ - ne_zero.nat_of_ne_zero
887
+ - nat.cast_commute
888
+ - path: src/data/rbmap/default.lean
889
+ theorems:
890
+ - rbmap.not_mem_of_find_none
891
+ - rbmap.find_entry_insert_of_eqv
892
+ - rbmap.find_insert_of_ne
893
+ - rbmap.find_insert_of_eqv
894
+ - path: src/data/pfunctor/univariate/M.lean
895
+ theorems:
896
+ - pfunctor.M.corec_def
897
+ - pfunctor.M.eq_of_bisim
898
+ - pfunctor.M.mk_dest
899
+ - pfunctor.M.ichildren_mk
900
+ - pfunctor.M.dest_corec
901
+ - pfunctor.M.corec_unique
902
+ - pfunctor.M.nth_of_bisim
903
+ - path: src/data/polynomial/identities.lean
904
+ theorems:
905
+ - polynomial.poly_binom_aux3
906
+ - path: src/data/pfunctor/multivariate/M.lean
907
+ theorems:
908
+ - mvpfunctor.M.bisim'
909
+ - mvpfunctor.M.bisim_lemma
910
+ - mvpfunctor.M.bisim
911
+ - path: src/data/polynomial/splits.lean
912
+ theorems:
913
+ - polynomial.prod_roots_eq_coeff_zero_of_monic_of_split
914
+ - polynomial.splits_prod_iff
915
+ - polynomial.nat_degree_eq_card_roots'
916
+ - polynomial.mem_lift_of_splits_of_roots_mem_range
917
+ - polynomial.aeval_root_derivative_of_splits
918
+ - path: src/set_theory/ordinal/arithmetic.lean
919
+ theorems:
920
+ - ordinal.pred_succ
921
+ - ordinal.one_add_omega
922
+ - ordinal.is_normal.apply_omega
923
+ - ordinal.Sup_ord
924
+ - ordinal.blsub_zero
925
+ - ordinal.sup_succ_le_lsub
926
+ - ordinal.add_right_cancel
927
+ - ordinal.is_normal.bsup_eq
928
+ - ordinal.blsub_eq_zero_iff
929
+ - ordinal.lt_pred
930
+ - ordinal.enum_ord_surjective
931
+ - ordinal.mul_le_of_limit
932
+ - ordinal.range_family_of_bfamily'
933
+ - ordinal.enum_ord_univ
934
+ - ordinal.pred_lt_iff_is_succ
935
+ - ordinal.sup_typein_succ
936
+ - ordinal.sup_eq_lsub_iff_succ
937
+ - ordinal.enum_ord_mem_aux
938
+ - ordinal.add_eq_zero_iff
939
+ - ordinal.lift_is_limit
940
+ - ordinal.mul_eq_zero'
941
+ - ordinal.le_bmex_of_forall
942
+ - path: src/data/polynomial/laurent.lean
943
+ theorems:
944
+ - laurent_polynomial.degree_C_mul_T
945
+ - polynomial.to_laurent_ne_zero
946
+ - laurent_polynomial.degree_C_ite
947
+ - laurent_polynomial.left_inverse_trunc_to_laurent
948
+ - path: src/data/polynomial/degree/trailing_degree.lean
949
+ theorems:
950
+ - polynomial.nat_trailing_degree_mul'
951
+ - polynomial.nat_trailing_degree_mul_X_pow
952
+ - polynomial.le_trailing_degree_mul
953
+ - polynomial.coeff_mul_nat_trailing_degree_add_nat_trailing_degree
954
+ - polynomial.trailing_degree_one_le
955
+ - polynomial.nat_trailing_degree_eq_support_min'
956
+ - polynomial.trailing_degree_mul'
957
+ - polynomial.coeff_eq_zero_of_lt_nat_trailing_degree
958
+ - polynomial.trailing_degree_monomial
959
+ - path: src/set_theory/ordinal/principal.lean
960
+ theorems:
961
+ - ordinal.principal_mul_iff_le_two_or_omega_opow_opow
962
+ - ordinal.add_omega_opow
963
+ - ordinal.mul_principal_add_is_principal_add
964
+ - ordinal.principal_mul_one
965
+ - path: src/data/finset/noncomm_prod.lean
966
+ theorems:
967
+ - multiset.noncomm_prod_coe
968
+ - finset.noncomm_prod_mul_single
969
+ - finset.noncomm_prod_commute
970
+ - finset.noncomm_prod_mul_distrib_aux
971
+ - finset.noncomm_prod_insert_of_not_mem'
972
+ - monoid_hom.pi_ext
973
+ - path: src/data/complex/basic.lean
974
+ theorems:
975
+ - complex.lim_conj
976
+ - complex.I_pow_bit1
977
+ - complex.im_eq_sub_conj
978
+ - complex.abs_theory.abs_re_le_abs
979
+ - complex.equiv_lim_aux
980
+ - complex.mul_inv_cancel
981
+ - complex.norm_sq_sub
982
+ - complex.abs_le_sqrt_two_mul_max
983
+ - complex.re_eq_add_conj
984
+ - complex.sq_abs_sub_sq_im
985
+ - path: src/analysis/schwartz_space.lean
986
+ theorems:
987
+ - schwartz_map.norm_le_seminorm
988
+ - schwartz_map.coe_hom_injective
989
+ - schwartz_map.one_add_le_sup_seminorm_apply
990
+ - schwartz_map.is_O_cocompact_zpow
991
+ - schwartz_with_seminorms
992
+ - path: src/data/mv_polynomial/basic.lean
993
+ theorems:
994
+ - mv_polynomial.coeff_X
995
+ - mv_polynomial.coeff_mul_monomial'
996
+ - mv_polynomial.C_dvd_iff_dvd_coeff
997
+ - mv_polynomial.coeff_C_mul
998
+ - "mv_polynomial.eval\u2082_eq'"
999
+ - "mv_polynomial.eval\u2082_mul"
1000
+ - mv_polynomial.map_left_inverse
1001
+ - path: src/data/bool/count.lean
1002
+ theorems:
1003
+ - list.chain'.length_div_two_le_count_bool
1004
+ - list.count_bnot_add_count
1005
+ - path: src/data/qpf/multivariate/constructions/cofix.lean
1006
+ theorems:
1007
+ - mvqpf.corecF_eq
1008
+ - "mvqpf.cofix.dest_corec\u2081"
1009
+ - "mvqpf.cofix.bisim\u2082"
1010
+ - mvqpf.cofix.bisim_rel
1011
+ - mvqpf.liftr_map_last
1012
+ - mvqpf.cofix.dest_corec
1013
+ - mvqpf.cofix.bisim_aux
1014
+ - mvqpf.cofix.bisim
1015
+ - path: src/data/rbtree/insert.lean
1016
+ theorems:
1017
+ - rbnode.mem_insert_of_mem
1018
+ - rbnode.is_searchable_balance2_node
1019
+ - rbnode.find_balance2_node_lt
1020
+ - rbnode.balance1_node_ne_leaf
1021
+ - rbnode.find_insert_of_eqv
1022
+ - rbnode.find_balance1_node
1023
+ - rbnode.find_balance2_node_eqv
1024
+ - rbnode.ins_ne_leaf
1025
+ - rbnode.is_searchable_balance1_node
1026
+ - rbnode.find_ins_of_disj
1027
+ - rbnode.insert_rb
1028
+ - rbnode.find_ins_of_eqv
1029
+ - rbnode.is_searchable_insert
1030
+ - rbnode.find_balance1_node_lt
1031
+ - rbnode.insert_is_red_black
1032
+ - path: src/data/rat/order.lean
1033
+ theorems:
1034
+ - rat.lt_def
1035
+ - rat.lt_one_iff_num_lt_denom
1036
+ - rat.le_total
1037
+ - path: src/analysis/inner_product_space/basic.lean
1038
+ theorems:
1039
+ - norm_sub_mul_self
1040
+ - inner_eq_one_iff_of_norm_one
1041
+ - norm_add_mul_self
1042
+ - continuous_linear_map.re_apply_inner_self_smul
1043
+ - orthonormal_sUnion_of_directed
1044
+ - real_inner_add_sub_eq_zero_iff
1045
+ - parallelogram_law_with_norm
1046
+ - inner_self_conj
1047
+ - orthogonal_family.inner_right_dfinsupp
1048
+ - uniform_space.completion.continuous_inner
1049
+ - linear_isometry.inner_map_map
1050
+ - norm_inner_le_norm
1051
+ - inner_eq_sum_norm_sq_div_four
1052
+ - path: src/data/list/sublists.lean
1053
+ theorems:
1054
+ - list.sublists'_aux_eq_sublists'
1055
+ - list.sublists_append
1056
+ - list.range_bind_sublists_len_perm
1057
+ - list.sublists_perm_sublists'
1058
+ - list.mem_sublists'
1059
+ - list.sublists_len_aux_eq
1060
+ - list.sublists'_cons
1061
+ - list.length_sublists
1062
+ - list.map_ret_sublist_sublists
1063
+ - path: src/analysis/p_series.lean
1064
+ theorems:
1065
+ - ennreal.le_tsum_condensed
1066
+ - nnreal.summable_condensed_iff
1067
+ - real.tendsto_sum_range_one_div_nat_succ_at_top
1068
+ - real.not_summable_one_div_nat_cast
1069
+ - sum_Ioc_inv_sq_le_sub
1070
+ - real.summable_abs_int_rpow
1071
+ - summable_condensed_iff_of_nonneg
1072
+ - ennreal.tsum_condensed_le
1073
+ - path: src/analysis/special_functions/trigonometric/series.lean
1074
+ theorems:
1075
+ - complex.has_sum_sin
1076
+ - real.has_sum_sin
1077
+ - path: src/data/set/prod.lean
1078
+ theorems:
1079
+ - set.univ_pi_update
1080
+ - set.mk_preimage_prod_left_fn_eq_if
1081
+ - set.off_diag_nonempty
1082
+ - set.off_diag_union
1083
+ - path: src/data/complex/exponential.lean
1084
+ theorems:
1085
+ - real.exp_pos
1086
+ - real.sinh_three_mul
1087
+ - complex.tan_of_real_im
1088
+ - complex.sinh_add
1089
+ - complex.exp_conj
1090
+ - real.abs_cos_le_one
1091
+ - real.sinh_add_cosh
1092
+ - real.one_sub_le_exp_minus_of_pos
1093
+ - real.sin_three_mul
1094
+ - real.cos_sq
1095
+ - complex.exp_bound'
1096
+ - complex.cosh_of_real_im
1097
+ - real.cos_two_neg
1098
+ - complex.of_real_tanh_of_real_re
1099
+ - real.exp_approx_succ
1100
+ - real.exp_bound
1101
+ - real.add_one_le_exp_of_nonpos
1102
+ - real.cosh_sub
1103
+ - path: src/set_theory/ordinal/basic.lean
1104
+ theorems:
1105
+ - ordinal.typein_surj
1106
+ - ordinal.card_eq_nat
1107
+ - cardinal.lt_univ
1108
+ - ordinal.lift_down'
1109
+ - ordinal.zero_le
1110
+ - ordinal.typein_one_out
1111
+ - ordinal.card_eq_zero
1112
+ - ordinal.enum_inj
1113
+ - cardinal.lt_univ'
1114
+ - ordinal.le_enum_succ
1115
+ - path: src/data/sym/sym2.lean
1116
+ theorems:
1117
+ - sym2.map_congr
1118
+ - sym2.rel.is_equivalence
1119
+ - sym2.map.injective
1120
+ - sym2.other_eq_other'
1121
+ - sym2.rel.trans
1122
+ - sym2.from_rel_bot
1123
+ - path: src/data/multiset/nat_antidiagonal.lean
1124
+ theorems:
1125
+ - multiset.nat.map_swap_antidiagonal
1126
+ - path: src/analysis/inner_product_space/gram_schmidt_ortho.lean
1127
+ theorems:
1128
+ - gram_schmidt_orthonormal_basis_det
1129
+ - gram_schmidt_normed_unit_length_coe
1130
+ - gram_schmidt_orthonormal_basis_inv_triangular'
1131
+ - gram_schmidt_ne_zero_coe
1132
+ - gram_schmidt_triangular
1133
+ - gram_schmidt_orthonormal'
1134
+ - gram_schmidt_orthonormal_basis_inv_triangular
1135
+ - path: src/data/seq/wseq.lean
1136
+ theorems:
1137
+ - stream.wseq.bind_ret
1138
+ - stream.wseq.productive_congr
1139
+ - stream.wseq.head_some_of_head_tail_some
1140
+ - stream.wseq.length_eq_map
1141
+ - stream.wseq.dropn_congr
1142
+ - stream.wseq.nth_of_seq
1143
+ - stream.wseq.head_some_of_nth_some
1144
+ - stream.wseq.flatten_equiv
1145
+ - stream.wseq.lift_rel_destruct_iff
1146
+ - stream.wseq.to_seq_of_seq
1147
+ - stream.wseq.lift_rel.refl
1148
+ - stream.wseq.nth_mem
1149
+ - stream.wseq.lift_rel_dropn_destruct
1150
+ - stream.wseq.lift_rel.trans
1151
+ - path: src/data/seq/parallel.lean
1152
+ theorems:
1153
+ - computation.map_parallel
1154
+ - computation.parallel_congr_left
1155
+ - computation.mem_parallel
1156
+ - path: src/analysis/convex/extreme.lean
1157
+ theorems:
1158
+ - extreme_points_prod
1159
+ - is_extreme_bInter
1160
+ - path: src/data/nat/bitwise.lean
1161
+ theorems:
1162
+ - nat.lxor_cancel_right
1163
+ - nat.lxor_trichotomy
1164
+ - nat.lt_of_test_bit
1165
+ - nat.test_bit_two_pow_self
1166
+ - nat.test_bit_two_pow_of_ne
1167
+ - path: src/data/set/countable.lean
1168
+ theorems:
1169
+ - set.finite.countable
1170
+ - set.exists_seq_supr_eq_top_iff_countable
1171
+ - set.countable_univ_pi
1172
+ - path: src/data/set/finite.lean
1173
+ theorems:
1174
+ - set.infinite_of_forall_exists_gt
1175
+ - set.finite.supr_binfi_of_monotone
1176
+ - supr_infi_of_monotone
1177
+ - set.Union_pi_of_monotone
1178
+ - set.finite.subset
1179
+ - set.card_ne_eq
1180
+ - finite.set.subset
1181
+ - path: src/data/nat/sqrt.lean
1182
+ theorems:
1183
+ - nat.sqrt_is_sqrt
1184
+ - nat.sqrt_le_add
1185
+ - nat.sqrt_aux_is_sqrt_lemma
1186
+ - nat.exists_mul_self'
1187
+ - nat.sqrt_zero
1188
+ - path: src/analysis/special_functions/non_integrable.lean
1189
+ theorems:
1190
+ - not_interval_integrable_of_tendsto_norm_at_top_of_deriv_is_O_within_diff_singleton
1191
+ - interval_integrable_sub_inv_iff
1192
+ - interval_integrable_inv_iff
1193
+ - path: src/analysis/convex/gauge.lean
1194
+ theorems:
1195
+ - gauge_smul_left_of_nonneg
1196
+ - gauge_neg_set_neg
1197
+ - gauge_smul_left
1198
+ - gauge_of_subset_zero
1199
+ - mul_gauge_le_norm
1200
+ - gauge_lt_one_eq_self_of_open
1201
+ - gauge_le_of_mem
1202
+ - path: src/model_theory/substructures.lean
1203
+ theorems:
1204
+ - first_order.language.substructure.subset_closure_with_constants
1205
+ - first_order.language.substructure.mem_infi
1206
+ - first_order.language.substructure.closure_with_constants_eq
1207
+ - first_order.language.substructure.closure_induction'
1208
+ - first_order.language.equiv.to_hom_range
1209
+ - path: src/data/nat/part_enat.lean
1210
+ theorems:
1211
+ - part_enat.add_lt_add_iff_left
1212
+ - part_enat.ne_top_iff
1213
+ - part_enat.to_with_top_zero'
1214
+ - part_enat.add_right_cancel_iff
1215
+ - part_enat.lt_add_one
1216
+ - part_enat.lt_wf
1217
+ - part_enat.lt_add_iff_pos_right
1218
+ - part_enat.cases_on
1219
+ - part_enat.with_top_equiv_symm_le
1220
+ - part_enat.to_with_top_coe'
1221
+ - part_enat.lt_find
1222
+ - part_enat.with_top_equiv_zero
1223
+ - part_enat.to_with_top_top'
1224
+ - path: src/data/bitvec/basic.lean
1225
+ theorems:
1226
+ - bitvec.to_fin_val
1227
+ - bitvec.of_fin_to_fin
1228
+ - bitvec.to_bool_add_lsb_mod_two
1229
+ - path: src/data/fin/basic.lean
1230
+ theorems:
1231
+ - fin.last_sub
1232
+ - fin.add_one_le_iff
1233
+ - fin.exists_succ_above_eq
1234
+ - fin.add_cases_right
1235
+ - fin.coe_add_eq_ite
1236
+ - fin.coe_cast_pred
1237
+ - fin.coe_val_of_lt
1238
+ - fin.add_cases_left
1239
+ - fin.pred_succ_above_pred
1240
+ - fin.succ_above_pos
1241
+ - path: src/data/nat/fib.lean
1242
+ theorems:
1243
+ - nat.fast_fib_eq
1244
+ - nat.fib_bit0
1245
+ - nat.fast_fib_aux_eq
1246
+ - nat.fib_gcd
1247
+ - path: src/data/set/image.lean
1248
+ theorems:
1249
+ - set.preimage_surjective
1250
+ - subtype.range_coe
1251
+ - set.powerset_insert
1252
+ - set.image_symm_diff
1253
+ - set.image_surjective
1254
+ - set.preimage_injective
1255
+ - path: src/data/matrix/block.lean
1256
+ theorems:
1257
+ - matrix.to_block_mul_eq_add
1258
+ - matrix.from_blocks_multiply
1259
+ - matrix.to_block_diagonal_self
1260
+ - matrix.block_diagonal'_conj_transpose
1261
+ - path: src/model_theory/satisfiability.lean
1262
+ theorems:
1263
+ - first_order.language.Theory.exists_large_model_of_infinite_model
1264
+ - first_order.language.bounded_formula.semantically_equivalent_all_lift_at
1265
+ - first_order.language.Theory.is_satisfiable_union_distinct_constants_theory_of_card_le
1266
+ - first_order.language.exists_elementarily_equivalent_card_eq
1267
+ - first_order.language.exists_elementary_embedding_card_eq_of_le
1268
+ - first_order.language.exists_elementary_embedding_card_eq
1269
+ - first_order.language.Theory.is_satisfiable_iff_is_finitely_satisfiable
1270
+ - first_order.language.Theory.is_satisfiable_directed_union_iff
1271
+ - path: src/data/buffer/basic.lean
1272
+ theorems:
1273
+ - buffer.to_buffer_to_list
1274
+ - buffer.nth_le_to_list'
1275
+ - buffer.append_list_mk_buffer
1276
+ - buffer.read_push_back_right
1277
+ - buffer.to_buffer_cons
1278
+ - buffer.read_push_back_left
1279
+ - path: src/analysis/special_functions/complex/arg.lean
1280
+ theorems:
1281
+ - complex.arg_eq_neg_pi_div_two_iff
1282
+ - complex.range_exp_mul_I
1283
+ - complex.arg_eq_arg_iff
1284
+ - complex.arg_eq_pi_div_two_iff
1285
+ - complex.arg_div_coe_angle
1286
+ - complex.arg_mul_cos_add_sin_mul_I
1287
+ - complex.arg_mul_coe_angle
1288
+ - complex.arg_le_pi_div_two_iff
1289
+ - complex.abs_arg_le_pi_div_two_iff
1290
+ - complex.arg_of_im_neg
1291
+ - complex.arg_mul_cos_add_sin_mul_I_eq_to_Ioc_mod
1292
+ - complex.continuous_at_arg_coe_angle
1293
+ - complex.arg_eq_pi_iff
1294
+ - complex.arg_coe_angle_to_real_eq_arg
1295
+ - complex.tan_arg
1296
+ - path: src/data/set/intervals/group.lean
1297
+ theorems:
1298
+ - set.pairwise_disjoint_Ico_add_int_cast
1299
+ - set.pairwise_disjoint_Ioc_zpow
1300
+ - set.pairwise_disjoint_Ioc_add_int_cast
1301
+ - path: src/data/multiset/locally_finite.lean
1302
+ theorems:
1303
+ - multiset.Ioo_self
1304
+ - multiset.map_add_left_Icc
1305
+ - multiset.Ioc_eq_zero_iff
1306
+ - multiset.map_add_right_Ico
1307
+ - multiset.Ioo_eq_zero_iff
1308
+ - multiset.Ico_filter_le_left
1309
+ - multiset.Ioo_cons_left
1310
+ - multiset.map_add_right_Ioo
1311
+ - multiset.Ico_cons_right
1312
+ - multiset.map_add_right_Icc
1313
+ - multiset.Ico_filter_le_of_right_le
1314
+ - multiset.Ico_disjoint_Ico
1315
+ - multiset.Ico_filter_lt
1316
+ - multiset.Ico_filter_lt_of_le_left
1317
+ - multiset.Icc_eq_zero_iff
1318
+ - path: src/data/nat/squarefree.lean
1319
+ theorems:
1320
+ - nat.min_sq_fac_aux_has_prop
1321
+ - nat.sum_divisors_filter_squarefree
1322
+ - nat.min_sq_fac_prop_div
1323
+ - path: src/data/nat/size.lean
1324
+ theorems:
1325
+ - nat.size_eq_zero
1326
+ - nat.size_le
1327
+ - nat.size_pos
1328
+ - nat.lt_size_self
1329
+ - nat.size_shiftl'
1330
+ - nat.lt_size
1331
+ - path: src/analysis/inner_product_space/calculus.lean
1332
+ theorems:
1333
+ - differentiable_euclidean
1334
+ - cont_diff_homeomorph_unit_ball
1335
+ - cont_diff_norm_sq
1336
+ - cont_diff_on_homeomorph_unit_ball_symm
1337
+ - cont_diff_at_euclidean
1338
+ - has_strict_fderiv_at_euclidean
1339
+ - has_deriv_at.inner
1340
+ - cont_diff_euclidean
1341
+ - path: src/data/dfinsupp/well_founded.lean
1342
+ theorems:
1343
+ - dfinsupp.well_founded_lt
1344
+ - dfinsupp.lex.well_founded_of_finite
1345
+ - path: src/data/real/sqrt.lean
1346
+ theorems:
1347
+ - real.sqrt_aux_nonneg
1348
+ - real.sqrt_lt_sqrt_iff_of_pos
1349
+ - real.sqrt_le_left
1350
+ - real.sqrt_inv
1351
+ - real.nat_sqrt_le_real_sqrt
1352
+ - real.sq_le
1353
+ - nnreal.sqrt_mul
1354
+ - real.sqrt_ne_zero
1355
+ - path: src/data/rbtree/main.lean
1356
+ theorems:
1357
+ - rbtree.eq_leaf_of_max_eq_none
1358
+ - rbtree.eq_leaf_of_min_eq_none
1359
+ - rbtree.contains_correct
1360
+ - rbnode.is_red_black_of_well_formed
1361
+ - rbtree.eqv_of_find_some
1362
+ - rbtree.mem_insert_of_mem
1363
+ - path: src/analysis/seminorm.lean
1364
+ theorems:
1365
+ - seminorm.closed_ball_zero_eq_preimage_closed_ball
1366
+ - seminorm.closed_ball_finset_sup'
1367
+ - seminorm.convex_closed_ball
1368
+ - seminorm.smul_closed_ball_zero
1369
+ - ball_norm_seminorm
1370
+ - seminorm.coe_supr_eq
1371
+ - seminorm.smul_le_smul
1372
+ - seminorm.bdd_above_iff
1373
+ - path: src/analysis/convex/normed.lean
1374
+ theorems:
1375
+ - convex_on_dist
1376
+ - convex_hull_ediam
1377
+ - convex.thickening
1378
+ - path: src/data/int/bitwise.lean
1379
+ theorems:
1380
+ - int.bit_val
1381
+ - int.bodd_add
1382
+ - int.shiftr_eq_div_pow
1383
+ - int.test_bit_bitwise
1384
+ - int.bodd_add_div2
1385
+ - path: src/data/multiset/bind.lean
1386
+ theorems:
1387
+ - multiset.sigma_add
1388
+ - multiset.coe_bind
1389
+ - multiset.bind_hcongr
1390
+ - multiset.rel_bind
1391
+ - multiset.product_add
1392
+ - path: src/data/int/order/basic.lean
1393
+ theorems:
1394
+ - int.div_le_self
1395
+ - int.add_mod_self_left
1396
+ - int.to_nat_le_to_nat
1397
+ - int.mod_lt
1398
+ - int.div_nonpos
1399
+ - int.dvd_sub_of_mod_eq
1400
+ - path: src/analysis/convex/strict_convex_space.lean
1401
+ theorems:
1402
+ - strict_convex_space.of_strict_convex_closed_unit_ball
1403
+ - strict_convex_space.of_norm_add
1404
+ - abs_lt_norm_sub_of_not_same_ray
1405
+ - dist_add_dist_eq_iff
1406
+ - path: src/data/nat/count.lean
1407
+ theorems:
1408
+ - nat.count_add'
1409
+ - nat.count_le_cardinal
1410
+ - nat.count_eq_card_fintype
1411
+ - path: src/data/polynomial/basic.lean
1412
+ theorems:
1413
+ - polynomial.rat_smul_eq_C_mul
1414
+ - polynomial.mul_eq_sum_sum
1415
+ - polynomial.monomial_add_erase
1416
+ - polynomial.binomial_eq_binomial
1417
+ - polynomial.support_X
1418
+ - polynomial.add_submonoid_closure_set_of_eq_monomial
1419
+ - polynomial.of_finsupp_neg
1420
+ - polynomial.of_finsupp_eq_one
1421
+ - path: src/set_theory/game/pgame.lean
1422
+ theorems:
1423
+ - pgame.star_fuzzy_zero
1424
+ - pgame.lf_or_equiv_or_gf
1425
+ - pgame.neg_of_lists
1426
+ - pgame.neg_lt_zero_iff
1427
+ - pgame.neg_lf_zero_iff
1428
+ - pgame.zero_le_neg_iff
1429
+ - pgame.is_option_neg_neg
1430
+ - pgame.zero_lt_neg_iff
1431
+ - pgame.neg_le_lf_neg_iff
1432
+ - pgame.lf_iff_exists_le
1433
+ - pgame.neg_star
1434
+ - path: src/analysis/bounded_variation.lean
1435
+ theorems:
1436
+ - variation_on_from_to.add
1437
+ - evariation_on.eq_of_edist_zero_on
1438
+ - variation_on_from_to.eq_neg_swap
1439
+ - evariation_on.comp_eq_of_monotone_on
1440
+ - evariation_on.union
1441
+ - variation_on_from_to.eq_zero_iff
1442
+ - evariation_on.lower_continuous_aux
1443
+ - evariation_on.Icc_add_Icc
1444
+ - has_locally_bounded_variation_on.ae_differentiable_within_at_of_mem
1445
+ - variation_on_from_to.sub_self_monotone_on
1446
+ - path: src/analysis/special_functions/polar_coord.lean
1447
+ theorems:
1448
+ - integral_comp_polar_coord_symm
1449
+ - path: src/data/multiset/powerset.lean
1450
+ theorems:
1451
+ - multiset.bind_powerset_len
1452
+ - multiset.revzip_powerset_aux_lemma
1453
+ - multiset.revzip_powerset_aux_perm
1454
+ - multiset.revzip_powerset_aux
1455
+ - multiset.powerset_len_mono
1456
+ - path: src/data/nat/factorization/prime_pow.lean
1457
+ theorems:
1458
+ - is_prime_pow_pow_iff
1459
+ - is_prime_pow.exists_ord_compl_eq_one
1460
+ - exists_ord_compl_eq_one_iff_is_prime_pow
1461
+ - path: src/data/nat/totient.lean
1462
+ theorems:
1463
+ - nat.card_units_zmod_lt_sub_one
1464
+ - nat.totient_mul
1465
+ - nat.totient_even
1466
+ - nat.totient_eq_div_factors_mul
1467
+ - nat.totient_dvd_of_dvd
1468
+ - nat.totient_eq_mul_prod_factors
1469
+ - zmod.card_units_eq_totient
1470
+ - nat.totient_super_multiplicative
1471
+ - nat.sum_totient
1472
+ - nat.totient_eq_prod_factorization
1473
+ - nat.filter_coprime_Ico_eq_totient
1474
+ - path: src/model_theory/graph.lean
1475
+ theorems:
1476
+ - first_order.language.Structure_simple_graph_of_structure
1477
+ - first_order.language.Theory.simple_graph_model_iff
1478
+ - path: src/data/set/pointwise/smul.lean
1479
+ theorems:
1480
+ - set.smul_inter_ne_empty_iff'
1481
+ - set.neg_smul
1482
+ - set.smul_neg
1483
+ - set.Union_smul_eq_set_of_exists
1484
+ - path: src/analysis/convex/strict.lean
1485
+ theorems:
1486
+ - strict_convex.add_smul_sub_mem
1487
+ - set.ord_connected.strict_convex
1488
+ - strict_convex.preimage_smul
1489
+ - strict_convex.smul
1490
+ - strict_convex.add_left
1491
+ - path: src/set_theory/ordinal/fixed_point.lean
1492
+ theorems:
1493
+ - ordinal.fp_iff_deriv_bfamily
1494
+ - ordinal.deriv_eq_enum_ord
1495
+ - ordinal.nfp_bfamily_le_apply
1496
+ - ordinal.nfp_mul_one
1497
+ - path: src/data/is_R_or_C/lemmas.lean
1498
+ theorems:
1499
+ - is_R_or_C.re_clm_norm
1500
+ - path: src/data/set/intervals/unordered_interval.lean
1501
+ theorems:
1502
+ - set.monotone_on_or_antitone_on_iff_uIcc
1503
+ - set.uIoc_injective_left
1504
+ - path: src/data/list/intervals.lean
1505
+ theorems:
1506
+ - list.Ico.map_sub
1507
+ - list.Ico.filter_lt_of_succ_bot
1508
+ - list.Ico.chain'_succ
1509
+ - list.Ico.eq_empty_iff
1510
+ - list.Ico.filter_lt
1511
+ - list.Ico.filter_le
1512
+ - path: src/data/finset/mul_antidiagonal.lean
1513
+ theorems:
1514
+ - set.is_pwo.mul
1515
+ - finset.mem_mul_antidiagonal
1516
+ - path: src/set_theory/game/basic.lean
1517
+ theorems:
1518
+ - pgame.quot_eq_of_mk_quot_eq
1519
+ - pgame.quot_left_distrib_sub
1520
+ - path: src/analysis/convex/star.lean
1521
+ theorems:
1522
+ - star_convex.neg
1523
+ - star_convex_sUnion
1524
+ - path: src/data/nat/choose/basic.lean
1525
+ theorems:
1526
+ - nat.choose_eq_asc_factorial_div_factorial
1527
+ - nat.choose_eq_desc_factorial_div_factorial
1528
+ - nat.desc_factorial_eq_factorial_mul_choose
1529
+ - path: src/analysis/special_functions/polynomials.lean
1530
+ theorems:
1531
+ - polynomial.div_tendsto_zero_iff_degree_lt
1532
+ - polynomial.is_equivalent_at_top_lead
1533
+ - polynomial.is_equivalent_at_top_div
1534
+ - polynomial.is_O_of_degree_le
1535
+ - polynomial.abs_is_bounded_under_iff
1536
+ - path: src/data/polynomial/field_division.lean
1537
+ theorems:
1538
+ - polynomial.div_eq_zero_iff
1539
+ - polynomial.is_unit_map
1540
+ - polynomial.coe_norm_unit_of_ne_zero
1541
+ - polynomial.quotient_mul_add_remainder_eq_aux
1542
+ - polynomial.monic.normalize_eq_self
1543
+ - polynomial.is_coprime_map
1544
+ - path: src/data/finsupp/multiset.lean
1545
+ theorems:
1546
+ - finsupp.sum_id_lt_of_lt
1547
+ - finsupp.to_multiset_map
1548
+ - finsupp.prod_to_multiset
1549
+ - path: src/data/typevec.lean
1550
+ theorems:
1551
+ - typevec.prod_fst_mk
1552
+ - typevec.const_iff_true
1553
+ - typevec.repeat_eq_iff_eq
1554
+ - typevec.to_subtype_of_subtype_assoc
1555
+ - typevec.to_subtype'_of_subtype'
1556
+ - typevec.split_fun_inj
1557
+ - typevec.prod_snd_mk
1558
+ - typevec.prod_map_id
1559
+ - path: src/data/rat/defs.lean
1560
+ theorems:
1561
+ - rat.mk_eq_zero
1562
+ - rat.add_def
1563
+ - rat.coe_int_div_eq_mk
1564
+ - rat.inv_def
1565
+ - rat.mul_def
1566
+ - path: src/data/matrix/reflection.lean
1567
+ theorems:
1568
+ - matrix.eta_expand_eq
1569
+ - "matrix.dot_product\u1D63_eq"
1570
+ - "matrix.vec_mul\u1D63_eq"
1571
+ - "matrix.transpose\u1D63_eq"
1572
+ - matrix.exists_iff
1573
+ - "matrix.mul_vec\u1D63_eq"
1574
+ - path: src/data/real/cau_seq.lean
1575
+ theorems:
1576
+ - cau_seq.le_inf
1577
+ - cau_seq.inf_eq_right
1578
+ - cau_seq.lt_trans
1579
+ - cau_seq.inf_eq_left
1580
+ - cau_seq.trichotomy
1581
+ - cau_seq.sup_le
1582
+ - "is_cau_seq.cauchy\u2082"
1583
+ - cau_seq.sup_lt
1584
+ - path: src/model_theory/order.lean
1585
+ theorems:
1586
+ - first_order.language.term.realize_lt
1587
+ - first_order.language.realize_no_bot_order_iff
1588
+ - first_order.language.realize_no_top_order_iff
1589
+ - first_order.language.term.realize_le
1590
+ - path: src/set_theory/zfc/basic.lean
1591
+ theorems:
1592
+ - Class.Class_to_Cong_empty
1593
+ - Class.to_Set_of_Set
1594
+ - Set.mem_sep
1595
+ - Set.not_nonempty_empty
1596
+ - pSet.func_mem
1597
+ - Set.to_set_union
1598
+ - Class.mem_sInter
1599
+ - Set.mem_range
1600
+ - Set.map_fval
1601
+ - Class.sInter_empty
1602
+ - path: src/set_theory/ordinal/notation.lean
1603
+ theorems:
1604
+ - onote.repr_mul
1605
+ - onote.NF.of_dvd_omega_opow
1606
+ - onote.fast_growing_two
1607
+ - onote.oadd_mul_NF_below
1608
+ - onote.repr_add
1609
+ - onote.NF_repr_split
1610
+ - onote.cmp_compares
1611
+ - onote.repr_one
1612
+ - nonote.cmp_compares
1613
+ - path: src/analysis/convex/slope.lean
1614
+ theorems:
1615
+ - strict_concave_on.slope_anti_adjacent
1616
+ - concave_on.slope_anti_adjacent
1617
+ - path: src/data/finset/prod.lean
1618
+ theorems:
1619
+ - finset.off_diag_inter
1620
+ - finset.disjoint_product
1621
+ - finset.product_bUnion
1622
+ - finset.diag_singleton
1623
+ - path: src/data/prod/basic.lean
1624
+ theorems:
1625
+ - prod.map_bijective
1626
+ - path: src/data/is_R_or_C/basic.lean
1627
+ theorems:
1628
+ - is_R_or_C.bit1_re
1629
+ - is_R_or_C.abs_re_le_norm
1630
+ - is_R_or_C.norm_sq_re_conj_add
1631
+ - is_R_or_C.inv_def
1632
+ - is_R_or_C.re_eq_self_of_le
1633
+ - is_R_or_C.inv_I
1634
+ - is_R_or_C.I_im'
1635
+ - is_R_or_C.real_smul_eq_coe_smul
1636
+ - path: src/data/mv_polynomial/expand.lean
1637
+ theorems:
1638
+ - "mv_polynomial.expand_bind\u2081"
1639
+ - mv_polynomial.expand_one
1640
+ - path: src/data/sum/basic.lean
1641
+ theorems:
1642
+ - sum.get_left_eq_none_iff
1643
+ - path: src/analysis/inner_product_space/pi_L2.lean
1644
+ theorems:
1645
+ - inner_matrix_row_row
1646
+ - orthonormal_basis.coe_to_basis_repr_apply
1647
+ - complex.map_isometry_of_orthonormal
1648
+ - direct_sum.is_internal.collected_orthonormal_basis_mem
1649
+ - direct_sum.is_internal.subordinate_orthonormal_basis_subordinate
1650
+ - orthonormal_basis.coe_to_basis_repr
1651
+ - orthonormal.exists_orthonormal_basis_extension
1652
+ - orthonormal_basis.reindex_apply
1653
+ - path: src/data/finset/locally_finite.lean
1654
+ theorems:
1655
+ - finset.card_Ioo_eq_card_Icc_sub_two
1656
+ - finset.card_Ioo_eq_card_Ico_sub_one
1657
+ - finset.map_add_left_Ioo
1658
+ - finset.image_add_right_Icc
1659
+ - finset.prod_prod_Ioi_mul_eq_prod_prod_off_diag
1660
+ - finset.mem_uIcc'
1661
+ - finset.image_add_right_Ioc
1662
+ - finset.uIcc_injective_right
1663
+ - finset.Ico_union_Ico
1664
+ - finset.image_add_left_Ioc
1665
+ - finset.map_add_left_Ioc
1666
+ - finset.Icc_ssubset_Icc_left
1667
+ - finset.card_Ico_eq_card_Icc_sub_one
1668
+ - finset.Ico_union_Ico_eq_Ico
1669
+ - finset.uIcc_subset_uIcc_union_uIcc
1670
+ - finset.not_mem_uIcc_of_gt
1671
+ - finset.Ici_eq_cons_Ioi
1672
+ - finset.Icc_eq_singleton_iff
1673
+ - finset.image_add_left_Ico
1674
+ - finset.map_add_left_Ico
1675
+ - finset.uIcc_injective_left
1676
+ - bdd_below.finite_of_bdd_above
1677
+ - finset.Ico_subset_Ico_union_Ico
1678
+ - finset.card_Ioi_eq_card_Ici_sub_one
1679
+ - path: src/data/fin_enum.lean
1680
+ theorems:
1681
+ - fin_enum.mem_pi
1682
+ - fin_enum.finset.mem_enum
1683
+ - fin_enum.mem_to_list
1684
+ - fin_enum.pi.mem_enum
1685
+ - path: src/data/nat/nth.lean
1686
+ theorems:
1687
+ - nat.nth_mem_of_lt_card_finite_aux
1688
+ - nat.nth_set_card_aux
1689
+ - nat.nth_lt_of_lt_count
1690
+ - nat.nth_eq_order_iso_of_nat
1691
+ - path: src/data/zmod/basic.lean
1692
+ theorems:
1693
+ - zmod.val_min_abs_zero
1694
+ - zmod.cast_mul
1695
+ - zmod.int_cast_comp_cast
1696
+ - zmod.val_coe_unit_coprime
1697
+ - zmod.val_min_abs_neg_of_ne_half
1698
+ - zmod.val_min_nat_abs_nat_cast_eq_self
1699
+ - zmod.neg_eq_self_iff
1700
+ - zmod.int_coe_zmod_eq_zero_iff_dvd
1701
+ - zmod.mul_inv_of_unit
1702
+ - zmod.inv_mul_of_unit
1703
+ - zmod.nat_abs_val_min_abs_add_le
1704
+ - zmod.ne_neg_self
1705
+ - zmod.val_add
1706
+ - zmod.nat_abs_val_min_abs_neg
1707
+ - zmod.cast_hom_bijective
1708
+ - zmod.neg_val'
1709
+ - zmod.val_min_abs_nat_abs_eq_min
1710
+ - zmod.mul_inv_cancel_aux
1711
+ - zmod.neg_val
1712
+ - zmod.ker_int_cast_add_hom
1713
+ - zmod.nat_abs_min_of_le_div_two
1714
+ - path: src/data/polynomial/monic.lean
1715
+ theorems:
1716
+ - polynomial.monic_of_is_unit_leading_coeff_inv_smul
1717
+ - polynomial.is_unit_leading_coeff_mul_right_eq_zero_iff
1718
+ - polynomial.leading_coeff_smul_of_smul_regular
1719
+ - polynomial.monic.next_coeff_mul
1720
+ - path: src/analysis/convex/partition_of_unity.lean
1721
+ theorems:
1722
+ - exists_continuous_forall_mem_convex_of_local
1723
+ - path: src/data/rat/lemmas.lean
1724
+ theorems:
1725
+ - rat.exists_eq_mul_div_num_and_eq_mul_div_denom
1726
+ - rat.inv_coe_nat_denom
1727
+ - rat.mk_pnat_pnat_denom_eq
1728
+ - rat.mul_self_num
1729
+ - rat.num_div_eq_of_coprime
1730
+ - rat.coe_nat_div
1731
+ - rat.inv_coe_int_num
1732
+ - path: src/data/list/dedup.lean
1733
+ theorems:
1734
+ - list.dedup_append
1735
+ - path: src/analysis/convex/caratheodory.lean
1736
+ theorems:
1737
+ - eq_pos_convex_span_of_mem_convex_hull
1738
+ - convex_hull_eq_union
1739
+ - caratheodory.mem_convex_hull_erase
1740
+ - path: src/data/finsupp/alist.lean
1741
+ theorems:
1742
+ - alist.singleton_lookup_finsupp
1743
+ - finsupp.to_alist_keys_to_finset
1744
+ - finsupp.mem_to_alist
1745
+ - path: src/data/real/pointwise.lean
1746
+ theorems:
1747
+ - real.Inf_smul_of_nonpos
1748
+ - path: src/data/list/sort.lean
1749
+ theorems:
1750
+ - list.perm_merge_sort
1751
+ - list.monotone_iff_of_fn_sorted
1752
+ - list.sublist_of_subperm_of_sorted
1753
+ - list.length_split_lt
1754
+ - path: src/data/mv_polynomial/monad.lean
1755
+ theorems:
1756
+ - "mv_polynomial.map_bind\u2082"
1757
+ - "mv_polynomial.bind\u2082_monomial_one"
1758
+ - "mv_polynomial.join\u2082_map"
1759
+ - path: src/data/pfun.lean
1760
+ theorems:
1761
+ - pfun.mem_restrict
1762
+ - pfun.mem_fix_iff
1763
+ - pfun.mem_to_subtype_iff
1764
+ - pfun.mem_res
1765
+ - pfun.comp_assoc
1766
+ - path: src/data/finset/sort.lean
1767
+ theorems:
1768
+ - finset.range_order_emb_of_fin
1769
+ - finset.order_emb_of_fin_zero
1770
+ - path: src/analysis/locally_convex/polar.lean
1771
+ theorems:
1772
+ - linear_map.polar_eq_Inter
1773
+ - linear_map.polar_univ
1774
+ - path: src/data/mv_polynomial/variables.lean
1775
+ theorems:
1776
+ - "mv_polynomial.eval\u2082_hom_eq_constant_coeff_of_vars"
1777
+ - mv_polynomial.degrees_rename
1778
+ - mv_polynomial.vars_map
1779
+ - mv_polynomial.total_degree_zero
1780
+ - mv_polynomial.vars_map_of_injective
1781
+ - mv_polynomial.degree_of_rename_of_injective
1782
+ - mv_polynomial.degrees_map_of_injective
1783
+ - mv_polynomial.vars_monomial
1784
+ - mv_polynomial.total_degree_finset_prod
1785
+ - mv_polynomial.exists_rename_eq_of_vars_subset_range
1786
+ - mv_polynomial.total_degree_add_eq_right_of_total_degree_lt
1787
+ - mv_polynomial.degrees_rename_of_injective
1788
+ - mv_polynomial.total_degree_X
1789
+ - path: src/data/set/intervals/with_bot_top.lean
1790
+ theorems:
1791
+ - with_bot.image_coe_Ioo
1792
+ - with_bot.image_coe_Iic
1793
+ - with_top.image_coe_Iio
1794
+ - with_top.image_coe_Ioc
1795
+ - with_bot.image_coe_Ioc
1796
+ - with_top.image_coe_Ico
1797
+ - with_bot.image_coe_Icc
1798
+ - with_bot.image_coe_Ico
1799
+ - with_top.image_coe_Ici
1800
+ - path: src/data/polynomial/degree/definitions.lean
1801
+ theorems:
1802
+ - polynomial.degree_pow_le
1803
+ - polynomial.card_support_C_mul_X_pow_le_one
1804
+ - polynomial.degree_quadratic_lt_degree_C_mul_X_cb
1805
+ - polynomial.leading_coeff_C_mul_X_pow
1806
+ - polynomial.ite_le_nat_degree_coeff
1807
+ - polynomial.sum_fin
1808
+ - polynomial.card_supp_le_succ_nat_degree
1809
+ - polynomial.degree_add_eq_left_of_degree_lt
1810
+ - polynomial.sum_over_range'
1811
+ - polynomial.leading_coeff_X_sub_C
1812
+ - polynomial.C_mul_X_pow_eq_self
1813
+ - path: src/data/nat/pow.lean
1814
+ theorems:
1815
+ - nat.one_lt_pow_iff
1816
+ - nat.pow_div
1817
+ - path: src/data/dfinsupp/basic.lean
1818
+ theorems:
1819
+ - dfinsupp.update_eq_sub_add_single
1820
+ - dfinsupp.add_hom_ext
1821
+ - dfinsupp.sum_single
1822
+ - dfinsupp.filter_add
1823
+ - dfinsupp.mk_neg
1824
+ - dfinsupp.equiv_fun_on_fintype_symm_single
1825
+ - dfinsupp.sigma_uncurry_single
1826
+ - dfinsupp.sum_add_hom_comm
1827
+ - dfinsupp.mem_support_to_fun
1828
+ - dfinsupp.prod_single_index
1829
+ - dfinsupp.comp_lift_add_hom
1830
+ - dfinsupp.sum_sub_index
1831
+ - add_submonoid.bsupr_eq_mrange_dfinsupp_sum_add_hom
1832
+ - add_submonoid.mem_supr_iff_exists_dfinsupp'
1833
+ - dfinsupp.support_zip_with
1834
+ - dfinsupp.map_range_add
1835
+ - path: src/data/fintype/fin.lean
1836
+ theorems:
1837
+ - fin.card_filter_univ_eq_vector_nth_eq_count
1838
+ - fin.card_filter_univ_succ'
1839
+ - path: src/data/set/list.lean
1840
+ theorems:
1841
+ - set.range_list_map
1842
+ - set.range_list_map_coe
1843
+ - set.range_list_nth
1844
+ - path: src/data/finsupp/fin.lean
1845
+ theorems:
1846
+ - finsupp.cons_ne_zero_iff
1847
+ - path: src/data/int/parity.lean
1848
+ theorems:
1849
+ - int.even_iff_not_odd
1850
+ - int.odd_coe_nat
1851
+ - path: src/model_theory/finitely_generated.lean
1852
+ theorems:
1853
+ - first_order.language.substructure.cg_iff_Structure_cg
1854
+ - first_order.language.substructure.fg_bot
1855
+ - first_order.language.substructure.fg_iff_Structure_fg
1856
+ - path: src/data/list/big_operators/basic.lean
1857
+ theorems:
1858
+ - list.prod_map_neg
1859
+ - list.alternating_prod_cons
1860
+ - list.tail_sum
1861
+ - list.prod_update_nth'
1862
+ - list.one_lt_prod_of_one_lt
1863
+ - list.prod_reverse_noncomm
1864
+ - list.sublist.prod_le_prod'
1865
+ - path: src/data/set/opposite.lean
1866
+ theorems:
1867
+ - set.unop_op
1868
+ - set.singleton_op
1869
+ - path: src/data/int/units.lean
1870
+ theorems:
1871
+ - int.units_eq_one_or
1872
+ - int.mul_eq_neg_one_iff_eq_one_or_neg_one
1873
+ - path: src/data/finsupp/big_operators.lean
1874
+ theorems:
1875
+ - multiset.mem_sup_map_support_iff
1876
+ - multiset.support_sum_eq
1877
+ - list.support_sum_eq
1878
+ - path: src/analysis/inner_product_space/two_dim.lean
1879
+ theorems:
1880
+ - orientation.right_angle_rotation_symm
1881
+ - orientation.kahler_map_complex
1882
+ - orientation.area_form_map
1883
+ - orientation.kahler_map
1884
+ - path: src/data/list/lattice.lean
1885
+ theorems:
1886
+ - list.disjoint_take_drop
1887
+ - list.disjoint_append_right
1888
+ - list.disjoint_iff_ne
1889
+ - path: src/data/pfunctor/multivariate/basic.lean
1890
+ theorems:
1891
+ - mvpfunctor.const.mk_get
1892
+ - mvpfunctor.liftp_iff'
1893
+ - path: src/data/list/lex.lean
1894
+ theorems:
1895
+ - list.lex.ne_iff
1896
+ - path: src/data/polynomial/algebra_map.lean
1897
+ theorems:
1898
+ - polynomial.eval_unique
1899
+ - polynomial.aeval_eq_sum_range'
1900
+ - polynomial.to_finsupp_algebra_map
1901
+ - path: src/analysis/convex/combination.lean
1902
+ theorems:
1903
+ - finset.convex_hull_eq
1904
+ - convex_hull_add
1905
+ - set.finite.convex_hull_eq_image
1906
+ - convex_hull_basis_eq_std_simplex
1907
+ - affine_combination_mem_convex_hull
1908
+ - convex_hull_eq
1909
+ - convex.center_mass_mem
1910
+ - convex_hull_sub
1911
+ - path: src/analysis/convolution.lean
1912
+ theorems:
1913
+ - has_compact_support.convolution_exists_right
1914
+ - bdd_above.convolution_exists_at
1915
+ - dist_convolution_le
1916
+ - convolution_exists_at_flip
1917
+ - convolution_neg_of_neg_eq
1918
+ - pos_convolution_eq_convolution_indicator
1919
+ - bdd_above.convolution_exists_at'
1920
+ - continuous_on_convolution_right_with_param'
1921
+ - convolution_assoc
1922
+ - has_compact_support.convolution_exists_at
1923
+ - has_compact_support.continuous_convolution_right
1924
+ - cont_diff_bump.normed_convolution_eq_right
1925
+ - has_compact_support.cont_diff_convolution_right
1926
+ - path: src/data/polynomial/eval.lean
1927
+ theorems:
1928
+ - "polynomial.eval\u2082_add"
1929
+ - "polynomial.eval\u2082_sub"
1930
+ - polynomial.eval_eq_sum_range
1931
+ - path: src/analysis/convex/simplicial_complex/basic.lean
1932
+ theorems:
1933
+ - geometry.simplicial_complex.disjoint_or_exists_inter_eq_convex_hull
1934
+ - path: src/data/polynomial/reverse.lean
1935
+ theorems:
1936
+ - polynomial.reflect_C
1937
+ - "polynomial.eval\u2082_reflect_eq_zero_iff"
1938
+ - path: src/data/option/basic.lean
1939
+ theorems:
1940
+ - option.map_comp_map
1941
+ - option.map_injective
1942
+ - option.map_bind
1943
+ - path: src/data/matrix/rank.lean
1944
+ theorems:
1945
+ - matrix.ker_mul_vec_lin_transpose_mul_self
1946
+ - matrix.rank_conj_transpose_mul_self
1947
+ - matrix.rank_submatrix_le
1948
+ - matrix.rank_eq_finrank_range_to_lin
1949
+ - matrix.rank_self_mul_transpose
1950
+ - matrix.rank_self_mul_conj_transpose
1951
+ - matrix.rank_of_is_unit
1952
+ - matrix.rank_one
1953
+ - matrix.rank_eq_finrank_span_row
1954
+ - matrix.rank_submatrix
1955
+ - matrix.rank_mul_le_right
1956
+ - matrix.rank_zero
1957
+ - path: src/data/real/irrational.lean
1958
+ theorems:
1959
+ - irrational_iff_ne_rational
1960
+ - one_lt_nat_degree_of_irrational_root
1961
+ - path: src/data/int/interval.lean
1962
+ theorems:
1963
+ - int.card_fintype_Ioc_of_le
1964
+ - int.card_fintype_Ioo_of_lt
1965
+ - path: src/data/list/infix.lean
1966
+ theorems:
1967
+ - list.is_infix.sublist
1968
+ - list.is_prefix.filter_map
1969
+ - list.inits_eq_tails
1970
+ - list.is_prefix.filter
1971
+ - list.tails_eq_inits
1972
+ - list.mem_tails
1973
+ - path: src/data/fintype/basic.lean
1974
+ theorems:
1975
+ - finset.univ_eq_empty_iff
1976
+ - finset.nonempty.eq_univ
1977
+ - finset.piecewise_erase_univ
1978
+ - path: src/data/int/cast/lemmas.lean
1979
+ theorems:
1980
+ - int.cast_commute
1981
+ - int.cast_le_neg_one_of_neg
1982
+ - int.nneg_mul_add_sq_of_abs_le_one
1983
+ - path: src/set_theory/game/domineering.lean
1984
+ theorems:
1985
+ - pgame.domineering.fst_pred_mem_erase_of_mem_right
1986
+ - pgame.domineering.snd_pred_mem_erase_of_mem_left
1987
+ - pgame.domineering.move_right_card
1988
+ - path: src/data/real/golden_ratio.lean
1989
+ theorems:
1990
+ - neg_one_lt_gold_conj
1991
+ - real.coe_fib_eq
1992
+ - real.coe_fib_eq'
1993
+ - path: src/data/polynomial/taylor.lean
1994
+ theorems:
1995
+ - polynomial.taylor_zero
1996
+ - polynomial.taylor_coeff_one
1997
+ - polynomial.taylor_eval_sub
1998
+ - path: src/data/finset/sups.lean
1999
+ theorems:
2000
+ - finset.disj_sups_disj_sups_disj_sups_comm
2001
+ - finset.disj_sups_comm
2002
+ - finset.disj_sups_assoc
2003
+ - finset.disj_sups_inter_subset_right
2004
+ - finset.disj_sups_inter_subset_left
2005
+ - path: src/data/finset/interval.lean
2006
+ theorems:
2007
+ - finset.card_Iio_finset
2008
+ - finset.Ico_eq_image_ssubsets
2009
+ - finset.card_Iic_finset
2010
+ - path: src/data/int/log.lean
2011
+ theorems:
2012
+ - int.neg_log_inv_eq_clog
2013
+ - int.clog_mono_right
2014
+ - int.clog_nat_cast
2015
+ - int.lt_zpow_succ_log_self
2016
+ - int.clog_zpow
2017
+ - int.log_zpow
2018
+ - int.log_mono_right
2019
+ - path: src/model_theory/ultraproducts.lean
2020
+ theorems:
2021
+ - first_order.language.ultraproduct.sentence_realize
2022
+ - first_order.language.ultraproduct.bounded_formula_realize_cast
2023
+ - first_order.language.ultraproduct.realize_formula_cast
2024
+ - first_order.language.ultraproduct.term_realize_cast
2025
+ - path: src/data/list/lemmas.lean
2026
+ theorems:
2027
+ - list.foldl_range_subset_of_range_subset
2028
+ - list.inj_on_insert_nth_index_of_not_mem
2029
+ - path: src/data/holor.lean
2030
+ theorems:
2031
+ - holor_index.drop_drop
2032
+ - holor.cprank_max_mul
2033
+ - holor.mul_assoc0
2034
+ - holor.mul_assoc
2035
+ - holor.cprank_max_add
2036
+ - path: src/data/subtype.lean
2037
+ theorems:
2038
+ - exists_subtype_mk_eq_iff
2039
+ - path: src/data/pi/lex.lean
2040
+ theorems:
2041
+ - pi.to_lex_update_lt_self_iff
2042
+ - pi.to_lex_update_le_self_iff
2043
+ - pi.le_to_lex_update_self_iff
2044
+ - path: src/analysis/special_functions/japanese_bracket.lean
2045
+ theorems:
2046
+ - finite_integral_one_add_norm
2047
+ - integrable_one_add_norm
2048
+ - path: src/analysis/inner_product_space/orientation.lean
2049
+ theorems:
2050
+ - orientation.fin_orthonormal_basis_orientation
2051
+ - orientation.volume_form_robust
2052
+ - path: src/data/vector/basic.lean
2053
+ theorems:
2054
+ - vector.remove_nth_insert_nth'
2055
+ - vector.scanl_head
2056
+ - vector.ne_cons_iff
2057
+ - vector.scanl_nth
2058
+ - vector.nth_update_nth_of_ne
2059
+ - path: src/model_theory/definability.lean
2060
+ theorems:
2061
+ - set.definable.mono
2062
+ - set.definable_finset_sup
2063
+ - set.definable.map_expansion
2064
+ - set.empty_definable_iff
2065
+ - path: src/data/multiset/sections.lean
2066
+ theorems:
2067
+ - multiset.sections_add
2068
+ - path: src/data/list/zip.lean
2069
+ theorems:
2070
+ - list.zip_with_comm_of_comm
2071
+ - list.length_revzip
2072
+ - list.unzip_zip
2073
+ - path: src/set_theory/game/ordinal.lean
2074
+ theorems:
2075
+ - ordinal.to_pgame_left_moves
2076
+ - ordinal.to_pgame_right_moves
2077
+ - ordinal.to_pgame_add
2078
+ - path: src/analysis/convex/independent.lean
2079
+ theorems:
2080
+ - convex_independent_set_iff_inter_convex_hull_subset
2081
+ - path: src/model_theory/types.lean
2082
+ theorems:
2083
+ - first_order.language.Theory.complete_type.set_of_subset_eq_empty_iff
2084
+ - first_order.language.Theory.complete_type.set_of_subset_eq_univ_iff
2085
+ - path: src/model_theory/direct_limit.lean
2086
+ theorems:
2087
+ - first_order.language.direct_limit.exists_unify_eq
2088
+ - first_order.language.directed_system.coe_nat_le_rec
2089
+ - first_order.language.direct_limit.rel_map_quotient_mk_sigma_mk
2090
+ - first_order.language.direct_limit.cg
2091
+ - path: src/data/multiset/fold.lean
2092
+ theorems:
2093
+ - multiset.max_le_of_forall_le
2094
+ - multiset.fold_cons'_right
2095
+ - multiset.fold_add
2096
+ - path: src/analysis/convex/basic.lean
2097
+ theorems:
2098
+ - affine_subspace.convex
2099
+ - convex_open_segment
2100
+ - convex_iff_ord_connected
2101
+ - path: src/data/qpf/univariate/basic.lean
2102
+ theorems:
2103
+ - qpf.cofix.dest_corec
2104
+ - qpf.liftp_preservation_iff_uniform
2105
+ - qpf.corecF_eq
2106
+ - qpf.fix.dest_mk
2107
+ - qpf.cofix.bisim_rel
2108
+ - path: src/data/list/palindrome.lean
2109
+ theorems:
2110
+ - list.palindrome.of_reverse_eq
2111
+ - path: src/set_theory/ordinal/natural_ops.lean
2112
+ theorems:
2113
+ - ordinal.nat_nadd
2114
+ - ordinal.to_nat_ordinal_cast_nat
2115
+ - path: src/data/set/pointwise/basic.lean
2116
+ theorems:
2117
+ - set.image_op_inv
2118
+ - set.mul_eq_one_iff
2119
+ - set.univ_pow
2120
+ - path: src/analysis/special_functions/trigonometric/arctan.lean
2121
+ theorems:
2122
+ - real.tan_eq_zero_iff
2123
+ - real.arccos_eq_arctan
2124
+ - real.tan_two_mul
2125
+ - real.surj_on_tan
2126
+ - path: src/data/list/pairwise.lean
2127
+ theorems:
2128
+ - list.pw_filter_eq_self
2129
+ - list.pairwise_filter
2130
+ - list.pairwise_of_forall_mem_list
2131
+ - list.forall_mem_pw_filter
2132
+ - list.pairwise_middle
2133
+ - path: src/data/num/prime.lean
2134
+ theorems:
2135
+ - pos_num.min_fac_aux_to_nat
2136
+ - path: src/data/nat/choose/multinomial.lean
2137
+ theorems:
2138
+ - nat.binomial_spec
2139
+ - finsupp.multinomial_update
2140
+ - finset.sum_pow_of_commute
2141
+ - multiset.multinomial_filter_ne
2142
+ - nat.multinomial_univ_three
2143
+ - finset.sum_pow
2144
+ - path: src/data/nat/choose/factorization.lean
2145
+ theorems:
2146
+ - nat.prod_pow_factorization_central_binom
2147
+ - nat.factorization_central_binom_of_two_mul_self_lt_three_mul
2148
+ - nat.factorization_choose_eq_zero_of_lt
2149
+ - nat.factorization_choose_le_one
2150
+ - path: src/data/string/basic.lean
2151
+ theorems:
2152
+ - list.as_string_eq
2153
+ - path: src/analysis/quaternion.lean
2154
+ theorems:
2155
+ - quaternion.summable_coe
2156
+ - quaternion.continuous_im
2157
+ - path: src/data/nat/parity.lean
2158
+ theorems:
2159
+ - nat.odd.sub_odd
2160
+ - nat.not_odd_iff
2161
+ - nat.not_even_iff
2162
+ - nat.even_mul_self_pred
2163
+ - nat.odd_add'
2164
+ - nat.even_div
2165
+ - path: src/data/set/intervals/proj_Icc.lean
2166
+ theorems:
2167
+ - set.Icc_extend_range
2168
+ - path: src/set_theory/game/nim.lean
2169
+ theorems:
2170
+ - pgame.equiv_nim_grundy_value
2171
+ - pgame.grundy_value_neg
2172
+ - pgame.grundy_value_eq_iff_equiv_nim
2173
+ - pgame.grundy_value_add
2174
+ - pgame.nim_add_nim_equiv
2175
+ - path: src/analysis/inner_product_space/dual.lean
2176
+ theorems:
2177
+ - inner_product_space.ext_inner_left_basis
2178
+ - path: src/analysis/inner_product_space/l2_space.lean
2179
+ theorems:
2180
+ - is_hilbert_sum.linear_isometry_equiv_symm_apply
2181
+ - lp.inner_single_left
2182
+ - orthonormal.linear_isometry_equiv_symm_apply_single_one
2183
+ - path: src/data/vector/mem.lean
2184
+ theorems:
2185
+ - vector.mem_of_mem_tail
2186
+ - vector.mem_succ_iff
2187
+ - vector.not_mem_map_zero
2188
+ - path: src/data/mv_polynomial/funext.lean
2189
+ theorems:
2190
+ - mv_polynomial.funext_fin
2191
+ - path: src/analysis/special_functions/log/basic.lean
2192
+ theorems:
2193
+ - real.abs_log_mul_self_lt
2194
+ - real.log_abs
2195
+ - real.cosh_log
2196
+ - path: src/analysis/convex/uniform.lean
2197
+ theorems:
2198
+ - exists_forall_closed_ball_dist_add_le_two_sub
2199
+ - path: src/data/fin/vec_notation.lean
2200
+ theorems:
2201
+ - matrix.cons_vec_bit0_eq_alt0
2202
+ - matrix.range_cons_cons_empty
2203
+ - matrix.cons_val_fin_one
2204
+ - path: src/data/polynomial/lifts.lean
2205
+ theorems:
2206
+ - polynomial.mem_lifts_iff_mem_alg
2207
+ - polynomial.smul_mem_lifts
2208
+ - path: src/data/pnat/prime.lean
2209
+ theorems:
2210
+ - pnat.coprime.gcd_mul
2211
+ - pnat.coprime.factor_eq_gcd_left
2212
+ - pnat.coprime.factor_eq_gcd_right_right
2213
+ - pnat.coprime.gcd_mul_right_cancel_right
2214
+ - pnat.gcd_one
2215
+ - path: src/data/set/sigma.lean
2216
+ theorems:
2217
+ - set.insert_sigma
2218
+ - set.sigma_diff_sigma
2219
+ - path: src/data/int/cast/basic.lean
2220
+ theorems:
2221
+ - int.cast_add
2222
+ - int.cast_neg_of_nat
2223
+ - path: src/data/finset/preimage.lean
2224
+ theorems:
2225
+ - finset.prod_preimage
2226
+ - path: src/data/multiset/range.lean
2227
+ theorems:
2228
+ - multiset.range_add_eq_union
2229
+ - path: src/data/multiset/nodup.lean
2230
+ theorems:
2231
+ - multiset.map_eq_map_of_bij_of_nodup
2232
+ - multiset.nodup.add_iff
2233
+ - multiset.count_eq_of_nodup
2234
+ - multiset.nodup.sigma
2235
+ - path: src/analysis/special_functions/trigonometric/bounds.lean
2236
+ theorems:
2237
+ - real.cos_lt_one_div_sqrt_sq_add_one
2238
+ - real.lt_tan
2239
+ - path: src/data/pfunctor/univariate/basic.lean
2240
+ theorems:
2241
+ - pfunctor.iget_map
2242
+ - path: src/data/bool/all_any.lean
2243
+ theorems:
2244
+ - list.all_iff_forall_prop
2245
+ - path: src/data/nat/digits.lean
2246
+ theorems:
2247
+ - nat.zmodeq_of_digits_digits
2248
+ - nat.last_digit_ne_zero
2249
+ - nat.of_digits_digits
2250
+ - nat.dvd_iff_dvd_digits_sum
2251
+ - nat.eleven_dvd_iff
2252
+ - nat.digits_of_digits
2253
+ - nat.lt_base_pow_length_digits
2254
+ - path: src/analysis/special_functions/improper_integrals.lean
2255
+ theorems:
2256
+ - integral_exp_neg_Ioi_zero
2257
+ - integrable_on_exp_Iic
2258
+ - path: src/data/fintype/quotient.lean
2259
+ theorems:
2260
+ - quotient.fin_choice_aux_eq
2261
+ - quotient.fin_choice_eq
2262
+ - path: src/analysis/locally_convex/continuous_of_bounded.lean
2263
+ theorems:
2264
+ - linear_map.continuous_at_zero_of_locally_bounded
2265
+ - path: src/data/array/lemmas.lean
2266
+ theorems:
2267
+ - array.push_back_to_list
2268
+ - array.mem_to_list
2269
+ - array.push_back_rev_list
2270
+ - path: src/set_theory/game/state.lean
2271
+ theorems:
2272
+ - pgame.turn_bound_ne_zero_of_right_move
2273
+ - pgame.turn_bound_ne_zero_of_left_move
2274
+ - path: src/data/multiset/lattice.lean
2275
+ theorems:
2276
+ - multiset.sup_ndinsert
2277
+ - multiset.sup_add
2278
+ - path: src/data/list/chain.lean
2279
+ theorems:
2280
+ - list.chain'_reverse
2281
+ - list.chain'.append_overlap
2282
+ - path: src/data/dfinsupp/order.lean
2283
+ theorems:
2284
+ - dfinsupp.add_eq_zero_iff
2285
+ - dfinsupp.support_tsub
2286
+ - dfinsupp.support_inf
2287
+ - path: src/data/finset/finsupp.lean
2288
+ theorems:
2289
+ - finsupp.card_pi
2290
+ - path: src/data/finset/slice.lean
2291
+ theorems:
2292
+ - finset.subset_powerset_len_univ_iff
2293
+ - finset.sum_card_slice
2294
+ - "set.sized_Union\u2082"
2295
+ - path: src/analysis/special_functions/log/deriv.lean
2296
+ theorems:
2297
+ - real.tendsto_mul_log_one_plus_div_at_top
2298
+ - real.cont_diff_on_log
2299
+ - real.deriv_log
2300
+ - real.has_sum_pow_div_log_of_abs_lt_1
2301
+ - path: src/analysis/special_functions/integrals.lean
2302
+ theorems:
2303
+ - integral_one_div_one_add_sq
2304
+ - integral_id
2305
+ - integral_sin_sq_mul_cos_sq
2306
+ - integral_exp
2307
+ - integral_one_div_of_neg
2308
+ - interval_integral.interval_integrable_inv_one_add_sq
2309
+ - interval_integral.interval_integrable_cpow
2310
+ - integral_inv
2311
+ - path: src/set_theory/ordinal/cantor_normal_form.lean
2312
+ theorems:
2313
+ - ordinal.CNF_foldr
2314
+ - ordinal.CNF_of_lt
2315
+ - ordinal.CNF_of_le_one
2316
+ - ordinal.CNF_sorted
2317
+ - path: src/data/polynomial/derivative.lean
2318
+ theorems:
2319
+ - polynomial.iterate_derivative_X_pow_eq_C_mul
2320
+ - polynomial.iterate_derivative_mul
2321
+ - polynomial.iterate_derivative_C_mul
2322
+ - polynomial.iterate_derivative_X_sub_pow
2323
+ - path: src/data/multiset/dedup.lean
2324
+ theorems:
2325
+ - multiset.dedup_ext
2326
+ - multiset.dedup_bind_dedup
2327
+ - path: src/data/list/indexes.lean
2328
+ theorems:
2329
+ - list.mmap_with_index'_eq_mmap_with_index
2330
+ - list.indexes_values_eq_filter_enum
2331
+ - list.mfoldl_with_index_eq_mfoldl_enum
2332
+ - list.mfoldr_with_index_eq_mfoldr_enum
2333
+ - path: src/data/finset/sigma.lean
2334
+ theorems:
2335
+ - finset.sigma_lift_eq_empty
2336
+ - finset.sigma_lift_nonempty
2337
+ - path: src/data/multiset/fintype.lean
2338
+ theorems:
2339
+ - multiset.map_to_enum_finset_fst
2340
+ - path: src/data/complex/module.lean
2341
+ theorems:
2342
+ - real_part_add_I_smul_imaginary_part
2343
+ - path: src/data/set/function.lean
2344
+ theorems:
2345
+ - set.piecewise_le_piecewise
2346
+ - set.surj_on_iff_exists_bij_on_subset
2347
+ - set.restrict_extend_compl_range
2348
+ - set.inj_on.image_inter
2349
+ - path: src/data/nat/factors.lean
2350
+ theorems:
2351
+ - nat.factors_chain
2352
+ - nat.mem_factors_mul_right
2353
+ - nat.prime.factors_pow
2354
+ - path: src/data/polynomial/coeff.lean
2355
+ theorems:
2356
+ - polynomial.coeff_X_add_one_pow
2357
+ - polynomial.coeff_smul
2358
+ - polynomial.coeff_bit1_mul
2359
+ - polynomial.card_support_binomial
2360
+ - path: src/data/vector3.lean
2361
+ theorems:
2362
+ - exists_vector_succ
2363
+ - exists_vector_zero
2364
+ - vector3.insert_fs
2365
+ - path: src/set_theory/lists.lean
2366
+ theorems:
2367
+ - lists.lt_sizeof_cons'
2368
+ - lists'.subset.refl
2369
+ - lists'.of_to_list
2370
+ - lists'.of_list_subset
2371
+ - path: src/data/list/func.lean
2372
+ theorems:
2373
+ - list.func.length_set
2374
+ - list.func.forall_val_of_forall_mem
2375
+ - path: src/data/nat/factorial/cast.lean
2376
+ theorems:
2377
+ - nat.cast_desc_factorial_two
2378
+ - path: src/analysis/convex/topology.lean
2379
+ theorems:
2380
+ - closure_open_segment
2381
+ - convex.closure_subset_image_homothety_interior_of_one_lt
2382
+ - path: src/data/matrix/basic.lean
2383
+ theorems:
2384
+ - matrix.diag_col_mul_row
2385
+ - matrix.vec_mul_sub
2386
+ - matrix.sub_mul_vec
2387
+ - path: src/data/fin/tuple/reflection.lean
2388
+ theorems:
2389
+ - fin_vec.exists_iff
2390
+ - fin_vec.seq_eq
2391
+ - path: src/analysis/inner_product_space/positive.lean
2392
+ theorems:
2393
+ - continuous_linear_map.is_positive_zero
2394
+ - path: src/data/nat/cast/defs.lean
2395
+ theorems:
2396
+ - nat.bin_cast_eq
2397
+ - path: src/analysis/inner_product_space/adjoint.lean
2398
+ theorems:
2399
+ - continuous_linear_map.apply_norm_eq_sqrt_inner_adjoint_left
2400
+ - continuous_linear_map.apply_norm_eq_sqrt_inner_adjoint_right
2401
+ - matrix.to_euclidean_lin_conj_transpose_eq_adjoint
2402
+ - continuous_linear_map.adjoint_aux_inner_left
2403
+ - continuous_linear_map.adjoint_aux_norm
2404
+ - linear_map.is_symmetric_iff_is_self_adjoint
2405
+ - path: src/data/pi/interval.lean
2406
+ theorems:
2407
+ - pi.card_Iio
2408
+ - pi.card_Ioi
2409
+ - path: src/data/bitvec/core.lean
2410
+ theorems:
2411
+ - bitvec.bits_to_nat_to_bool
2412
+ - path: src/data/fin/tuple/nat_antidiagonal.lean
2413
+ theorems:
2414
+ - list.nat.antidiagonal_tuple_two
2415
+ - list.nat.nodup_antidiagonal_tuple
2416
+ - list.nat.antidiagonal_tuple_pairwise_pi_lex
2417
+ - path: src/analysis/special_functions/bernstein.lean
2418
+ theorems:
2419
+ - bernstein_apply
2420
+ - path: src/data/pnat/find.lean
2421
+ theorems:
2422
+ - pnat.lt_find_iff
2423
+ - pnat.find_eq_iff
2424
+ - path: src/data/nat/hyperoperation.lean
2425
+ theorems:
2426
+ - hyperoperation_one
2427
+ - hyperoperation_ge_three_one
2428
+ - path: src/analysis/convex/integral.lean
2429
+ theorems:
2430
+ - convex.average_mem_interior_of_set
2431
+ - ae_eq_const_or_norm_set_integral_lt_of_norm_le_const
2432
+ - ae_eq_const_or_norm_integral_lt_of_norm_le_const
2433
+ - path: src/data/finset/pimage.lean
2434
+ theorems:
2435
+ - finset.pimage_union
2436
+ - path: src/data/list/tfae.lean
2437
+ theorems:
2438
+ - list.tfae_of_cycle
2439
+ - path: src/analysis/convex/intrinsic.lean
2440
+ theorems:
2441
+ - set.nonempty.intrinsic_interior
2442
+ - intrinsic_frontier_union_intrinsic_interior
2443
+ - intrinsic_closure_eq_closure
2444
+ - path: src/data/pi/algebra.lean
2445
+ theorems:
2446
+ - sum.elim_mul_single_one
2447
+ - sum.elim_one_mul_single
2448
+ - path: src/data/set/n_ary.lean
2449
+ theorems:
2450
+ - set.image2_inter_left
2451
+ - path: src/model_theory/elementary_maps.lean
2452
+ theorems:
2453
+ - first_order.language.embedding.is_elementary_of_exists
2454
+ - path: src/set_theory/surreal/basic.lean
2455
+ theorems:
2456
+ - pgame.relabelling.numeric_imp
2457
+ - path: src/data/bool/basic.lean
2458
+ theorems:
2459
+ - bool.cond_to_bool
2460
+ - path: src/data/list/fin_range.lean
2461
+ theorems:
2462
+ - list.of_fn_eq_map
2463
+ - list.nodup_of_fn
2464
+ - path: src/data/nat/psub.lean
2465
+ theorems:
2466
+ - nat.psub'_eq_psub
2467
+ - path: src/data/seq/seq.lean
2468
+ theorems:
2469
+ - stream.seq.append_nil
2470
+ - stream.seq.head_dropn
2471
+ - stream.seq.of_stream_cons
2472
+ - stream.seq.not_terminates_iff
2473
+ - path: src/data/int/order/lemmas.lean
2474
+ theorems:
2475
+ - int.nat_abs_eq_iff_mul_self_eq
2476
+ - int.nat_abs_le_iff_mul_self_le
2477
+ - path: src/data/setoid/basic.lean
2478
+ theorems:
2479
+ - setoid.ker_apply_mk_out
2480
+ - setoid.Sup_def
2481
+ - path: src/data/mv_polynomial/comap.lean
2482
+ theorems:
2483
+ - mv_polynomial.comap_rename
2484
+ - path: src/data/finset/powerset.lean
2485
+ theorems:
2486
+ - finset.powerset_len_map
2487
+ - path: src/data/W/cardinal.lean
2488
+ theorems:
2489
+ - W_type.cardinal_mk_le_of_le
2490
+ - path: src/analysis/matrix.lean
2491
+ theorems:
2492
+ - matrix.nnnorm_lt_iff
2493
+ - matrix.frobenius_nnnorm_one
2494
+ - matrix.nnnorm_le_iff
2495
+ - path: src/data/nat/cast/field.lean
2496
+ theorems:
2497
+ - nat.one_div_pos_of_nat
2498
+ - path: src/data/real/cardinality.lean
2499
+ theorems:
2500
+ - cardinal.cantor_function_injective
2501
+ - cardinal.mk_real
2502
+ - path: src/data/set/bool_indicator.lean
2503
+ theorems:
2504
+ - set.preimage_bool_indicator
2505
+ - set.preimage_bool_indicator_eq_union
2506
+ - path: src/data/finsupp/defs.lean
2507
+ theorems:
2508
+ - finsupp.support_zip_with
2509
+ - finsupp.update_eq_sub_add_single
2510
+ - path: src/analysis/special_functions/trigonometric/chebyshev.lean
2511
+ theorems:
2512
+ - polynomial.chebyshev.T_complex_cos
2513
+ - path: src/data/pnat/interval.lean
2514
+ theorems:
2515
+ - pnat.card_Ioo
2516
+ - pnat.card_fintype_Ioo
2517
+ - pnat.card_Icc
2518
+ - path: src/set_theory/game/impartial.lean
2519
+ theorems:
2520
+ - pgame.impartial.nonpos
2521
+ - pgame.impartial.impartial_congr
2522
+ - pgame.impartial.lf_zero_iff
2523
+ - pgame.impartial.equiv_or_fuzzy_zero
2524
+ - pgame.impartial.le_zero_iff
2525
+ - pgame.impartial_aux_def
2526
+ - pgame.impartial.forall_right_moves_fuzzy_iff_equiv_zero
2527
+ - pgame.impartial_def
2528
+ - path: src/data/nat/factorial/basic.lean
2529
+ theorems:
2530
+ - nat.add_factorial_lt_factorial_add
2531
+ - nat.desc_factorial_lt_pow
2532
+ - nat.pow_sub_lt_desc_factorial
2533
+ - nat.add_factorial_le_factorial_add
2534
+ - path: src/data/nat/modeq.lean
2535
+ theorems:
2536
+ - nat.odd_mul_odd_div_two
2537
+ - nat.div_mod_eq_mod_mul_div
2538
+ - nat.add_div_of_dvd_left
2539
+ - path: src/data/setoid/partition.lean
2540
+ theorems:
2541
+ - setoid.eqv_class_mem'
2542
+ - setoid.classes_mk_classes
2543
+ - path: src/data/qpf/multivariate/constructions/fix.lean
2544
+ theorems:
2545
+ - mvqpf.fix.ind_rec
2546
+ - mvqpf.recF_eq
2547
+ - path: src/data/set/intervals/ord_connected_component.lean
2548
+ theorems:
2549
+ - set.disjoint_ord_t5_nhd
2550
+ - set.dual_ord_connected_component
2551
+ - set.ord_connected_proj_eq
2552
+ - path: src/data/set/pointwise/big_operators.lean
2553
+ theorems:
2554
+ - set.mem_finset_prod
2555
+ - set.image_fintype_prod_pi
2556
+ - set.multiset_prod_mem_multiset_prod
2557
+ - set.multiset_prod_subset_multiset_prod
2558
+ - path: src/data/matrix/hadamard.lean
2559
+ theorems:
2560
+ - matrix.dot_product_vec_mul_hadamard
2561
+ - path: src/set_theory/surreal/dyadic.lean
2562
+ theorems:
2563
+ - pgame.pow_half_le_one
2564
+ - pgame.pow_half_pos
2565
+ - surreal.double_pow_half_succ_eq_pow_half
2566
+ - surreal.dyadic_aux
2567
+ - path: src/data/zmod/defs.lean
2568
+ theorems:
2569
+ - zmod.card
2570
+ - path: src/data/real/ereal.lean
2571
+ theorems:
2572
+ - ereal.add_lt_add_left_coe
2573
+ - ereal.top_mul_of_neg
2574
+ - ereal.bot_mul_of_pos
2575
+ - ereal.to_real_mul
2576
+ - ereal.top_mul_of_pos
2577
+ - path: src/set_theory/game/birthday.lean
2578
+ theorems:
2579
+ - pgame.birthday_zero
2580
+ - pgame.neg_birthday_le
2581
+ - pgame.birthday_eq_zero
2582
+ - pgame.to_pgame_birthday
2583
+ - pgame.birthday_add
2584
+ - path: src/data/list/rdrop.lean
2585
+ theorems:
2586
+ - list.rdrop_concat_succ
2587
+ - list.drop_while_eq_self_iff
2588
+ - list.rtake_concat_succ
2589
+ - path: src/data/int/conditionally_complete_order.lean
2590
+ theorems:
2591
+ - int.cSup_eq_greatest_of_bdd
2592
+ - int.cInf_eq_least_of_bdd
2593
+ - path: src/data/list/forall2.lean
2594
+ theorems:
2595
+ - "list.forall\u2082_reverse_iff"
2596
+ - list.rel_reverse
2597
+ - path: src/model_theory/fraisse.lean
2598
+ theorems:
2599
+ - first_order.language.age.countable_quotient
2600
+ - path: src/model_theory/quotients.lean
2601
+ theorems:
2602
+ - first_order.language.fun_map_quotient_mk
2603
+ - path: src/analysis/inner_product_space/symmetric.lean
2604
+ theorems:
2605
+ - linear_map.is_symmetric_iff_inner_map_self_real
2606
+ - linear_map.is_symmetric.continuous
2607
+ - path: src/data/int/lemmas.lean
2608
+ theorems:
2609
+ - int.nat_abs_le_iff_sq_le
2610
+ - int.nat_abs_inj_of_nonneg_of_nonneg
2611
+ - int.strict_anti_on_nat_abs
2612
+ - path: src/data/mv_polynomial/cardinal.lean
2613
+ theorems:
2614
+ - mv_polynomial.cardinal_mk_eq_max_lift
2615
+ - path: src/data/polynomial/expand.lean
2616
+ theorems:
2617
+ - polynomial.coeff_expand
2618
+ - polynomial.map_expand_pow_char
2619
+ - polynomial.derivative_expand
2620
+ - path: src/set_theory/cardinal/schroeder_bernstein.lean
2621
+ theorems:
2622
+ - function.embedding.schroeder_bernstein
2623
+ - path: src/data/list/join.lean
2624
+ theorems:
2625
+ - list.join_filter_ne_nil
2626
+ - list.nth_le_join
2627
+ - path: src/data/list/nodup_equiv_fin.lean
2628
+ theorems:
2629
+ - list.sublist_iff_exists_fin_order_embedding_nth_le_eq
2630
+ - list.sublist_of_order_embedding_nth_eq
2631
+ - list.sublist_iff_exists_order_embedding_nth_eq
2632
+ - path: src/data/nat/interval.lean
2633
+ theorems:
2634
+ - nat.Ico_zero_eq_range
2635
+ - nat.Ico_pred_singleton
2636
+ - path: src/data/rat/floor.lean
2637
+ theorems:
2638
+ - rat.fract_inv_num_lt_num_of_pos
2639
+ - path: src/data/mv_polynomial/division.lean
2640
+ theorems:
2641
+ - mv_polynomial.X_dvd_X
2642
+ - path: src/data/list/count.lean
2643
+ theorems:
2644
+ - list.countp_eq_length
2645
+ - path: src/data/polynomial/erase_lead.lean
2646
+ theorems:
2647
+ - polynomial.erase_lead_ne_zero
2648
+ - polynomial.self_sub_C_mul_X_pow
2649
+ - polynomial.card_support_eq_two
2650
+ - polynomial.card_support_eq_one
2651
+ - path: src/analysis/inner_product_space/rayleigh.lean
2652
+ theorems:
2653
+ - linear_map.is_symmetric.has_strict_fderiv_at_re_apply_inner_self
2654
+ - is_self_adjoint.has_eigenvector_of_is_min_on
2655
+ - path: src/data/pnat/basic.lean
2656
+ theorems:
2657
+ - pnat.mod_add_div'
2658
+ - pnat.one_add_nat_pred
2659
+ - path: src/data/list/range.lean
2660
+ theorems:
2661
+ - list.range_subset
2662
+ - list.chain'_range_succ
2663
+ - list.enum_map_fst
2664
+ - list.chain_range_succ
2665
+ - path: src/data/list/nodup.lean
2666
+ theorems:
2667
+ - list.nodup_iff_nth_ne_nth
2668
+ - list.nodup.concat
2669
+ - list.count_eq_of_nodup
2670
+ - path: src/data/int/modeq.lean
2671
+ theorems:
2672
+ - int.modeq.mul_left'
2673
+ - path: src/model_theory/syntax.lean
2674
+ theorems:
2675
+ - first_order.language.bounded_formula.relabel_sum_inl
2676
+ - first_order.language.Lhom.comp_on_bounded_formula
2677
+ - first_order.language.bounded_formula.cast_le_cast_le
2678
+ - path: src/data/fintype/perm.lean
2679
+ theorems:
2680
+ - mem_perms_of_list_of_mem
2681
+ - nodup_perms_of_list
2682
+ - mem_perms_of_finset_iff
2683
+ - path: src/data/part.lean
2684
+ theorems:
2685
+ - part.ne_none_iff
2686
+ - path: src/data/polynomial/module.lean
2687
+ theorems:
2688
+ - polynomial_module.comp_eval
2689
+ - polynomial_module.monomial_smul_single
2690
+ - path: src/data/real/cau_seq_completion.lean
2691
+ theorems:
2692
+ - cau_seq.completion.mul_inv_cancel
2693
+ - cau_seq.completion.of_rat_div
2694
+ - path: src/data/real/nnreal.lean
2695
+ theorems:
2696
+ - nnreal.mul_lt_of_lt_div
2697
+ - nnreal.inv_le_of_le_mul
2698
+ - nnreal.infi_mul
2699
+ - nnreal.exists_mem_Ioc_zpow
2700
+ - nnreal.le_infi_add_infi
2701
+ - path: src/data/int/order/units.lean
2702
+ theorems:
2703
+ - int.is_unit_sq
2704
+ - path: src/data/polynomial/unit_trinomial.lean
2705
+ theorems:
2706
+ - polynomial.is_unit_trinomial.irreducible_of_coprime
2707
+ - path: src/data/prod/tprod.lean
2708
+ theorems:
2709
+ - list.tprod.mk_elim
2710
+ - path: src/data/finset/card.lean
2711
+ theorems:
2712
+ - finset.card_insert_eq_ite
2713
+ - finset.exists_subset_or_subset_of_two_mul_lt_card
2714
+ - finset.exists_ne_of_one_lt_card
2715
+ - finset.fiber_card_ne_zero_iff_mem_image
2716
+ - path: src/data/enat/basic.lean
2717
+ theorems:
2718
+ - enat.add_one_le_iff
2719
+ - enat.to_nat_sub
2720
+ - path: src/data/fin/tuple/monotone.lean
2721
+ theorems:
2722
+ - lift_fun_vec_cons
2723
+ - path: src/analysis/convex/exposed.lean
2724
+ theorems:
2725
+ - is_exposed.is_extreme
2726
+ - path: src/analysis/convex/body.lean
2727
+ theorems:
2728
+ - convex_body.Hausdorff_edist_coe
2729
+ - path: src/data/fin/tuple/sort.lean
2730
+ theorems:
2731
+ - tuple.eq_sort_iff
2732
+ - tuple.graph.card
2733
+ - tuple.comp_perm_comp_sort_eq_comp_sort
2734
+ - path: src/data/set/enumerate.lean
2735
+ theorems:
2736
+ - set.enumerate_inj
2737
+ - path: src/data/list/alist.lean
2738
+ theorems:
2739
+ - alist.lookup_to_alist
2740
+ - alist.insert_rec_insert
2741
+ - alist.mem_replace
2742
+ - path: src/analysis/inner_product_space/orthogonal.lean
2743
+ theorems:
2744
+ - submodule.bot_orthogonal_eq_top
2745
+ - path: src/data/multiset/pi.lean
2746
+ theorems:
2747
+ - multiset.mem_pi
2748
+ - path: src/data/rat/cast.lean
2749
+ theorems:
2750
+ - rat.cast_div_of_ne_zero
2751
+ - monoid_with_zero_hom.ext_rat'
2752
+ - path: src/data/nat/log.lean
2753
+ theorems:
2754
+ - nat.log_div_mul_self
2755
+ - path: src/data/analysis/filter.lean
2756
+ theorems:
2757
+ - filter.realizer.mem_sets
2758
+ - path: src/data/rel.lean
2759
+ theorems:
2760
+ - rel.preimage_comp
2761
+ - path: src/data/matrix/notation.lean
2762
+ theorems:
2763
+ - matrix.cons_mul
2764
+ - path: src/data/list/duplicate.lean
2765
+ theorems:
2766
+ - list.exists_duplicate_iff_not_nodup
2767
+ - path: src/analysis/convex/extrema.lean
2768
+ theorems:
2769
+ - is_min_on.of_is_local_min_on_of_convex_on_Icc
2770
+ - path: src/analysis/special_functions/compare_exp.lean
2771
+ theorems:
2772
+ - complex.is_exp_cmp_filter.is_o_log_abs_re
2773
+ - path: src/data/set/pointwise/finite.lean
2774
+ theorems:
2775
+ - group.card_pow_eq_card_pow_card_univ
2776
+ - path: src/data/sign.lean
2777
+ theorems:
2778
+ - int.sign_eq_sign
2779
+ - sign_sum
2780
+ - path: src/data/set/intervals/monoid.lean
2781
+ theorems:
2782
+ - set.image_const_add_Ici
2783
+ - path: src/data/sigma/order.lean
2784
+ theorems:
2785
+ - sigma.lt_def
2786
+ - path: src/data/analysis/topology.lean
2787
+ theorems:
2788
+ - ctop.realizer.is_basis
2789
+ - path: src/data/matrix/kronecker.lean
2790
+ theorems:
2791
+ - matrix.det_kronecker_map_bilinear
2792
+ - matrix.inv_kronecker
2793
+ - path: src/data/set/pairwise/lattice.lean
2794
+ theorems:
2795
+ - set.bUnion_diff_bUnion_eq
2796
+ - path: src/data/set/accumulate.lean
2797
+ theorems:
2798
+ - set.bUnion_accumulate
2799
+ - path: src/data/pfunctor/multivariate/W.lean
2800
+ theorems:
2801
+ - mvpfunctor.W_rec_eq
2802
+ - mvpfunctor.W_map_W_mk
2803
+ - path: src/data/fintype/card.lean
2804
+ theorems:
2805
+ - function.embedding.nonempty_of_card_le
2806
+ - fintype.card_eq_zero_iff
2807
+ - path: src/data/nat/sqrt_norm_num.lean
2808
+ theorems:
2809
+ - norm_num.is_sqrt
2810
+ - path: src/data/nat/choose/sum.lean
2811
+ theorems:
2812
+ - nat.choose_middle_le_pow
2813
+ - path: src/data/real/pi/bounds.lean
2814
+ theorems:
2815
+ - real.pi_lt_sqrt_two_add_series
2816
+ - path: src/data/int/basic.lean
2817
+ theorems:
2818
+ - int.succ_neg_succ
2819
+ - int.neg_succ_of_nat_mod
2820
+ - int.pred_neg_pred
2821
+ - int.nat_abs_mul
2822
+ - path: src/analysis/special_functions/trigonometric/complex_deriv.lean
2823
+ theorems:
2824
+ - complex.has_strict_deriv_at_tan
2825
+ - path: src/data/int/succ_pred.lean
2826
+ theorems:
2827
+ - nat.cast_int_covby_iff
2828
+ - path: src/data/finset/fold.lean
2829
+ theorems:
2830
+ - finset.fold_op_distrib
2831
+ - path: src/data/finset/option.lean
2832
+ theorems:
2833
+ - finset.erase_none_image_some
2834
+ - path: src/data/mv_polynomial/comm_ring.lean
2835
+ theorems:
2836
+ - mv_polynomial.vars_sub_of_disjoint
2837
+ - path: src/data/set/sups.lean
2838
+ theorems:
2839
+ - lower_closure_infs
2840
+ - path: src/data/mv_polynomial/supported.lean
2841
+ theorems:
2842
+ - mv_polynomial.supported_eq_range_rename
2843
+ - path: src/analysis/convex/hull.lean
2844
+ theorems:
2845
+ - convex_hull_neg
2846
+ - path: src/data/list/min_max.lean
2847
+ theorems:
2848
+ - list.maximum_eq_coe_iff
2849
+ - path: src/data/list/destutter.lean
2850
+ theorems:
2851
+ - list.destutter'_eq_self_iff
2852
+ - path: src/data/set/pointwise/iterate.lean
2853
+ theorems:
2854
+ - smul_eq_self_of_preimage_zpow_eq_self
2855
+ - path: src/data/matrix/pequiv.lean
2856
+ theorems:
2857
+ - pequiv.single_mul_single
2858
+ - pequiv.to_matrix_injective
2859
+ - path: src/data/multiset/finset_ops.lean
2860
+ theorems:
2861
+ - multiset.le_ndinter
2862
+ - path: src/analysis/special_functions/sqrt.lean
2863
+ theorems:
2864
+ - has_strict_deriv_at.sqrt
2865
+ - path: src/data/bool/set.lean
2866
+ theorems:
2867
+ - bool.range_eq
2868
+ - path: src/data/multiset/interval.lean
2869
+ theorems:
2870
+ - multiset.card_Icc
2871
+ - path: src/data/set/pairwise/basic.lean
2872
+ theorems:
2873
+ - set.nonempty.pairwise_iff_exists_forall
2874
+ - path: src/data/dfinsupp/interval.lean
2875
+ theorems:
2876
+ - dfinsupp.card_pi
2877
+ - path: src/data/polynomial/inductions.lean
2878
+ theorems:
2879
+ - polynomial.div_X_C
2880
+ - path: src/analysis/convex/stone_separation.lean
2881
+ theorems:
2882
+ - exists_convex_convex_compl_subset
2883
+ - path: src/data/finsupp/well_founded.lean
2884
+ theorems:
2885
+ - finsupp.lex.acc
2886
+ - path: src/data/sum/interval.lean
2887
+ theorems:
2888
+ - "finset.sum_lift\u2082_nonempty"
2889
+ - path: src/data/fintype/list.lean
2890
+ theorems:
2891
+ - multiset.mem_lists_iff
2892
+ - path: src/data/finsupp/indicator.lean
2893
+ theorems:
2894
+ - finsupp.support_indicator_subset
2895
+ - path: src/data/polynomial/div.lean
2896
+ theorems:
2897
+ - polynomial.X_dvd_iff
2898
+ - path: src/data/set/equitable.lean
2899
+ theorems:
2900
+ - finset.equitable_on_iff
2901
+ - path: src/model_theory/language_map.lean
2902
+ theorems:
2903
+ - first_order.language.with_constants_fun_map_sum_inr
2904
+ - path: src/data/zmod/quotient.lean
2905
+ theorems:
2906
+ - is_of_fin_order.finite_zpowers
2907
+ - path: src/data/qpf/multivariate/basic.lean
2908
+ theorems:
2909
+ - mvqpf.supp_preservation_iff_liftp_preservation
2910
+ - path: src/data/nat/set.lean
2911
+ theorems:
2912
+ - nat.range_rec