passagemath-schemes 10.8.1a4__cp314-cp314t-macosx_13_0_arm64.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 (312) hide show
  1. passagemath_schemes/.dylibs/libflint.22.0.dylib +0 -0
  2. passagemath_schemes/.dylibs/libgmp.10.dylib +0 -0
  3. passagemath_schemes/.dylibs/libgmpxx.4.dylib +0 -0
  4. passagemath_schemes/.dylibs/libmpfr.6.dylib +0 -0
  5. passagemath_schemes/__init__.py +3 -0
  6. passagemath_schemes-10.8.1a4.dist-info/METADATA +203 -0
  7. passagemath_schemes-10.8.1a4.dist-info/METADATA.bak +204 -0
  8. passagemath_schemes-10.8.1a4.dist-info/RECORD +312 -0
  9. passagemath_schemes-10.8.1a4.dist-info/WHEEL +6 -0
  10. passagemath_schemes-10.8.1a4.dist-info/top_level.txt +3 -0
  11. sage/all__sagemath_schemes.py +23 -0
  12. sage/databases/all__sagemath_schemes.py +7 -0
  13. sage/databases/cremona.py +1723 -0
  14. sage/dynamics/all__sagemath_schemes.py +2 -0
  15. sage/dynamics/arithmetic_dynamics/affine_ds.py +1083 -0
  16. sage/dynamics/arithmetic_dynamics/all.py +14 -0
  17. sage/dynamics/arithmetic_dynamics/berkovich_ds.py +1101 -0
  18. sage/dynamics/arithmetic_dynamics/dynamical_semigroup.py +1543 -0
  19. sage/dynamics/arithmetic_dynamics/endPN_automorphism_group.py +2426 -0
  20. sage/dynamics/arithmetic_dynamics/endPN_minimal_model.py +1169 -0
  21. sage/dynamics/arithmetic_dynamics/generic_ds.py +663 -0
  22. sage/dynamics/arithmetic_dynamics/product_projective_ds.py +339 -0
  23. sage/dynamics/arithmetic_dynamics/projective_ds.py +9556 -0
  24. sage/dynamics/arithmetic_dynamics/projective_ds_helper.cpython-314t-darwin.so +0 -0
  25. sage/dynamics/arithmetic_dynamics/projective_ds_helper.pyx +301 -0
  26. sage/dynamics/arithmetic_dynamics/wehlerK3.py +2578 -0
  27. sage/lfunctions/all.py +18 -0
  28. sage/lfunctions/dokchitser.py +727 -0
  29. sage/lfunctions/pari.py +971 -0
  30. sage/lfunctions/zero_sums.cpython-314t-darwin.so +0 -0
  31. sage/lfunctions/zero_sums.pyx +1847 -0
  32. sage/modular/abvar/abvar.py +5132 -0
  33. sage/modular/abvar/abvar_ambient_jacobian.py +414 -0
  34. sage/modular/abvar/abvar_newform.py +246 -0
  35. sage/modular/abvar/all.py +8 -0
  36. sage/modular/abvar/constructor.py +187 -0
  37. sage/modular/abvar/cuspidal_subgroup.py +371 -0
  38. sage/modular/abvar/finite_subgroup.py +896 -0
  39. sage/modular/abvar/homology.py +721 -0
  40. sage/modular/abvar/homspace.py +989 -0
  41. sage/modular/abvar/lseries.py +415 -0
  42. sage/modular/abvar/morphism.py +935 -0
  43. sage/modular/abvar/torsion_point.py +274 -0
  44. sage/modular/abvar/torsion_subgroup.py +741 -0
  45. sage/modular/all.py +43 -0
  46. sage/modular/arithgroup/all.py +20 -0
  47. sage/modular/arithgroup/arithgroup_element.cpython-314t-darwin.so +0 -0
  48. sage/modular/arithgroup/arithgroup_element.pyx +474 -0
  49. sage/modular/arithgroup/arithgroup_generic.py +1406 -0
  50. sage/modular/arithgroup/arithgroup_perm.py +2692 -0
  51. sage/modular/arithgroup/congroup.cpython-314t-darwin.so +0 -0
  52. sage/modular/arithgroup/congroup.pyx +334 -0
  53. sage/modular/arithgroup/congroup_gamma.py +361 -0
  54. sage/modular/arithgroup/congroup_gamma0.py +692 -0
  55. sage/modular/arithgroup/congroup_gamma1.py +659 -0
  56. sage/modular/arithgroup/congroup_gammaH.py +1491 -0
  57. sage/modular/arithgroup/congroup_generic.py +630 -0
  58. sage/modular/arithgroup/congroup_sl2z.py +266 -0
  59. sage/modular/arithgroup/farey_symbol.cpython-314t-darwin.so +0 -0
  60. sage/modular/arithgroup/farey_symbol.pyx +1067 -0
  61. sage/modular/arithgroup/tests.py +425 -0
  62. sage/modular/btquotients/all.py +4 -0
  63. sage/modular/btquotients/btquotient.py +3736 -0
  64. sage/modular/btquotients/pautomorphicform.py +2564 -0
  65. sage/modular/buzzard.py +100 -0
  66. sage/modular/congroup.py +29 -0
  67. sage/modular/congroup_element.py +13 -0
  68. sage/modular/cusps.py +1107 -0
  69. sage/modular/cusps_nf.py +1270 -0
  70. sage/modular/dims.py +571 -0
  71. sage/modular/dirichlet.py +3310 -0
  72. sage/modular/drinfeld_modform/all.py +2 -0
  73. sage/modular/drinfeld_modform/element.py +446 -0
  74. sage/modular/drinfeld_modform/ring.py +773 -0
  75. sage/modular/drinfeld_modform/tutorial.py +236 -0
  76. sage/modular/etaproducts.py +1076 -0
  77. sage/modular/hecke/algebra.py +725 -0
  78. sage/modular/hecke/all.py +19 -0
  79. sage/modular/hecke/ambient_module.py +994 -0
  80. sage/modular/hecke/degenmap.py +119 -0
  81. sage/modular/hecke/element.py +302 -0
  82. sage/modular/hecke/hecke_operator.py +736 -0
  83. sage/modular/hecke/homspace.py +185 -0
  84. sage/modular/hecke/module.py +1744 -0
  85. sage/modular/hecke/morphism.py +139 -0
  86. sage/modular/hecke/submodule.py +970 -0
  87. sage/modular/hypergeometric_misc.cpython-314t-darwin.so +0 -0
  88. sage/modular/hypergeometric_misc.pxd +4 -0
  89. sage/modular/hypergeometric_misc.pyx +166 -0
  90. sage/modular/hypergeometric_motive.py +2020 -0
  91. sage/modular/local_comp/all.py +2 -0
  92. sage/modular/local_comp/liftings.py +292 -0
  93. sage/modular/local_comp/local_comp.py +1070 -0
  94. sage/modular/local_comp/smoothchar.py +1825 -0
  95. sage/modular/local_comp/type_space.py +748 -0
  96. sage/modular/modform/all.py +30 -0
  97. sage/modular/modform/ambient.py +817 -0
  98. sage/modular/modform/ambient_R.py +177 -0
  99. sage/modular/modform/ambient_eps.py +306 -0
  100. sage/modular/modform/ambient_g0.py +120 -0
  101. sage/modular/modform/ambient_g1.py +199 -0
  102. sage/modular/modform/constructor.py +545 -0
  103. sage/modular/modform/cuspidal_submodule.py +708 -0
  104. sage/modular/modform/defaults.py +14 -0
  105. sage/modular/modform/eis_series.py +487 -0
  106. sage/modular/modform/eisenstein_submodule.py +663 -0
  107. sage/modular/modform/element.py +4105 -0
  108. sage/modular/modform/half_integral.py +154 -0
  109. sage/modular/modform/hecke_operator_on_qexp.py +247 -0
  110. sage/modular/modform/j_invariant.py +47 -0
  111. sage/modular/modform/l_series_gross_zagier.py +127 -0
  112. sage/modular/modform/l_series_gross_zagier_coeffs.cpython-314t-darwin.so +0 -0
  113. sage/modular/modform/l_series_gross_zagier_coeffs.pyx +177 -0
  114. sage/modular/modform/notes.py +45 -0
  115. sage/modular/modform/numerical.py +514 -0
  116. sage/modular/modform/periods.py +14 -0
  117. sage/modular/modform/ring.py +1257 -0
  118. sage/modular/modform/space.py +1859 -0
  119. sage/modular/modform/submodule.py +118 -0
  120. sage/modular/modform/tests.py +64 -0
  121. sage/modular/modform/theta.py +110 -0
  122. sage/modular/modform/vm_basis.py +380 -0
  123. sage/modular/modform/weight1.py +221 -0
  124. sage/modular/modform_hecketriangle/abstract_ring.py +1932 -0
  125. sage/modular/modform_hecketriangle/abstract_space.py +2527 -0
  126. sage/modular/modform_hecketriangle/all.py +30 -0
  127. sage/modular/modform_hecketriangle/analytic_type.py +590 -0
  128. sage/modular/modform_hecketriangle/constructor.py +416 -0
  129. sage/modular/modform_hecketriangle/element.py +351 -0
  130. sage/modular/modform_hecketriangle/functors.py +752 -0
  131. sage/modular/modform_hecketriangle/graded_ring.py +541 -0
  132. sage/modular/modform_hecketriangle/graded_ring_element.py +2225 -0
  133. sage/modular/modform_hecketriangle/hecke_triangle_group_element.py +3349 -0
  134. sage/modular/modform_hecketriangle/hecke_triangle_groups.py +1426 -0
  135. sage/modular/modform_hecketriangle/readme.py +1214 -0
  136. sage/modular/modform_hecketriangle/series_constructor.py +580 -0
  137. sage/modular/modform_hecketriangle/space.py +1037 -0
  138. sage/modular/modform_hecketriangle/subspace.py +423 -0
  139. sage/modular/modsym/all.py +17 -0
  140. sage/modular/modsym/ambient.py +3844 -0
  141. sage/modular/modsym/boundary.py +1420 -0
  142. sage/modular/modsym/element.py +336 -0
  143. sage/modular/modsym/g1list.py +178 -0
  144. sage/modular/modsym/ghlist.py +182 -0
  145. sage/modular/modsym/hecke_operator.py +73 -0
  146. sage/modular/modsym/manin_symbol.cpython-314t-darwin.so +0 -0
  147. sage/modular/modsym/manin_symbol.pxd +5 -0
  148. sage/modular/modsym/manin_symbol.pyx +497 -0
  149. sage/modular/modsym/manin_symbol_list.py +1291 -0
  150. sage/modular/modsym/modsym.py +400 -0
  151. sage/modular/modsym/modular_symbols.py +384 -0
  152. sage/modular/modsym/p1list_nf.py +1241 -0
  153. sage/modular/modsym/relation_matrix.py +591 -0
  154. sage/modular/modsym/relation_matrix_pyx.cpython-314t-darwin.so +0 -0
  155. sage/modular/modsym/relation_matrix_pyx.pyx +108 -0
  156. sage/modular/modsym/space.py +2468 -0
  157. sage/modular/modsym/subspace.py +455 -0
  158. sage/modular/modsym/tests.py +376 -0
  159. sage/modular/multiple_zeta.py +2635 -0
  160. sage/modular/multiple_zeta_F_algebra.py +789 -0
  161. sage/modular/overconvergent/all.py +6 -0
  162. sage/modular/overconvergent/genus0.py +1879 -0
  163. sage/modular/overconvergent/hecke_series.py +1187 -0
  164. sage/modular/overconvergent/weightspace.py +776 -0
  165. sage/modular/pollack_stevens/all.py +4 -0
  166. sage/modular/pollack_stevens/distributions.py +874 -0
  167. sage/modular/pollack_stevens/fund_domain.py +1572 -0
  168. sage/modular/pollack_stevens/manin_map.py +856 -0
  169. sage/modular/pollack_stevens/modsym.py +1590 -0
  170. sage/modular/pollack_stevens/padic_lseries.py +417 -0
  171. sage/modular/pollack_stevens/sigma0.py +534 -0
  172. sage/modular/pollack_stevens/space.py +1078 -0
  173. sage/modular/quasimodform/all.py +3 -0
  174. sage/modular/quasimodform/element.py +846 -0
  175. sage/modular/quasimodform/ring.py +826 -0
  176. sage/modular/quatalg/all.py +3 -0
  177. sage/modular/quatalg/brandt.py +1642 -0
  178. sage/modular/ssmod/all.py +8 -0
  179. sage/modular/ssmod/ssmod.py +827 -0
  180. sage/rings/all__sagemath_schemes.py +1 -0
  181. sage/rings/polynomial/all__sagemath_schemes.py +1 -0
  182. sage/rings/polynomial/binary_form_reduce.py +585 -0
  183. sage/schemes/all.py +41 -0
  184. sage/schemes/berkovich/all.py +6 -0
  185. sage/schemes/berkovich/berkovich_cp_element.py +2582 -0
  186. sage/schemes/berkovich/berkovich_space.py +700 -0
  187. sage/schemes/curves/affine_curve.py +2924 -0
  188. sage/schemes/curves/all.py +33 -0
  189. sage/schemes/curves/closed_point.py +434 -0
  190. sage/schemes/curves/constructor.py +397 -0
  191. sage/schemes/curves/curve.py +542 -0
  192. sage/schemes/curves/plane_curve_arrangement.py +1283 -0
  193. sage/schemes/curves/point.py +463 -0
  194. sage/schemes/curves/projective_curve.py +3203 -0
  195. sage/schemes/curves/weighted_projective_curve.py +106 -0
  196. sage/schemes/curves/zariski_vankampen.py +1931 -0
  197. sage/schemes/cyclic_covers/all.py +2 -0
  198. sage/schemes/cyclic_covers/charpoly_frobenius.py +320 -0
  199. sage/schemes/cyclic_covers/constructor.py +137 -0
  200. sage/schemes/cyclic_covers/cycliccover_finite_field.py +1309 -0
  201. sage/schemes/cyclic_covers/cycliccover_generic.py +310 -0
  202. sage/schemes/elliptic_curves/BSD.py +991 -0
  203. sage/schemes/elliptic_curves/Qcurves.py +592 -0
  204. sage/schemes/elliptic_curves/addition_formulas_ring.py +94 -0
  205. sage/schemes/elliptic_curves/all.py +49 -0
  206. sage/schemes/elliptic_curves/cardinality.py +609 -0
  207. sage/schemes/elliptic_curves/cm.py +1103 -0
  208. sage/schemes/elliptic_curves/constructor.py +1530 -0
  209. sage/schemes/elliptic_curves/ec_database.py +175 -0
  210. sage/schemes/elliptic_curves/ell_curve_isogeny.py +3971 -0
  211. sage/schemes/elliptic_curves/ell_egros.py +457 -0
  212. sage/schemes/elliptic_curves/ell_field.py +2837 -0
  213. sage/schemes/elliptic_curves/ell_finite_field.py +3249 -0
  214. sage/schemes/elliptic_curves/ell_generic.py +3760 -0
  215. sage/schemes/elliptic_curves/ell_local_data.py +1207 -0
  216. sage/schemes/elliptic_curves/ell_modular_symbols.py +775 -0
  217. sage/schemes/elliptic_curves/ell_number_field.py +4220 -0
  218. sage/schemes/elliptic_curves/ell_padic_field.py +107 -0
  219. sage/schemes/elliptic_curves/ell_point.py +4944 -0
  220. sage/schemes/elliptic_curves/ell_rational_field.py +7184 -0
  221. sage/schemes/elliptic_curves/ell_tate_curve.py +671 -0
  222. sage/schemes/elliptic_curves/ell_torsion.py +436 -0
  223. sage/schemes/elliptic_curves/ell_wp.py +352 -0
  224. sage/schemes/elliptic_curves/formal_group.py +760 -0
  225. sage/schemes/elliptic_curves/gal_reps.py +1459 -0
  226. sage/schemes/elliptic_curves/gal_reps_number_field.py +1663 -0
  227. sage/schemes/elliptic_curves/gp_simon.py +152 -0
  228. sage/schemes/elliptic_curves/heegner.py +7328 -0
  229. sage/schemes/elliptic_curves/height.py +2108 -0
  230. sage/schemes/elliptic_curves/hom.py +1788 -0
  231. sage/schemes/elliptic_curves/hom_composite.py +1084 -0
  232. sage/schemes/elliptic_curves/hom_fractional.py +544 -0
  233. sage/schemes/elliptic_curves/hom_frobenius.py +522 -0
  234. sage/schemes/elliptic_curves/hom_scalar.py +531 -0
  235. sage/schemes/elliptic_curves/hom_sum.py +681 -0
  236. sage/schemes/elliptic_curves/hom_velusqrt.py +1290 -0
  237. sage/schemes/elliptic_curves/homset.py +271 -0
  238. sage/schemes/elliptic_curves/isogeny_class.py +1523 -0
  239. sage/schemes/elliptic_curves/isogeny_small_degree.py +2797 -0
  240. sage/schemes/elliptic_curves/jacobian.py +247 -0
  241. sage/schemes/elliptic_curves/kodaira_symbol.py +344 -0
  242. sage/schemes/elliptic_curves/kraus.py +1014 -0
  243. sage/schemes/elliptic_curves/lseries_ell.py +915 -0
  244. sage/schemes/elliptic_curves/mod5family.py +105 -0
  245. sage/schemes/elliptic_curves/mod_poly.py +197 -0
  246. sage/schemes/elliptic_curves/mod_sym_num.cpython-314t-darwin.so +0 -0
  247. sage/schemes/elliptic_curves/mod_sym_num.pyx +3796 -0
  248. sage/schemes/elliptic_curves/modular_parametrization.py +305 -0
  249. sage/schemes/elliptic_curves/padic_lseries.py +1793 -0
  250. sage/schemes/elliptic_curves/padics.py +1816 -0
  251. sage/schemes/elliptic_curves/period_lattice.py +2234 -0
  252. sage/schemes/elliptic_curves/period_lattice_region.cpython-314t-darwin.so +0 -0
  253. sage/schemes/elliptic_curves/period_lattice_region.pyx +722 -0
  254. sage/schemes/elliptic_curves/saturation.py +716 -0
  255. sage/schemes/elliptic_curves/sha_tate.py +1158 -0
  256. sage/schemes/elliptic_curves/weierstrass_morphism.py +1117 -0
  257. sage/schemes/elliptic_curves/weierstrass_transform.py +200 -0
  258. sage/schemes/hyperelliptic_curves/all.py +6 -0
  259. sage/schemes/hyperelliptic_curves/constructor.py +369 -0
  260. sage/schemes/hyperelliptic_curves/hyperelliptic_finite_field.py +1948 -0
  261. sage/schemes/hyperelliptic_curves/hyperelliptic_g2.py +192 -0
  262. sage/schemes/hyperelliptic_curves/hyperelliptic_generic.py +936 -0
  263. sage/schemes/hyperelliptic_curves/hyperelliptic_padic_field.py +1332 -0
  264. sage/schemes/hyperelliptic_curves/hyperelliptic_rational_field.py +84 -0
  265. sage/schemes/hyperelliptic_curves/invariants.py +410 -0
  266. sage/schemes/hyperelliptic_curves/jacobian_endomorphism_utils.py +312 -0
  267. sage/schemes/hyperelliptic_curves/jacobian_g2.py +32 -0
  268. sage/schemes/hyperelliptic_curves/jacobian_generic.py +437 -0
  269. sage/schemes/hyperelliptic_curves/jacobian_homset.py +186 -0
  270. sage/schemes/hyperelliptic_curves/jacobian_morphism.py +878 -0
  271. sage/schemes/hyperelliptic_curves/kummer_surface.py +99 -0
  272. sage/schemes/hyperelliptic_curves/mestre.py +302 -0
  273. sage/schemes/hyperelliptic_curves/monsky_washnitzer.py +3863 -0
  274. sage/schemes/jacobians/abstract_jacobian.py +277 -0
  275. sage/schemes/jacobians/all.py +2 -0
  276. sage/schemes/overview.py +161 -0
  277. sage/schemes/plane_conics/all.py +22 -0
  278. sage/schemes/plane_conics/con_field.py +1296 -0
  279. sage/schemes/plane_conics/con_finite_field.py +158 -0
  280. sage/schemes/plane_conics/con_number_field.py +456 -0
  281. sage/schemes/plane_conics/con_rational_field.py +406 -0
  282. sage/schemes/plane_conics/con_rational_function_field.py +581 -0
  283. sage/schemes/plane_conics/constructor.py +249 -0
  284. sage/schemes/plane_quartics/all.py +2 -0
  285. sage/schemes/plane_quartics/quartic_constructor.py +71 -0
  286. sage/schemes/plane_quartics/quartic_generic.py +53 -0
  287. sage/schemes/riemann_surfaces/all.py +1 -0
  288. sage/schemes/riemann_surfaces/riemann_surface.py +4177 -0
  289. sage_wheels/share/cremona/cremona_mini.db +0 -0
  290. sage_wheels/share/ellcurves/rank0 +30427 -0
  291. sage_wheels/share/ellcurves/rank1 +31871 -0
  292. sage_wheels/share/ellcurves/rank10 +6 -0
  293. sage_wheels/share/ellcurves/rank11 +6 -0
  294. sage_wheels/share/ellcurves/rank12 +1 -0
  295. sage_wheels/share/ellcurves/rank14 +1 -0
  296. sage_wheels/share/ellcurves/rank15 +1 -0
  297. sage_wheels/share/ellcurves/rank17 +1 -0
  298. sage_wheels/share/ellcurves/rank19 +1 -0
  299. sage_wheels/share/ellcurves/rank2 +2388 -0
  300. sage_wheels/share/ellcurves/rank20 +1 -0
  301. sage_wheels/share/ellcurves/rank21 +1 -0
  302. sage_wheels/share/ellcurves/rank22 +1 -0
  303. sage_wheels/share/ellcurves/rank23 +1 -0
  304. sage_wheels/share/ellcurves/rank24 +1 -0
  305. sage_wheels/share/ellcurves/rank28 +1 -0
  306. sage_wheels/share/ellcurves/rank3 +836 -0
  307. sage_wheels/share/ellcurves/rank4 +10 -0
  308. sage_wheels/share/ellcurves/rank5 +5 -0
  309. sage_wheels/share/ellcurves/rank6 +5 -0
  310. sage_wheels/share/ellcurves/rank7 +5 -0
  311. sage_wheels/share/ellcurves/rank8 +6 -0
  312. sage_wheels/share/ellcurves/rank9 +7 -0
@@ -0,0 +1,721 @@
1
+ # sage_setup: distribution = sagemath-schemes
2
+ # sage.doctest: needs sage.libs.flint sage.libs.pari
3
+ r"""
4
+ Homology of modular abelian varieties
5
+
6
+ Sage can compute with homology groups associated to modular abelian
7
+ varieties with coefficients in any commutative ring. Supported
8
+ operations include computing matrices and characteristic
9
+ polynomials of Hecke operators, rank, and rational decomposition as
10
+ a direct sum of factors (obtained by cutting out kernels of Hecke
11
+ operators).
12
+
13
+ AUTHORS:
14
+
15
+ - William Stein (2007-03)
16
+
17
+ EXAMPLES::
18
+
19
+ sage: J = J0(43)
20
+ sage: H = J.integral_homology()
21
+ sage: H
22
+ Integral Homology of Abelian variety J0(43) of dimension 3
23
+ sage: H.hecke_matrix(19)
24
+ [ 0 0 -2 0 2 0]
25
+ [ 2 -4 -2 0 2 0]
26
+ [ 0 0 -2 -2 0 0]
27
+ [ 2 0 -2 -4 2 -2]
28
+ [ 0 2 0 -2 -2 0]
29
+ [ 0 2 0 -2 0 0]
30
+ sage: H.base_ring()
31
+ Integer Ring
32
+ sage: d = H.decomposition(); d
33
+ [Submodule of rank 2 of Integral Homology of Abelian variety J0(43) of dimension 3,
34
+ Submodule of rank 4 of Integral Homology of Abelian variety J0(43) of dimension 3]
35
+ sage: a = d[0]
36
+ sage: a.hecke_matrix(5)
37
+ [-4 0]
38
+ [ 0 -4]
39
+ sage: a.T(7)
40
+ Hecke operator T_7 on
41
+ Submodule of rank 2 of Integral Homology of Abelian variety J0(43) of dimension 3
42
+ """
43
+
44
+ # ****************************************************************************
45
+ # Copyright (C) 2007 William Stein <wstein@gmail.com>
46
+ #
47
+ # This program is free software: you can redistribute it and/or modify
48
+ # it under the terms of the GNU General Public License as published by
49
+ # the Free Software Foundation, either version 2 of the License, or
50
+ # (at your option) any later version.
51
+ # https://www.gnu.org/licenses/
52
+ # ****************************************************************************
53
+
54
+ from sage.categories.commutative_rings import CommutativeRings
55
+ from sage.modular.hecke.module import HeckeModule_free_module
56
+ from sage.rings.integer import Integer
57
+ from sage.rings.integer_ring import ZZ
58
+ from sage.rings.rational_field import QQ
59
+ from sage.structure.richcmp import richcmp_method, richcmp, richcmp_not_equal
60
+
61
+ # TODO: we will probably also need homology that is *not* a Hecke module.
62
+
63
+
64
+ @richcmp_method
65
+ class Homology(HeckeModule_free_module):
66
+ """
67
+ A homology group of an abelian variety, equipped with a Hecke
68
+ action.
69
+ """
70
+ def hecke_polynomial(self, n, var='x'):
71
+ r"""
72
+ Return the `n`-th Hecke polynomial in the given variable.
73
+
74
+ INPUT:
75
+
76
+ - ``n`` -- positive integer
77
+
78
+ - ``var`` -- string (default: ``'x'``); the variable name
79
+
80
+ OUTPUT: a polynomial over `\ZZ` in the given variable
81
+
82
+ EXAMPLES::
83
+
84
+ sage: H = J0(43).integral_homology(); H
85
+ Integral Homology of Abelian variety J0(43) of dimension 3
86
+ sage: f = H.hecke_polynomial(3); f
87
+ x^6 + 4*x^5 - 16*x^3 - 12*x^2 + 16*x + 16
88
+ sage: parent(f)
89
+ Univariate Polynomial Ring in x over Integer Ring
90
+ sage: H.hecke_polynomial(3,'w')
91
+ w^6 + 4*w^5 - 16*w^3 - 12*w^2 + 16*w + 16
92
+ """
93
+ return self.hecke_matrix(n).charpoly(var)
94
+
95
+
96
+ class Homology_abvar(Homology):
97
+ """
98
+ The homology of a modular abelian variety.
99
+ """
100
+ def __init__(self, abvar, base):
101
+ """
102
+ This is an abstract base class, so it is called implicitly in the
103
+ following examples.
104
+
105
+ EXAMPLES::
106
+
107
+ sage: H = J0(43).integral_homology()
108
+ sage: type(H)
109
+ <class 'sage.modular.abvar.homology.IntegralHomology_with_category'>
110
+
111
+ TESTS::
112
+
113
+ sage: H = J0(43).integral_homology()
114
+ sage: loads(dumps(H)) == H
115
+ True
116
+ """
117
+ if base not in CommutativeRings():
118
+ raise TypeError("base ring must be a commutative ring")
119
+ HeckeModule_free_module.__init__(
120
+ self, base, abvar.level(), weight=2)
121
+ self.__abvar = abvar
122
+
123
+ def __richcmp__(self, other, op):
124
+ r"""
125
+ Compare ``self`` to ``other``.
126
+
127
+ EXAMPLES::
128
+
129
+ sage: J0(37).integral_homology() == J0(41).integral_homology()
130
+ False
131
+ sage: J0(37).integral_homology() == J0(37).rational_homology()
132
+ False
133
+ sage: J0(37).integral_homology() == loads(dumps(J0(37).integral_homology()))
134
+ True
135
+ """
136
+ if not isinstance(other, Homology_abvar):
137
+ return NotImplemented
138
+ else:
139
+ return richcmp((self.abelian_variety(), self.base_ring()),
140
+ (other.abelian_variety(), other.base_ring()), op)
141
+
142
+ def _repr_(self) -> str:
143
+ """
144
+ Return string representation of ``self``.
145
+
146
+ This must be defined in the derived class.
147
+
148
+ EXAMPLES::
149
+
150
+ sage: H = J0(43).integral_homology()
151
+ sage: from sage.modular.abvar.homology import Homology_abvar
152
+ sage: Homology_abvar._repr_(H)
153
+ Traceback (most recent call last):
154
+ ...
155
+ NotImplementedError: please override this in the derived class
156
+ """
157
+ raise NotImplementedError("please override this in the derived class")
158
+
159
+ def gens(self) -> tuple:
160
+ """
161
+ Return generators of ``self``.
162
+
163
+ This is not yet implemented!
164
+
165
+ EXAMPLES::
166
+
167
+ sage: H = J0(37).homology()
168
+ sage: H.gens() # this will change
169
+ Traceback (most recent call last):
170
+ ...
171
+ NotImplementedError: homology classes not yet implemented
172
+ """
173
+ raise NotImplementedError("homology classes not yet implemented")
174
+
175
+ def gen(self, n):
176
+ """
177
+ Return `n`-th generator of ``self``.
178
+
179
+ This is not yet implemented!
180
+
181
+ EXAMPLES::
182
+
183
+ sage: H = J0(37).homology()
184
+ sage: H.gen(0) # this will change
185
+ Traceback (most recent call last):
186
+ ...
187
+ NotImplementedError: homology classes not yet implemented
188
+ """
189
+ raise NotImplementedError("homology classes not yet implemented")
190
+
191
+ def abelian_variety(self):
192
+ """
193
+ Return the abelian variety that this is the homology of.
194
+
195
+ EXAMPLES::
196
+
197
+ sage: H = J0(48).homology()
198
+ sage: H.abelian_variety()
199
+ Abelian variety J0(48) of dimension 3
200
+ """
201
+ return self.__abvar
202
+
203
+ def ambient_hecke_module(self):
204
+ """
205
+ Return the ambient Hecke module that this homology is contained
206
+ in.
207
+
208
+ EXAMPLES::
209
+
210
+ sage: H = J0(48).homology(); H
211
+ Integral Homology of Abelian variety J0(48) of dimension 3
212
+ sage: H.ambient_hecke_module()
213
+ Integral Homology of Abelian variety J0(48) of dimension 3
214
+ """
215
+ return self
216
+
217
+ def free_module(self):
218
+ """
219
+ Return the underlying free module of this homology group.
220
+
221
+ EXAMPLES::
222
+
223
+ sage: H = J0(48).homology()
224
+ sage: H.free_module()
225
+ Ambient free module of rank 6 over the principal ideal domain Integer Ring
226
+ """
227
+ try:
228
+ return self.__free_module
229
+ except AttributeError:
230
+ M = self.base_ring()**self.rank()
231
+ self.__free_module = M
232
+ return M
233
+
234
+ def hecke_bound(self):
235
+ r"""
236
+ Return bound on the number of Hecke operators needed to generate
237
+ the Hecke algebra as a `\ZZ`-module acting on this
238
+ space.
239
+
240
+ EXAMPLES::
241
+
242
+ sage: J0(48).homology().hecke_bound()
243
+ 16
244
+ sage: J1(15).homology().hecke_bound()
245
+ 32
246
+ """
247
+ return self.__abvar.modular_symbols(sign=1).hecke_bound()
248
+
249
+ def hecke_matrix(self, n):
250
+ """
251
+ Return the matrix of the `n`-th Hecke operator acting on this
252
+ homology group.
253
+
254
+ INPUT:
255
+
256
+ - ``n`` -- positive integer
257
+
258
+ OUTPUT: a matrix over the coefficient ring of this homology group
259
+
260
+ EXAMPLES::
261
+
262
+ sage: H = J0(23).integral_homology()
263
+ sage: H.hecke_matrix(3)
264
+ [-1 -2 2 0]
265
+ [ 0 -3 2 -2]
266
+ [ 2 -4 3 -2]
267
+ [ 2 -2 0 1]
268
+
269
+ The matrix is over the coefficient ring::
270
+
271
+ sage: J = J0(23)
272
+ sage: J.homology(QQ[I]).hecke_matrix(3).parent()
273
+ Full MatrixSpace of 4 by 4 dense matrices over
274
+ Number Field in I with defining polynomial x^2 + 1 with I = 1*I
275
+ """
276
+ raise NotImplementedError
277
+
278
+ def rank(self):
279
+ """
280
+ Return the rank as a module or vector space of this homology
281
+ group.
282
+
283
+ EXAMPLES::
284
+
285
+ sage: H = J0(5077).homology(); H
286
+ Integral Homology of Abelian variety J0(5077) of dimension 422
287
+ sage: H.rank()
288
+ 844
289
+ """
290
+ return self.__abvar.dimension() * 2
291
+
292
+ def submodule(self, U, check=True):
293
+ r"""
294
+ Return the submodule of this homology group given by `U`,
295
+ which should be a submodule of the free module associated to this
296
+ homology group.
297
+
298
+ INPUT:
299
+
300
+ - ``U`` -- submodule of ambient free module (or
301
+ something that defines one)
302
+
303
+ - ``check`` -- currently ignored
304
+
305
+
306
+ .. NOTE::
307
+
308
+ We do *not* check that U is invariant under all Hecke
309
+ operators.
310
+
311
+ EXAMPLES::
312
+
313
+ sage: H = J0(23).homology(); H
314
+ Integral Homology of Abelian variety J0(23) of dimension 2
315
+ sage: F = H.free_module()
316
+ sage: U = F.span([[1,2,3,4]])
317
+ sage: M = H.submodule(U); M
318
+ Submodule of rank 1 of Integral Homology of Abelian variety J0(23) of dimension 2
319
+
320
+ Note that the submodule command doesn't actually check that the
321
+ object defined is a homology group or is invariant under the Hecke
322
+ operators. For example, the fairly random `M` that we just
323
+ defined is not invariant under the Hecke operators, so it is not a
324
+ Hecke submodule - it is only a `\ZZ`-submodule.
325
+
326
+ ::
327
+
328
+ sage: M.hecke_matrix(3)
329
+ Traceback (most recent call last):
330
+ ...
331
+ ArithmeticError: subspace is not invariant under matrix
332
+ """
333
+ return Homology_submodule(self, U)
334
+
335
+
336
+ class IntegralHomology(Homology_abvar):
337
+ r"""
338
+ The integral homology `H_1(A,\ZZ)` of a modular
339
+ abelian variety.
340
+ """
341
+ def __init__(self, abvar):
342
+ """
343
+ Create the integral homology of a modular abelian variety.
344
+
345
+ INPUT:
346
+
347
+ - ``abvar`` -- a modular abelian variety
348
+
349
+ EXAMPLES::
350
+
351
+ sage: H = J0(23).integral_homology(); H
352
+ Integral Homology of Abelian variety J0(23) of dimension 2
353
+ sage: type(H)
354
+ <class 'sage.modular.abvar.homology.IntegralHomology_with_category'>
355
+
356
+ TESTS::
357
+
358
+ sage: loads(dumps(H)) == H
359
+ True
360
+ """
361
+ Homology_abvar.__init__(self, abvar, ZZ)
362
+
363
+ def _repr_(self):
364
+ """
365
+ String representation of the integral homology.
366
+
367
+ EXAMPLES::
368
+
369
+ sage: J0(23).integral_homology()._repr_()
370
+ 'Integral Homology of Abelian variety J0(23) of dimension 2'
371
+ """
372
+ return "Integral Homology of %s" % self.abelian_variety()
373
+
374
+ def hecke_matrix(self, n):
375
+ """
376
+ Return the matrix of the `n`-th Hecke operator acting on this
377
+ homology group.
378
+
379
+ EXAMPLES::
380
+
381
+ sage: J0(48).integral_homology().hecke_bound()
382
+ 16
383
+ sage: t = J1(13).integral_homology().hecke_matrix(3); t
384
+ [-2 2 2 -2]
385
+ [-2 0 2 0]
386
+ [ 0 0 0 -2]
387
+ [ 0 0 2 -2]
388
+ sage: t.base_ring()
389
+ Integer Ring
390
+ """
391
+ n = Integer(n)
392
+ return self.abelian_variety()._integral_hecke_matrix(n)
393
+
394
+ def hecke_polynomial(self, n, var='x'):
395
+ """
396
+ Return the `n`-th Hecke polynomial on this integral homology group.
397
+
398
+ EXAMPLES::
399
+
400
+ sage: f = J0(43).integral_homology().hecke_polynomial(2)
401
+ sage: f.base_ring()
402
+ Integer Ring
403
+ sage: factor(f)
404
+ (x + 2)^2 * (x^2 - 2)^2
405
+ """
406
+ n = Integer(n)
407
+ M = self.abelian_variety().modular_symbols(sign=1)
408
+ return (M.hecke_polynomial(n, var)**2).change_ring(ZZ)
409
+
410
+
411
+ class RationalHomology(Homology_abvar):
412
+ r"""
413
+ The rational homology `H_1(A,\QQ)` of a modular
414
+ abelian variety.
415
+ """
416
+ def __init__(self, abvar):
417
+ """
418
+ Create the rational homology of a modular abelian variety.
419
+
420
+ INPUT:
421
+
422
+ - ``abvar`` -- a modular abelian variety
423
+
424
+ EXAMPLES::
425
+
426
+ sage: H = J0(23).rational_homology(); H
427
+ Rational Homology of Abelian variety J0(23) of dimension 2
428
+
429
+ TESTS::
430
+
431
+ sage: loads(dumps(H)) == H
432
+ True
433
+ """
434
+ Homology_abvar.__init__(self, abvar, QQ)
435
+
436
+ def _repr_(self):
437
+ """
438
+ Return string representation of the rational homology.
439
+
440
+ EXAMPLES::
441
+
442
+ sage: J0(23).rational_homology()._repr_()
443
+ 'Rational Homology of Abelian variety J0(23) of dimension 2'
444
+ """
445
+ return "Rational Homology of %s" % self.abelian_variety()
446
+
447
+ def hecke_matrix(self, n):
448
+ """
449
+ Return the matrix of the `n`-th Hecke operator acting on this
450
+ homology group.
451
+
452
+ EXAMPLES::
453
+
454
+ sage: t = J1(13).homology(QQ).hecke_matrix(3); t
455
+ [-2 2 2 -2]
456
+ [-2 0 2 0]
457
+ [ 0 0 0 -2]
458
+ [ 0 0 2 -2]
459
+ sage: t.base_ring()
460
+ Rational Field
461
+ sage: t = J1(13).homology(GF(3)).hecke_matrix(3); t
462
+ [1 2 2 1]
463
+ [1 0 2 0]
464
+ [0 0 0 1]
465
+ [0 0 2 1]
466
+ sage: t.base_ring()
467
+ Finite Field of size 3
468
+ """
469
+ n = Integer(n)
470
+ return self.abelian_variety()._rational_hecke_matrix(n)
471
+
472
+ def hecke_polynomial(self, n, var='x'):
473
+ """
474
+ Return the `n`-th Hecke polynomial on this rational homology group.
475
+
476
+ EXAMPLES::
477
+
478
+ sage: f = J0(43).rational_homology().hecke_polynomial(2)
479
+ sage: f.base_ring()
480
+ Rational Field
481
+ sage: factor(f)
482
+ (x + 2) * (x^2 - 2)
483
+ """
484
+ f = self.hecke_operator(n).matrix().characteristic_polynomial(var)
485
+ _, poly = f.is_square(True)
486
+ return poly
487
+
488
+
489
+ class Homology_over_base(Homology_abvar):
490
+ r"""
491
+ The homology over a modular abelian variety over an arbitrary base
492
+ commutative ring (not `\ZZ` or `\QQ`).
493
+ """
494
+ def __init__(self, abvar, base_ring):
495
+ r"""
496
+ Called when creating homology with coefficients not
497
+ `\ZZ` or `\QQ`.
498
+
499
+ INPUT:
500
+
501
+ - ``abvar`` -- a modular abelian variety
502
+
503
+ - ``base_ring`` -- a commutative ring
504
+
505
+ EXAMPLES::
506
+
507
+ sage: H = J0(23).homology(GF(5)); H
508
+ Homology with coefficients in Finite Field of size 5 of Abelian variety J0(23) of dimension 2
509
+ sage: type(H)
510
+ <class 'sage.modular.abvar.homology.Homology_over_base_with_category'>
511
+
512
+ TESTS::
513
+
514
+ sage: loads(dumps(H)) == H
515
+ True
516
+ """
517
+ Homology_abvar.__init__(self, abvar, base_ring)
518
+
519
+ def _repr_(self):
520
+ """
521
+ Return string representation of ``self``.
522
+
523
+ EXAMPLES::
524
+
525
+ sage: H = J0(23).homology(GF(5))
526
+ sage: H._repr_()
527
+ 'Homology with coefficients in Finite Field of size 5 of Abelian variety J0(23) of dimension 2'
528
+ """
529
+ return "Homology with coefficients in %s of %s" % (self.base_ring(), self.abelian_variety())
530
+
531
+ def hecke_matrix(self, n):
532
+ """
533
+ Return the matrix of the `n`-th Hecke operator acting on this
534
+ homology group.
535
+
536
+ EXAMPLES::
537
+
538
+ sage: t = J1(13).homology(GF(3)).hecke_matrix(3); t
539
+ [1 2 2 1]
540
+ [1 0 2 0]
541
+ [0 0 0 1]
542
+ [0 0 2 1]
543
+ sage: t.base_ring()
544
+ Finite Field of size 3
545
+ """
546
+ n = Integer(n)
547
+ return self.abelian_variety()._integral_hecke_matrix(n).change_ring(self.base_ring())
548
+
549
+
550
+ class Homology_submodule(Homology):
551
+ """
552
+ A submodule of the homology of a modular abelian variety.
553
+ """
554
+ def __init__(self, ambient, submodule):
555
+ """
556
+ Create a submodule of the homology of a modular abelian variety.
557
+
558
+ INPUT:
559
+
560
+ - ``ambient`` -- the homology of some modular abelian
561
+ variety with ring coefficients
562
+
563
+ - ``submodule`` -- a submodule of the free module
564
+ underlying ambient
565
+
566
+ EXAMPLES::
567
+
568
+ sage: H = J0(37).homology()
569
+ sage: H.submodule([[1,0,0,0]])
570
+ Submodule of rank 1 of Integral Homology of Abelian variety J0(37) of dimension 2
571
+
572
+ TESTS::
573
+
574
+ sage: loads(dumps(H)) == H
575
+ True
576
+ """
577
+ if not isinstance(ambient, Homology_abvar):
578
+ raise TypeError("ambient must be the homology of a modular abelian variety")
579
+ self.__ambient = ambient
580
+ submodule = ambient.free_module().submodule(submodule)
581
+ self.__submodule = submodule
582
+ HeckeModule_free_module.__init__(
583
+ self, ambient.base_ring(), ambient.level(), weight=2)
584
+
585
+ def _repr_(self):
586
+ """
587
+ String representation of this submodule of homology.
588
+
589
+ EXAMPLES::
590
+
591
+ sage: H = J0(37).homology()
592
+ sage: G = H.submodule([[1, 2, 3, 4]])
593
+ sage: G._repr_()
594
+ 'Submodule of rank 1 of Integral Homology of Abelian variety J0(37) of dimension 2'
595
+ """
596
+ return "Submodule of rank %s of %s" % (self.rank(), self.__ambient)
597
+
598
+ def __richcmp__(self, other, op):
599
+ r"""
600
+ Compare ``self`` to ``other``.
601
+
602
+ EXAMPLES::
603
+
604
+ sage: J0(37).homology().decomposition() # indirect doctest
605
+ [Submodule of rank 2 of Integral Homology of Abelian variety J0(37) of dimension 2,
606
+ Submodule of rank 2 of Integral Homology of Abelian variety J0(37) of dimension 2]
607
+ """
608
+ if not isinstance(other, Homology_submodule):
609
+ return NotImplemented
610
+ lx = self.__ambient
611
+ rx = other.__ambient
612
+ if lx != rx:
613
+ return richcmp_not_equal(lx, rx, op)
614
+ return richcmp(self.__submodule, other.__submodule, op)
615
+
616
+ def ambient_hecke_module(self):
617
+ """
618
+ Return the ambient Hecke module that this homology is contained
619
+ in.
620
+
621
+ EXAMPLES::
622
+
623
+ sage: H = J0(48).homology(); H
624
+ Integral Homology of Abelian variety J0(48) of dimension 3
625
+ sage: d = H.decomposition(); d
626
+ [Submodule of rank 2 of Integral Homology of Abelian variety J0(48) of dimension 3,
627
+ Submodule of rank 4 of Integral Homology of Abelian variety J0(48) of dimension 3]
628
+ sage: d[0].ambient_hecke_module()
629
+ Integral Homology of Abelian variety J0(48) of dimension 3
630
+ """
631
+ return self.__ambient
632
+
633
+ def free_module(self):
634
+ """
635
+ Return the underlying free module of the homology group.
636
+
637
+ EXAMPLES::
638
+
639
+ sage: H = J0(48).homology()
640
+ sage: K = H.decomposition()[1]; K
641
+ Submodule of rank 4 of Integral Homology of Abelian variety J0(48) of dimension 3
642
+ sage: K.free_module()
643
+ Free module of degree 6 and rank 4 over Integer Ring
644
+ Echelon basis matrix:
645
+ [ 1 0 0 0 0 0]
646
+ [ 0 1 0 0 1 -1]
647
+ [ 0 0 1 0 -1 1]
648
+ [ 0 0 0 1 0 -1]
649
+ """
650
+ return self.__submodule
651
+
652
+ def hecke_bound(self):
653
+ """
654
+ Return a bound on the number of Hecke operators needed to generate
655
+ the Hecke algebra acting on this homology group.
656
+
657
+ EXAMPLES::
658
+
659
+ sage: d = J0(43).homology().decomposition(2); d
660
+ [Submodule of rank 2 of Integral Homology of Abelian variety J0(43) of dimension 3,
661
+ Submodule of rank 4 of Integral Homology of Abelian variety J0(43) of dimension 3]
662
+
663
+ Because the first factor has dimension 2 it corresponds to an
664
+ elliptic curve, so we have a Hecke bound of 1.
665
+
666
+ ::
667
+
668
+ sage: d[0].hecke_bound()
669
+ 1
670
+ sage: d[1].hecke_bound()
671
+ 8
672
+ """
673
+ if self.rank() <= 2:
674
+ return ZZ(1)
675
+ else:
676
+ return self.__ambient.hecke_bound()
677
+
678
+ def hecke_matrix(self, n):
679
+ """
680
+ Return the matrix of the `n`-th Hecke operator acting on this
681
+ homology group.
682
+
683
+ EXAMPLES::
684
+
685
+ sage: d = J0(125).homology(GF(17)).decomposition(2); d
686
+ [Submodule of rank 4 of Homology with coefficients in Finite Field of size 17 of Abelian variety J0(125) of dimension 8,
687
+ Submodule of rank 4 of Homology with coefficients in Finite Field of size 17 of Abelian variety J0(125) of dimension 8,
688
+ Submodule of rank 8 of Homology with coefficients in Finite Field of size 17 of Abelian variety J0(125) of dimension 8]
689
+ sage: t = d[0].hecke_matrix(17); t
690
+ [16 15 15 0]
691
+ [ 0 5 0 2]
692
+ [ 2 0 5 15]
693
+ [ 0 15 0 16]
694
+ sage: t.base_ring()
695
+ Finite Field of size 17
696
+ sage: t.fcp()
697
+ (x^2 + 13*x + 16)^2
698
+ """
699
+ n = Integer(n)
700
+ try:
701
+ return self.__hecke_matrix[n]
702
+ except AttributeError:
703
+ self.__hecke_matrix = {}
704
+ except KeyError:
705
+ pass
706
+ t = self.__ambient.hecke_matrix(n)
707
+ s = t.restrict(self.__submodule)
708
+ self.__hecke_matrix[n] = s
709
+ return s
710
+
711
+ def rank(self):
712
+ """
713
+ Return the rank of this homology group.
714
+
715
+ EXAMPLES::
716
+
717
+ sage: d = J0(43).homology().decomposition(2)
718
+ sage: [H.rank() for H in d]
719
+ [2, 4]
720
+ """
721
+ return self.__submodule.rank()