passagemath-singular 10.6.31rc3__cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.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.
Potentially problematic release.
This version of passagemath-singular might be problematic. Click here for more details.
- PySingular.cpython-314-aarch64-linux-gnu.so +0 -0
- passagemath_singular-10.6.31rc3.dist-info/METADATA +183 -0
- passagemath_singular-10.6.31rc3.dist-info/RECORD +490 -0
- passagemath_singular-10.6.31rc3.dist-info/WHEEL +6 -0
- passagemath_singular-10.6.31rc3.dist-info/top_level.txt +3 -0
- passagemath_singular.libs/libSingular-4-6a2a8666.4.1.so +0 -0
- passagemath_singular.libs/libcddgmp-ac579979.so.0.1.3 +0 -0
- passagemath_singular.libs/libfactory-4-66e33516.4.1.so +0 -0
- passagemath_singular.libs/libflint-81de1160.so.21.0.0 +0 -0
- passagemath_singular.libs/libgf2x-fbd36f80.so.3.0.0 +0 -0
- passagemath_singular.libs/libgfortran-e1b7dfc8.so.5.0.0 +0 -0
- passagemath_singular.libs/libgmp-93ebf16a.so.10.5.0 +0 -0
- passagemath_singular.libs/libgsl-e3525837.so.28.0.0 +0 -0
- passagemath_singular.libs/libmpfr-e0f11cf3.so.6.2.1 +0 -0
- passagemath_singular.libs/libntl-0043a3a2.so.44.0.1 +0 -0
- passagemath_singular.libs/libomalloc-0-06512335.9.6.so +0 -0
- passagemath_singular.libs/libopenblasp-r0-4c5b64b1.3.29.so +0 -0
- passagemath_singular.libs/libpolys-4-cb7246b5.4.1.so +0 -0
- passagemath_singular.libs/libreadline-28330744.so.8.2 +0 -0
- passagemath_singular.libs/libsingular_resources-4-8c425241.4.1.so +0 -0
- passagemath_singular.libs/libtinfo-f81c2d16.so.6.3 +0 -0
- sage/algebras/all__sagemath_singular.py +3 -0
- sage/algebras/fusion_rings/all.py +19 -0
- sage/algebras/fusion_rings/f_matrix.py +2448 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.pxd +5 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.pyx +538 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pxd +3 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pyx +331 -0
- sage/algebras/fusion_rings/fusion_double.py +899 -0
- sage/algebras/fusion_rings/fusion_ring.py +1580 -0
- sage/algebras/fusion_rings/poly_tup_engine.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/poly_tup_engine.pxd +24 -0
- sage/algebras/fusion_rings/poly_tup_engine.pyx +579 -0
- sage/algebras/fusion_rings/shm_managers.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/shm_managers.pxd +24 -0
- sage/algebras/fusion_rings/shm_managers.pyx +780 -0
- sage/algebras/letterplace/all.py +1 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.pxd +18 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.pyx +755 -0
- sage/algebras/letterplace/free_algebra_letterplace.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/letterplace/free_algebra_letterplace.pxd +35 -0
- sage/algebras/letterplace/free_algebra_letterplace.pyx +914 -0
- sage/algebras/letterplace/letterplace_ideal.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/letterplace/letterplace_ideal.pyx +408 -0
- sage/algebras/quatalg/all.py +2 -0
- sage/algebras/quatalg/quaternion_algebra.py +4778 -0
- sage/algebras/quatalg/quaternion_algebra_cython.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/quatalg/quaternion_algebra_cython.pyx +261 -0
- sage/algebras/quatalg/quaternion_algebra_element.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/algebras/quatalg/quaternion_algebra_element.pxd +29 -0
- sage/algebras/quatalg/quaternion_algebra_element.pyx +2176 -0
- sage/all__sagemath_singular.py +11 -0
- sage/ext_data/all__sagemath_singular.py +1 -0
- sage/ext_data/singular/function_field/core.lib +98 -0
- sage/interfaces/all__sagemath_singular.py +1 -0
- sage/interfaces/singular.py +2835 -0
- sage/libs/all__sagemath_singular.py +1 -0
- sage/libs/singular/__init__.py +1 -0
- sage/libs/singular/decl.pxd +1168 -0
- sage/libs/singular/function.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/function.pxd +87 -0
- sage/libs/singular/function.pyx +1901 -0
- sage/libs/singular/function_factory.py +61 -0
- sage/libs/singular/groebner_strategy.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/groebner_strategy.pxd +22 -0
- sage/libs/singular/groebner_strategy.pyx +582 -0
- sage/libs/singular/option.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/option.pyx +671 -0
- sage/libs/singular/polynomial.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/polynomial.pxd +39 -0
- sage/libs/singular/polynomial.pyx +661 -0
- sage/libs/singular/ring.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/ring.pxd +58 -0
- sage/libs/singular/ring.pyx +893 -0
- sage/libs/singular/singular.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/singular/singular.pxd +72 -0
- sage/libs/singular/singular.pyx +1944 -0
- sage/libs/singular/standard_options.py +145 -0
- sage/matrix/all__sagemath_singular.py +1 -0
- sage/matrix/matrix_mpolynomial_dense.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/matrix/matrix_mpolynomial_dense.pxd +7 -0
- sage/matrix/matrix_mpolynomial_dense.pyx +615 -0
- sage/rings/all__sagemath_singular.py +1 -0
- sage/rings/function_field/all__sagemath_singular.py +1 -0
- sage/rings/function_field/derivations_polymod.py +911 -0
- sage/rings/function_field/element_polymod.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/rings/function_field/element_polymod.pyx +406 -0
- sage/rings/function_field/function_field_polymod.py +2611 -0
- sage/rings/function_field/ideal_polymod.py +1775 -0
- sage/rings/function_field/order_polymod.py +1475 -0
- sage/rings/function_field/place_polymod.py +681 -0
- sage/rings/polynomial/all__sagemath_singular.py +1 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.pxd +5 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.pyx +339 -0
- sage/rings/polynomial/multi_polynomial_libsingular.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/multi_polynomial_libsingular.pxd +30 -0
- sage/rings/polynomial/multi_polynomial_libsingular.pyx +6277 -0
- sage/rings/polynomial/plural.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/rings/polynomial/plural.pxd +48 -0
- sage/rings/polynomial/plural.pyx +3171 -0
- sage/symbolic/all__sagemath_singular.py +1 -0
- sage/symbolic/comparison_impl.pxi +428 -0
- sage/symbolic/constants_c_impl.pxi +178 -0
- sage/symbolic/expression.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/symbolic/expression.pxd +7 -0
- sage/symbolic/expression.pyx +14200 -0
- sage/symbolic/getitem_impl.pxi +202 -0
- sage/symbolic/pynac.pxi +572 -0
- sage/symbolic/pynac_constant_impl.pxi +133 -0
- sage/symbolic/pynac_function_impl.pxi +206 -0
- sage/symbolic/pynac_impl.pxi +2576 -0
- sage/symbolic/pynac_wrap.h +124 -0
- sage/symbolic/series_impl.pxi +272 -0
- sage/symbolic/substitution_map_impl.pxi +94 -0
- sage_wheels/bin/ESingular +0 -0
- sage_wheels/bin/Singular +0 -0
- sage_wheels/bin/TSingular +0 -0
- sage_wheels/lib/singular/MOD/cohomo.la +41 -0
- sage_wheels/lib/singular/MOD/cohomo.so +0 -0
- sage_wheels/lib/singular/MOD/customstd.la +41 -0
- sage_wheels/lib/singular/MOD/customstd.so +0 -0
- sage_wheels/lib/singular/MOD/freealgebra.la +41 -0
- sage_wheels/lib/singular/MOD/freealgebra.so +0 -0
- sage_wheels/lib/singular/MOD/gfanlib.la +41 -0
- sage_wheels/lib/singular/MOD/gfanlib.so +0 -0
- sage_wheels/lib/singular/MOD/gitfan.la +41 -0
- sage_wheels/lib/singular/MOD/gitfan.so +0 -0
- sage_wheels/lib/singular/MOD/interval.la +41 -0
- sage_wheels/lib/singular/MOD/interval.so +0 -0
- sage_wheels/lib/singular/MOD/loctriv.la +41 -0
- sage_wheels/lib/singular/MOD/loctriv.so +0 -0
- sage_wheels/lib/singular/MOD/machinelearning.la +41 -0
- sage_wheels/lib/singular/MOD/machinelearning.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldQ.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldQ.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldZp.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldZp.so +0 -0
- sage_wheels/lib/singular/MOD/partialgb.la +41 -0
- sage_wheels/lib/singular/MOD/partialgb.so +0 -0
- sage_wheels/lib/singular/MOD/pyobject.la +41 -0
- sage_wheels/lib/singular/MOD/pyobject.so +0 -0
- sage_wheels/lib/singular/MOD/singmathic.la +41 -0
- sage_wheels/lib/singular/MOD/singmathic.so +0 -0
- sage_wheels/lib/singular/MOD/sispasm.la +41 -0
- sage_wheels/lib/singular/MOD/sispasm.so +0 -0
- sage_wheels/lib/singular/MOD/subsets.la +41 -0
- sage_wheels/lib/singular/MOD/subsets.so +0 -0
- sage_wheels/lib/singular/MOD/systhreads.la +41 -0
- sage_wheels/lib/singular/MOD/systhreads.so +0 -0
- sage_wheels/lib/singular/MOD/syzextra.la +41 -0
- sage_wheels/lib/singular/MOD/syzextra.so +0 -0
- sage_wheels/libexec/singular/MOD/change_cost +0 -0
- sage_wheels/libexec/singular/MOD/singularsurf +11 -0
- sage_wheels/libexec/singular/MOD/singularsurf_jupyter +9 -0
- sage_wheels/libexec/singular/MOD/singularsurf_win +10 -0
- sage_wheels/libexec/singular/MOD/solve_IP +0 -0
- sage_wheels/libexec/singular/MOD/surfex +16 -0
- sage_wheels/libexec/singular/MOD/toric_ideal +0 -0
- sage_wheels/share/factory/gftables/10201 +342 -0
- sage_wheels/share/factory/gftables/1024 +37 -0
- sage_wheels/share/factory/gftables/10609 +356 -0
- sage_wheels/share/factory/gftables/11449 +384 -0
- sage_wheels/share/factory/gftables/11881 +398 -0
- sage_wheels/share/factory/gftables/121 +6 -0
- sage_wheels/share/factory/gftables/12167 +408 -0
- sage_wheels/share/factory/gftables/125 +7 -0
- sage_wheels/share/factory/gftables/12769 +428 -0
- sage_wheels/share/factory/gftables/128 +7 -0
- sage_wheels/share/factory/gftables/1331 +47 -0
- sage_wheels/share/factory/gftables/1369 +48 -0
- sage_wheels/share/factory/gftables/14641 +490 -0
- sage_wheels/share/factory/gftables/15625 +523 -0
- sage_wheels/share/factory/gftables/16 +3 -0
- sage_wheels/share/factory/gftables/16129 +540 -0
- sage_wheels/share/factory/gftables/16384 +549 -0
- sage_wheels/share/factory/gftables/16807 +563 -0
- sage_wheels/share/factory/gftables/1681 +58 -0
- sage_wheels/share/factory/gftables/169 +8 -0
- sage_wheels/share/factory/gftables/17161 +574 -0
- sage_wheels/share/factory/gftables/1849 +64 -0
- sage_wheels/share/factory/gftables/18769 +628 -0
- sage_wheels/share/factory/gftables/19321 +646 -0
- sage_wheels/share/factory/gftables/19683 +659 -0
- sage_wheels/share/factory/gftables/2048 +71 -0
- sage_wheels/share/factory/gftables/2187 +75 -0
- sage_wheels/share/factory/gftables/2197 +76 -0
- sage_wheels/share/factory/gftables/2209 +76 -0
- sage_wheels/share/factory/gftables/22201 +742 -0
- sage_wheels/share/factory/gftables/22801 +762 -0
- sage_wheels/share/factory/gftables/2401 +82 -0
- sage_wheels/share/factory/gftables/243 +11 -0
- sage_wheels/share/factory/gftables/24389 +815 -0
- sage_wheels/share/factory/gftables/24649 +824 -0
- sage_wheels/share/factory/gftables/25 +3 -0
- sage_wheels/share/factory/gftables/256 +11 -0
- sage_wheels/share/factory/gftables/26569 +888 -0
- sage_wheels/share/factory/gftables/27 +3 -0
- sage_wheels/share/factory/gftables/27889 +932 -0
- sage_wheels/share/factory/gftables/2809 +96 -0
- sage_wheels/share/factory/gftables/28561 +954 -0
- sage_wheels/share/factory/gftables/289 +12 -0
- sage_wheels/share/factory/gftables/29791 +995 -0
- sage_wheels/share/factory/gftables/29929 +1000 -0
- sage_wheels/share/factory/gftables/3125 +107 -0
- sage_wheels/share/factory/gftables/32 +4 -0
- sage_wheels/share/factory/gftables/32041 +1070 -0
- sage_wheels/share/factory/gftables/32761 +1094 -0
- sage_wheels/share/factory/gftables/32768 +1095 -0
- sage_wheels/share/factory/gftables/343 +14 -0
- sage_wheels/share/factory/gftables/3481 +118 -0
- sage_wheels/share/factory/gftables/361 +14 -0
- sage_wheels/share/factory/gftables/36481 +1218 -0
- sage_wheels/share/factory/gftables/3721 +126 -0
- sage_wheels/share/factory/gftables/37249 +1244 -0
- sage_wheels/share/factory/gftables/38809 +1296 -0
- sage_wheels/share/factory/gftables/39601 +1322 -0
- sage_wheels/share/factory/gftables/4 +3 -0
- sage_wheels/share/factory/gftables/4096 +139 -0
- sage_wheels/share/factory/gftables/44521 +1486 -0
- sage_wheels/share/factory/gftables/4489 +152 -0
- sage_wheels/share/factory/gftables/49 +4 -0
- sage_wheels/share/factory/gftables/4913 +166 -0
- sage_wheels/share/factory/gftables/49729 +1660 -0
- sage_wheels/share/factory/gftables/5041 +170 -0
- sage_wheels/share/factory/gftables/50653 +1691 -0
- sage_wheels/share/factory/gftables/512 +20 -0
- sage_wheels/share/factory/gftables/51529 +1720 -0
- sage_wheels/share/factory/gftables/52441 +1750 -0
- sage_wheels/share/factory/gftables/529 +20 -0
- sage_wheels/share/factory/gftables/5329 +180 -0
- sage_wheels/share/factory/gftables/54289 +1812 -0
- sage_wheels/share/factory/gftables/57121 +1906 -0
- sage_wheels/share/factory/gftables/58081 +1938 -0
- sage_wheels/share/factory/gftables/59049 +1971 -0
- sage_wheels/share/factory/gftables/6241 +210 -0
- sage_wheels/share/factory/gftables/625 +23 -0
- sage_wheels/share/factory/gftables/63001 +2102 -0
- sage_wheels/share/factory/gftables/64 +5 -0
- sage_wheels/share/factory/gftables/6561 +221 -0
- sage_wheels/share/factory/gftables/6859 +231 -0
- sage_wheels/share/factory/gftables/6889 +232 -0
- sage_wheels/share/factory/gftables/729 +27 -0
- sage_wheels/share/factory/gftables/7921 +266 -0
- sage_wheels/share/factory/gftables/8 +3 -0
- sage_wheels/share/factory/gftables/81 +5 -0
- sage_wheels/share/factory/gftables/8192 +276 -0
- sage_wheels/share/factory/gftables/841 +30 -0
- sage_wheels/share/factory/gftables/9 +3 -0
- sage_wheels/share/factory/gftables/9409 +316 -0
- sage_wheels/share/factory/gftables/961 +34 -0
- sage_wheels/share/info/singular.info +191898 -0
- sage_wheels/share/singular/LIB/GND.lib +1359 -0
- sage_wheels/share/singular/LIB/JMBTest.lib +976 -0
- sage_wheels/share/singular/LIB/JMSConst.lib +1363 -0
- sage_wheels/share/singular/LIB/KVequiv.lib +699 -0
- sage_wheels/share/singular/LIB/SingularityDBM.lib +491 -0
- sage_wheels/share/singular/LIB/VecField.lib +1542 -0
- sage_wheels/share/singular/LIB/absfact.lib +959 -0
- sage_wheels/share/singular/LIB/ainvar.lib +730 -0
- sage_wheels/share/singular/LIB/aksaka.lib +419 -0
- sage_wheels/share/singular/LIB/alexpoly.lib +2542 -0
- sage_wheels/share/singular/LIB/algebra.lib +1193 -0
- sage_wheels/share/singular/LIB/all.lib +136 -0
- sage_wheels/share/singular/LIB/arcpoint.lib +514 -0
- sage_wheels/share/singular/LIB/arnold.lib +4553 -0
- sage_wheels/share/singular/LIB/arnoldclassify.lib +2058 -0
- sage_wheels/share/singular/LIB/arr.lib +3486 -0
- sage_wheels/share/singular/LIB/assprimeszerodim.lib +755 -0
- sage_wheels/share/singular/LIB/autgradalg.lib +3361 -0
- sage_wheels/share/singular/LIB/bfun.lib +1964 -0
- sage_wheels/share/singular/LIB/bimodules.lib +774 -0
- sage_wheels/share/singular/LIB/brillnoether.lib +226 -0
- sage_wheels/share/singular/LIB/brnoeth.lib +5017 -0
- sage_wheels/share/singular/LIB/central.lib +2169 -0
- sage_wheels/share/singular/LIB/chern.lib +4162 -0
- sage_wheels/share/singular/LIB/cimonom.lib +571 -0
- sage_wheels/share/singular/LIB/cisimplicial.lib +1835 -0
- sage_wheels/share/singular/LIB/classify.lib +3239 -0
- sage_wheels/share/singular/LIB/classify2.lib +1462 -0
- sage_wheels/share/singular/LIB/classifyMapGerms.lib +1515 -0
- sage_wheels/share/singular/LIB/classify_aeq.lib +3253 -0
- sage_wheels/share/singular/LIB/classifyceq.lib +2092 -0
- sage_wheels/share/singular/LIB/classifyci.lib +1133 -0
- sage_wheels/share/singular/LIB/combinat.lib +91 -0
- sage_wheels/share/singular/LIB/compregb.lib +276 -0
- sage_wheels/share/singular/LIB/control.lib +1636 -0
- sage_wheels/share/singular/LIB/crypto.lib +3795 -0
- sage_wheels/share/singular/LIB/curveInv.lib +667 -0
- sage_wheels/share/singular/LIB/curvepar.lib +1817 -0
- sage_wheels/share/singular/LIB/customstd.lib +100 -0
- sage_wheels/share/singular/LIB/deRham.lib +5979 -0
- sage_wheels/share/singular/LIB/decodegb.lib +2134 -0
- sage_wheels/share/singular/LIB/decomp.lib +1655 -0
- sage_wheels/share/singular/LIB/deflation.lib +872 -0
- sage_wheels/share/singular/LIB/deform.lib +925 -0
- sage_wheels/share/singular/LIB/difform.lib +3055 -0
- sage_wheels/share/singular/LIB/divisors.lib +750 -0
- sage_wheels/share/singular/LIB/dmod.lib +5817 -0
- sage_wheels/share/singular/LIB/dmodapp.lib +3269 -0
- sage_wheels/share/singular/LIB/dmodideal.lib +1211 -0
- sage_wheels/share/singular/LIB/dmodloc.lib +2645 -0
- sage_wheels/share/singular/LIB/dmodvar.lib +818 -0
- sage_wheels/share/singular/LIB/dummy.lib +17 -0
- sage_wheels/share/singular/LIB/elim.lib +1009 -0
- sage_wheels/share/singular/LIB/ellipticcovers.lib +548 -0
- sage_wheels/share/singular/LIB/enumpoints.lib +146 -0
- sage_wheels/share/singular/LIB/equising.lib +2127 -0
- sage_wheels/share/singular/LIB/ffmodstd.lib +2384 -0
- sage_wheels/share/singular/LIB/ffsolve.lib +1289 -0
- sage_wheels/share/singular/LIB/findifs.lib +778 -0
- sage_wheels/share/singular/LIB/finitediff.lib +1768 -0
- sage_wheels/share/singular/LIB/finvar.lib +7989 -0
- sage_wheels/share/singular/LIB/fpadim.lib +2429 -0
- sage_wheels/share/singular/LIB/fpalgebras.lib +1666 -0
- sage_wheels/share/singular/LIB/fpaprops.lib +1462 -0
- sage_wheels/share/singular/LIB/freegb.lib +3853 -0
- sage_wheels/share/singular/LIB/general.lib +1350 -0
- sage_wheels/share/singular/LIB/gfan.lib +1768 -0
- sage_wheels/share/singular/LIB/gitfan.lib +3130 -0
- sage_wheels/share/singular/LIB/gkdim.lib +99 -0
- sage_wheels/share/singular/LIB/gmspoly.lib +589 -0
- sage_wheels/share/singular/LIB/gmssing.lib +1739 -0
- sage_wheels/share/singular/LIB/goettsche.lib +909 -0
- sage_wheels/share/singular/LIB/graal.lib +1366 -0
- sage_wheels/share/singular/LIB/gradedModules.lib +2541 -0
- sage_wheels/share/singular/LIB/graphics.lib +360 -0
- sage_wheels/share/singular/LIB/grobcov.lib +7706 -0
- sage_wheels/share/singular/LIB/groups.lib +1123 -0
- sage_wheels/share/singular/LIB/grwalk.lib +507 -0
- sage_wheels/share/singular/LIB/hdepth.lib +194 -0
- sage_wheels/share/singular/LIB/help.cnf +57 -0
- sage_wheels/share/singular/LIB/hess.lib +1946 -0
- sage_wheels/share/singular/LIB/hnoether.lib +4292 -0
- sage_wheels/share/singular/LIB/hodge.lib +400 -0
- sage_wheels/share/singular/LIB/homolog.lib +1965 -0
- sage_wheels/share/singular/LIB/hyperel.lib +975 -0
- sage_wheels/share/singular/LIB/inout.lib +679 -0
- sage_wheels/share/singular/LIB/integralbasis.lib +6224 -0
- sage_wheels/share/singular/LIB/interval.lib +1418 -0
- sage_wheels/share/singular/LIB/intprog.lib +778 -0
- sage_wheels/share/singular/LIB/invar.lib +443 -0
- sage_wheels/share/singular/LIB/involut.lib +980 -0
- sage_wheels/share/singular/LIB/jacobson.lib +1215 -0
- sage_wheels/share/singular/LIB/kskernel.lib +534 -0
- sage_wheels/share/singular/LIB/latex.lib +3146 -0
- sage_wheels/share/singular/LIB/lejeune.lib +651 -0
- sage_wheels/share/singular/LIB/linalg.lib +2040 -0
- sage_wheels/share/singular/LIB/locnormal.lib +212 -0
- sage_wheels/share/singular/LIB/lrcalc.lib +526 -0
- sage_wheels/share/singular/LIB/makedbm.lib +294 -0
- sage_wheels/share/singular/LIB/mathml.lib +813 -0
- sage_wheels/share/singular/LIB/matrix.lib +1372 -0
- sage_wheels/share/singular/LIB/maxlike.lib +1132 -0
- sage_wheels/share/singular/LIB/methods.lib +212 -0
- sage_wheels/share/singular/LIB/moddiq.lib +322 -0
- sage_wheels/share/singular/LIB/modfinduni.lib +181 -0
- sage_wheels/share/singular/LIB/modnormal.lib +218 -0
- sage_wheels/share/singular/LIB/modprimdec.lib +1278 -0
- sage_wheels/share/singular/LIB/modquotient.lib +269 -0
- sage_wheels/share/singular/LIB/modstd.lib +1024 -0
- sage_wheels/share/singular/LIB/modular.lib +545 -0
- sage_wheels/share/singular/LIB/modules.lib +2561 -0
- sage_wheels/share/singular/LIB/modwalk.lib +609 -0
- sage_wheels/share/singular/LIB/mondromy.lib +1016 -0
- sage_wheels/share/singular/LIB/monomialideal.lib +3851 -0
- sage_wheels/share/singular/LIB/mprimdec.lib +2353 -0
- sage_wheels/share/singular/LIB/mregular.lib +1863 -0
- sage_wheels/share/singular/LIB/multigrading.lib +5629 -0
- sage_wheels/share/singular/LIB/ncHilb.lib +777 -0
- sage_wheels/share/singular/LIB/ncModslimgb.lib +791 -0
- sage_wheels/share/singular/LIB/ncalg.lib +16311 -0
- sage_wheels/share/singular/LIB/ncall.lib +31 -0
- sage_wheels/share/singular/LIB/ncdecomp.lib +468 -0
- sage_wheels/share/singular/LIB/ncfactor.lib +13371 -0
- sage_wheels/share/singular/LIB/ncfrac.lib +1023 -0
- sage_wheels/share/singular/LIB/nchilbert.lib +448 -0
- sage_wheels/share/singular/LIB/nchomolog.lib +759 -0
- sage_wheels/share/singular/LIB/ncloc.lib +361 -0
- sage_wheels/share/singular/LIB/ncpreim.lib +795 -0
- sage_wheels/share/singular/LIB/ncrat.lib +2849 -0
- sage_wheels/share/singular/LIB/nctools.lib +1887 -0
- sage_wheels/share/singular/LIB/nets.lib +1456 -0
- sage_wheels/share/singular/LIB/nfmodstd.lib +1000 -0
- sage_wheels/share/singular/LIB/nfmodsyz.lib +732 -0
- sage_wheels/share/singular/LIB/noether.lib +1106 -0
- sage_wheels/share/singular/LIB/normal.lib +8700 -0
- sage_wheels/share/singular/LIB/normaliz.lib +2226 -0
- sage_wheels/share/singular/LIB/ntsolve.lib +362 -0
- sage_wheels/share/singular/LIB/numerAlg.lib +560 -0
- sage_wheels/share/singular/LIB/numerDecom.lib +2261 -0
- sage_wheels/share/singular/LIB/olga.lib +1933 -0
- sage_wheels/share/singular/LIB/orbitparam.lib +351 -0
- sage_wheels/share/singular/LIB/parallel.lib +319 -0
- sage_wheels/share/singular/LIB/paraplanecurves.lib +3110 -0
- sage_wheels/share/singular/LIB/perron.lib +202 -0
- sage_wheels/share/singular/LIB/pfd.lib +2223 -0
- sage_wheels/share/singular/LIB/phindex.lib +642 -0
- sage_wheels/share/singular/LIB/pointid.lib +673 -0
- sage_wheels/share/singular/LIB/polybori.lib +1430 -0
- sage_wheels/share/singular/LIB/polyclass.lib +525 -0
- sage_wheels/share/singular/LIB/polylib.lib +1174 -0
- sage_wheels/share/singular/LIB/polymake.lib +1902 -0
- sage_wheels/share/singular/LIB/presolve.lib +1533 -0
- sage_wheels/share/singular/LIB/primdec.lib +9576 -0
- sage_wheels/share/singular/LIB/primdecint.lib +1782 -0
- sage_wheels/share/singular/LIB/primitiv.lib +401 -0
- sage_wheels/share/singular/LIB/puiseuxexpansions.lib +1631 -0
- sage_wheels/share/singular/LIB/purityfiltration.lib +960 -0
- sage_wheels/share/singular/LIB/qhmoduli.lib +1561 -0
- sage_wheels/share/singular/LIB/qmatrix.lib +293 -0
- sage_wheels/share/singular/LIB/random.lib +455 -0
- sage_wheels/share/singular/LIB/ratgb.lib +489 -0
- sage_wheels/share/singular/LIB/realclassify.lib +5759 -0
- sage_wheels/share/singular/LIB/realizationMatroids.lib +772 -0
- sage_wheels/share/singular/LIB/realrad.lib +1197 -0
- sage_wheels/share/singular/LIB/recover.lib +2628 -0
- sage_wheels/share/singular/LIB/redcgs.lib +3984 -0
- sage_wheels/share/singular/LIB/reesclos.lib +465 -0
- sage_wheels/share/singular/LIB/resbinomial.lib +2802 -0
- sage_wheels/share/singular/LIB/resgraph.lib +789 -0
- sage_wheels/share/singular/LIB/resjung.lib +820 -0
- sage_wheels/share/singular/LIB/resolve.lib +5110 -0
- sage_wheels/share/singular/LIB/resources.lib +170 -0
- sage_wheels/share/singular/LIB/reszeta.lib +5473 -0
- sage_wheels/share/singular/LIB/ring.lib +1328 -0
- sage_wheels/share/singular/LIB/ringgb.lib +343 -0
- sage_wheels/share/singular/LIB/rinvar.lib +1153 -0
- sage_wheels/share/singular/LIB/rootisolation.lib +1481 -0
- sage_wheels/share/singular/LIB/rootsmr.lib +709 -0
- sage_wheels/share/singular/LIB/rootsur.lib +886 -0
- sage_wheels/share/singular/LIB/rstandard.lib +607 -0
- sage_wheels/share/singular/LIB/rwalk.lib +336 -0
- sage_wheels/share/singular/LIB/sagbi.lib +1353 -0
- sage_wheels/share/singular/LIB/sagbiNormaliz.lib +1622 -0
- sage_wheels/share/singular/LIB/sagbiNormaliz0.lib +1498 -0
- sage_wheels/share/singular/LIB/sagbigrob.lib +449 -0
- sage_wheels/share/singular/LIB/schreyer.lib +321 -0
- sage_wheels/share/singular/LIB/schubert.lib +2551 -0
- sage_wheels/share/singular/LIB/sets.lib +524 -0
- sage_wheels/share/singular/LIB/sheafcoh.lib +1663 -0
- sage_wheels/share/singular/LIB/signcond.lib +437 -0
- sage_wheels/share/singular/LIB/sing.lib +1094 -0
- sage_wheels/share/singular/LIB/sing4ti2.lib +419 -0
- sage_wheels/share/singular/LIB/solve.lib +2243 -0
- sage_wheels/share/singular/LIB/spcurve.lib +1077 -0
- sage_wheels/share/singular/LIB/spectrum.lib +62 -0
- sage_wheels/share/singular/LIB/sresext.lib +757 -0
- sage_wheels/share/singular/LIB/ssi.lib +143 -0
- sage_wheels/share/singular/LIB/standard.lib +2769 -0
- sage_wheels/share/singular/LIB/stanleyreisner.lib +473 -0
- sage_wheels/share/singular/LIB/stdmodule.lib +547 -0
- sage_wheels/share/singular/LIB/stratify.lib +1070 -0
- sage_wheels/share/singular/LIB/surf.lib +506 -0
- sage_wheels/share/singular/LIB/surf_jupyter.lib +223 -0
- sage_wheels/share/singular/LIB/surfacesignature.lib +522 -0
- sage_wheels/share/singular/LIB/surfex.lib +1462 -0
- sage_wheels/share/singular/LIB/swalk.lib +877 -0
- sage_wheels/share/singular/LIB/symodstd.lib +1570 -0
- sage_wheels/share/singular/LIB/systhreads.lib +74 -0
- sage_wheels/share/singular/LIB/tasks.lib +1324 -0
- sage_wheels/share/singular/LIB/tateProdCplxNegGrad.lib +2412 -0
- sage_wheels/share/singular/LIB/teachstd.lib +858 -0
- sage_wheels/share/singular/LIB/template.lib +116 -0
- sage_wheels/share/singular/LIB/toric.lib +1119 -0
- sage_wheels/share/singular/LIB/transformation.lib +116 -0
- sage_wheels/share/singular/LIB/triang.lib +1197 -0
- sage_wheels/share/singular/LIB/tropical.lib +8741 -0
- sage_wheels/share/singular/LIB/tropicalEllipticCovers.lib +2922 -0
- sage_wheels/share/singular/LIB/tropicalNewton.lib +1128 -0
- sage_wheels/share/singular/LIB/tst.lib +1108 -0
- sage_wheels/share/singular/LIB/weierstr.lib +241 -0
- sage_wheels/share/singular/LIB/zeroset.lib +1478 -0
- sage_wheels/share/singular/emacs/.emacs-general +184 -0
- sage_wheels/share/singular/emacs/.emacs-singular +234 -0
- sage_wheels/share/singular/emacs/COPYING +44 -0
- sage_wheels/share/singular/emacs/cmd-cmpl.el +241 -0
- sage_wheels/share/singular/emacs/ex-cmpl.el +1681 -0
- sage_wheels/share/singular/emacs/hlp-cmpl.el +4318 -0
- sage_wheels/share/singular/emacs/lib-cmpl.el +179 -0
- sage_wheels/share/singular/emacs/singular.el +4273 -0
- sage_wheels/share/singular/emacs/singular.xpm +39 -0
- sage_wheels/share/singular/singular.idx +5002 -0
|
@@ -0,0 +1,406 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-singular
|
|
2
|
+
# sage.doctest: needs sage.rings.function_field
|
|
3
|
+
r"""
|
|
4
|
+
Elements of function fields: extension
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
# *****************************************************************************
|
|
8
|
+
# Copyright (C) 2010 William Stein <wstein@gmail.com>
|
|
9
|
+
# 2010 Robert Bradshaw <robertwb@math.washington.edu>
|
|
10
|
+
# 2011-2020 Julian Rueth <julian.rueth@gmail.com>
|
|
11
|
+
# 2011 Maarten Derickx <m.derickx.student@gmail.com>
|
|
12
|
+
# 2015 Nils Bruin
|
|
13
|
+
# 2016 Frédéric Chapoton
|
|
14
|
+
# 2017-2019 Kwankyu Lee
|
|
15
|
+
# 2018-2020 Travis Scrimshaw
|
|
16
|
+
# 2019 Brent Baccala
|
|
17
|
+
# 2021 Saher Amasha
|
|
18
|
+
#
|
|
19
|
+
# Distributed under the terms of the GNU General Public License (GPL)
|
|
20
|
+
# as published by the Free Software Foundation; either version 2 of
|
|
21
|
+
# the License, or (at your option) any later version.
|
|
22
|
+
# https://www.gnu.org/licenses/
|
|
23
|
+
# *****************************************************************************
|
|
24
|
+
|
|
25
|
+
from sage.structure.richcmp cimport richcmp
|
|
26
|
+
from sage.structure.element cimport FieldElement
|
|
27
|
+
|
|
28
|
+
from sage.rings.function_field.element cimport FunctionFieldElement
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
cdef class FunctionFieldElement_polymod(FunctionFieldElement):
|
|
32
|
+
"""
|
|
33
|
+
Elements of a finite extension of a function field.
|
|
34
|
+
|
|
35
|
+
EXAMPLES::
|
|
36
|
+
|
|
37
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
38
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
39
|
+
sage: x*y + 1/x^3
|
|
40
|
+
x*y + 1/x^3
|
|
41
|
+
"""
|
|
42
|
+
def __init__(self, parent, x, reduce=True):
|
|
43
|
+
"""
|
|
44
|
+
Initialize.
|
|
45
|
+
|
|
46
|
+
EXAMPLES::
|
|
47
|
+
|
|
48
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
49
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
50
|
+
sage: TestSuite(x*y + 1/x^3).run()
|
|
51
|
+
"""
|
|
52
|
+
FieldElement.__init__(self, parent)
|
|
53
|
+
if reduce:
|
|
54
|
+
self._x = x % self._parent.polynomial()
|
|
55
|
+
else:
|
|
56
|
+
self._x = x
|
|
57
|
+
|
|
58
|
+
def element(self):
|
|
59
|
+
"""
|
|
60
|
+
Return the underlying polynomial that represents the element.
|
|
61
|
+
|
|
62
|
+
EXAMPLES::
|
|
63
|
+
|
|
64
|
+
sage: K.<x> = FunctionField(QQ); R.<T> = K[]
|
|
65
|
+
sage: L.<y> = K.extension(T^2 - x*T + 4*x^3)
|
|
66
|
+
sage: f = y/x^2 + x/(x^2+1); f
|
|
67
|
+
1/x^2*y + x/(x^2 + 1)
|
|
68
|
+
sage: f.element()
|
|
69
|
+
1/x^2*y + x/(x^2 + 1)
|
|
70
|
+
"""
|
|
71
|
+
return self._x
|
|
72
|
+
|
|
73
|
+
def _repr_(self):
|
|
74
|
+
"""
|
|
75
|
+
Return the string representation of the element.
|
|
76
|
+
|
|
77
|
+
EXAMPLES::
|
|
78
|
+
|
|
79
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
80
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
81
|
+
sage: y._repr_()
|
|
82
|
+
'y'
|
|
83
|
+
"""
|
|
84
|
+
return self._x._repr(name=self.parent().variable_name())
|
|
85
|
+
|
|
86
|
+
def __bool__(self):
|
|
87
|
+
"""
|
|
88
|
+
Return ``True`` if the element is not zero.
|
|
89
|
+
|
|
90
|
+
EXAMPLES::
|
|
91
|
+
|
|
92
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
93
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
94
|
+
sage: bool(y)
|
|
95
|
+
True
|
|
96
|
+
sage: bool(L(0))
|
|
97
|
+
False
|
|
98
|
+
sage: bool(L.coerce(L.polynomial()))
|
|
99
|
+
False
|
|
100
|
+
"""
|
|
101
|
+
return not not self._x
|
|
102
|
+
|
|
103
|
+
def __hash__(self):
|
|
104
|
+
"""
|
|
105
|
+
Return the hash of the element.
|
|
106
|
+
|
|
107
|
+
TESTS::
|
|
108
|
+
|
|
109
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
110
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
111
|
+
sage: len({hash(y^i+x^j) for i in [-2..2] for j in [-2..2]}) >= 24
|
|
112
|
+
True
|
|
113
|
+
"""
|
|
114
|
+
return hash(self._x)
|
|
115
|
+
|
|
116
|
+
cpdef _richcmp_(self, other, int op):
|
|
117
|
+
"""
|
|
118
|
+
Do rich comparison with the other element with respect to ``op``.
|
|
119
|
+
|
|
120
|
+
EXAMPLES::
|
|
121
|
+
|
|
122
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
123
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
124
|
+
sage: L(0) == 0
|
|
125
|
+
True
|
|
126
|
+
sage: y != L(2)
|
|
127
|
+
True
|
|
128
|
+
"""
|
|
129
|
+
cdef FunctionFieldElement left = <FunctionFieldElement>self
|
|
130
|
+
cdef FunctionFieldElement right = <FunctionFieldElement>other
|
|
131
|
+
return richcmp(left._x, right._x, op)
|
|
132
|
+
|
|
133
|
+
cpdef _add_(self, right):
|
|
134
|
+
"""
|
|
135
|
+
Add the element with the other element.
|
|
136
|
+
|
|
137
|
+
INPUT:
|
|
138
|
+
|
|
139
|
+
- ``right`` -- element
|
|
140
|
+
|
|
141
|
+
EXAMPLES::
|
|
142
|
+
|
|
143
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
144
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
145
|
+
sage: (2*y + x/(1+x^3)) + (3*y + 5*x*y) # indirect doctest
|
|
146
|
+
(5*x + 5)*y + x/(x^3 + 1)
|
|
147
|
+
sage: (y^2 - x*y + 4*x^3)==0 # indirect doctest
|
|
148
|
+
True
|
|
149
|
+
sage: -y + y
|
|
150
|
+
0
|
|
151
|
+
"""
|
|
152
|
+
cdef FunctionFieldElement res = self._new_c()
|
|
153
|
+
res._x = self._x + (<FunctionFieldElement>right)._x
|
|
154
|
+
return res
|
|
155
|
+
|
|
156
|
+
cpdef _sub_(self, right):
|
|
157
|
+
"""
|
|
158
|
+
Subtract the other element from the element.
|
|
159
|
+
|
|
160
|
+
INPUT:
|
|
161
|
+
|
|
162
|
+
- ``right`` -- element
|
|
163
|
+
|
|
164
|
+
EXAMPLES::
|
|
165
|
+
|
|
166
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
167
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
168
|
+
sage: (2*y + x/(1+x^3)) - (3*y + 5*x*y) # indirect doctest
|
|
169
|
+
(-5*x - 1)*y + x/(x^3 + 1)
|
|
170
|
+
sage: y - y
|
|
171
|
+
0
|
|
172
|
+
"""
|
|
173
|
+
cdef FunctionFieldElement res = self._new_c()
|
|
174
|
+
res._x = self._x - (<FunctionFieldElement>right)._x
|
|
175
|
+
return res
|
|
176
|
+
|
|
177
|
+
cpdef _mul_(self, right):
|
|
178
|
+
"""
|
|
179
|
+
Multiply the element with the other element.
|
|
180
|
+
|
|
181
|
+
INPUT:
|
|
182
|
+
|
|
183
|
+
- ``right`` -- element
|
|
184
|
+
|
|
185
|
+
EXAMPLES::
|
|
186
|
+
|
|
187
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
188
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
189
|
+
sage: y * (3*y + 5*x*y) # indirect doctest
|
|
190
|
+
(5*x^2 + 3*x)*y - 20*x^4 - 12*x^3
|
|
191
|
+
"""
|
|
192
|
+
cdef FunctionFieldElement res = self._new_c()
|
|
193
|
+
res._x = (self._x * (<FunctionFieldElement>right)._x) % self._parent.polynomial()
|
|
194
|
+
return res
|
|
195
|
+
|
|
196
|
+
cpdef _div_(self, right):
|
|
197
|
+
"""
|
|
198
|
+
Divide the element with the other element.
|
|
199
|
+
|
|
200
|
+
INPUT:
|
|
201
|
+
|
|
202
|
+
- ``right`` -- element
|
|
203
|
+
|
|
204
|
+
EXAMPLES::
|
|
205
|
+
|
|
206
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
207
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
208
|
+
sage: (2*y + x/(1+x^3)) / (2*y + x/(1+x^3)) # indirect doctest
|
|
209
|
+
1
|
|
210
|
+
sage: 1 / (y^2 - x*y + 4*x^3) # indirect doctest
|
|
211
|
+
Traceback (most recent call last):
|
|
212
|
+
...
|
|
213
|
+
ZeroDivisionError: Cannot invert 0
|
|
214
|
+
"""
|
|
215
|
+
return self * ~right
|
|
216
|
+
|
|
217
|
+
def __invert__(self):
|
|
218
|
+
"""
|
|
219
|
+
Return the multiplicative inverse of the element.
|
|
220
|
+
|
|
221
|
+
EXAMPLES::
|
|
222
|
+
|
|
223
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
224
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
225
|
+
sage: a = ~(2*y + 1/x); a # indirect doctest
|
|
226
|
+
(-1/8*x^2/(x^5 + 1/8*x^2 + 1/16))*y + (1/8*x^3 + 1/16*x)/(x^5 + 1/8*x^2 + 1/16)
|
|
227
|
+
sage: a*(2*y + 1/x)
|
|
228
|
+
1
|
|
229
|
+
"""
|
|
230
|
+
if self.is_zero():
|
|
231
|
+
raise ZeroDivisionError("Cannot invert 0")
|
|
232
|
+
P = self._parent
|
|
233
|
+
return P(self._x.xgcd(P._polynomial)[1])
|
|
234
|
+
|
|
235
|
+
cpdef list list(self):
|
|
236
|
+
"""
|
|
237
|
+
Return the list of the coefficients representing the element.
|
|
238
|
+
|
|
239
|
+
If the function field is `K[y]/(f(y))`, then return the coefficients of
|
|
240
|
+
the reduced presentation of the element as a polynomial in `K[y]`.
|
|
241
|
+
|
|
242
|
+
EXAMPLES::
|
|
243
|
+
|
|
244
|
+
sage: K.<x> = FunctionField(QQ); R.<y> = K[]
|
|
245
|
+
sage: L.<y> = K.extension(y^2 - x*y + 4*x^3)
|
|
246
|
+
sage: a = ~(2*y + 1/x); a
|
|
247
|
+
(-1/8*x^2/(x^5 + 1/8*x^2 + 1/16))*y + (1/8*x^3 + 1/16*x)/(x^5 + 1/8*x^2 + 1/16)
|
|
248
|
+
sage: a.list()
|
|
249
|
+
[(1/8*x^3 + 1/16*x)/(x^5 + 1/8*x^2 + 1/16), -1/8*x^2/(x^5 + 1/8*x^2 + 1/16)]
|
|
250
|
+
sage: (x*y).list()
|
|
251
|
+
[0, x]
|
|
252
|
+
"""
|
|
253
|
+
return self._x.padded_list(self._parent.degree())
|
|
254
|
+
|
|
255
|
+
cpdef FunctionFieldElement nth_root(self, n):
|
|
256
|
+
r"""
|
|
257
|
+
Return an ``n``-th root of this element in the function field.
|
|
258
|
+
|
|
259
|
+
INPUT:
|
|
260
|
+
|
|
261
|
+
- ``n`` -- integer
|
|
262
|
+
|
|
263
|
+
OUTPUT:
|
|
264
|
+
|
|
265
|
+
Returns an element ``a`` in the function field such that this element
|
|
266
|
+
equals `a^n`. Raises an error if no such element exists.
|
|
267
|
+
|
|
268
|
+
ALGORITHM:
|
|
269
|
+
|
|
270
|
+
If ``n`` is a power of the characteristic of the field and the constant
|
|
271
|
+
base field is perfect, then this uses the algorithm described in
|
|
272
|
+
Proposition 12 of [GiTr1996]_.
|
|
273
|
+
|
|
274
|
+
.. SEEALSO::
|
|
275
|
+
|
|
276
|
+
:meth:`is_nth_power`
|
|
277
|
+
|
|
278
|
+
EXAMPLES::
|
|
279
|
+
|
|
280
|
+
sage: K.<x> = FunctionField(GF(3))
|
|
281
|
+
sage: R.<y> = K[]
|
|
282
|
+
sage: L.<y> = K.extension(y^2 - x)
|
|
283
|
+
sage: L(y^3).nth_root(3)
|
|
284
|
+
y
|
|
285
|
+
sage: L(y^9).nth_root(-9)
|
|
286
|
+
1/x*y
|
|
287
|
+
|
|
288
|
+
This also works for inseparable extensions::
|
|
289
|
+
|
|
290
|
+
sage: K.<x> = FunctionField(GF(3))
|
|
291
|
+
sage: R.<y> = K[]
|
|
292
|
+
sage: L.<y> = K.extension(y^3 - x^2)
|
|
293
|
+
sage: L(x).nth_root(3)^3
|
|
294
|
+
x
|
|
295
|
+
sage: L(x^9).nth_root(-27)^-27
|
|
296
|
+
x^9
|
|
297
|
+
"""
|
|
298
|
+
if n == 1:
|
|
299
|
+
return self
|
|
300
|
+
if n < 0:
|
|
301
|
+
return (~self).nth_root(-n)
|
|
302
|
+
if n == 0:
|
|
303
|
+
if not self.is_one():
|
|
304
|
+
raise ValueError("element is not a 0-th power")
|
|
305
|
+
return self
|
|
306
|
+
|
|
307
|
+
# reduce to the separable case
|
|
308
|
+
poly = self._parent._polynomial
|
|
309
|
+
if not poly.gcd(poly.derivative()).is_one():
|
|
310
|
+
_, from_L, to_L = self._parent.separable_model(('t', 'w'))
|
|
311
|
+
return from_L(to_L(self).nth_root(n))
|
|
312
|
+
|
|
313
|
+
constant_base_field = self._parent.constant_base_field()
|
|
314
|
+
p = constant_base_field.characteristic()
|
|
315
|
+
if p.divides(n) and constant_base_field.is_perfect():
|
|
316
|
+
return self._pth_root().nth_root(n//p)
|
|
317
|
+
|
|
318
|
+
raise NotImplementedError("nth_root() not implemented for this n")
|
|
319
|
+
|
|
320
|
+
cpdef bint is_nth_power(self, n) noexcept:
|
|
321
|
+
r"""
|
|
322
|
+
Return whether this element is an ``n``-th power in the function field.
|
|
323
|
+
|
|
324
|
+
INPUT:
|
|
325
|
+
|
|
326
|
+
- ``n`` -- integer
|
|
327
|
+
|
|
328
|
+
ALGORITHM:
|
|
329
|
+
|
|
330
|
+
If ``n`` is a power of the characteristic of the field and the constant
|
|
331
|
+
base field is perfect, then this uses the algorithm described in
|
|
332
|
+
Proposition 12 of [GiTr1996]_.
|
|
333
|
+
|
|
334
|
+
.. SEEALSO::
|
|
335
|
+
|
|
336
|
+
:meth:`nth_root`
|
|
337
|
+
|
|
338
|
+
EXAMPLES::
|
|
339
|
+
|
|
340
|
+
sage: # needs sage.rings.finite_rings
|
|
341
|
+
sage: K.<x> = FunctionField(GF(4))
|
|
342
|
+
sage: R.<y> = K[]
|
|
343
|
+
sage: L.<y> = K.extension(y^2 - x)
|
|
344
|
+
sage: y.is_nth_power(2)
|
|
345
|
+
False
|
|
346
|
+
sage: L(x).is_nth_power(2)
|
|
347
|
+
True
|
|
348
|
+
"""
|
|
349
|
+
if n == 0:
|
|
350
|
+
return self.is_one()
|
|
351
|
+
if n == 1:
|
|
352
|
+
return True
|
|
353
|
+
if n < 0:
|
|
354
|
+
return self.is_unit() and (~self).is_nth_power(-n)
|
|
355
|
+
|
|
356
|
+
# reduce to the separable case
|
|
357
|
+
poly = self._parent._polynomial
|
|
358
|
+
if not poly.gcd(poly.derivative()).is_one():
|
|
359
|
+
_, _, to_L = self._parent.separable_model(('t', 'w'))
|
|
360
|
+
return to_L(self).is_nth_power(n)
|
|
361
|
+
|
|
362
|
+
constant_base_field = self._parent.constant_base_field()
|
|
363
|
+
p = constant_base_field.characteristic()
|
|
364
|
+
if p.divides(n) and constant_base_field.is_perfect():
|
|
365
|
+
return self._parent.derivation()(self).is_zero() and self._pth_root().is_nth_power(n//p)
|
|
366
|
+
|
|
367
|
+
raise NotImplementedError("is_nth_power() not implemented for this n")
|
|
368
|
+
|
|
369
|
+
cdef FunctionFieldElement _pth_root(self):
|
|
370
|
+
r"""
|
|
371
|
+
Helper method for :meth:`nth_root` and :meth:`is_nth_power` which
|
|
372
|
+
computes a `p`-th root if the characteristic is `p` and the constant
|
|
373
|
+
base field is perfect.
|
|
374
|
+
|
|
375
|
+
EXAMPLES::
|
|
376
|
+
|
|
377
|
+
sage: K.<x> = FunctionField(GF(3))
|
|
378
|
+
sage: R.<y> = K[]
|
|
379
|
+
sage: L.<y> = K.extension(y^2 - x)
|
|
380
|
+
sage: (y^3).nth_root(3) # indirect doctest
|
|
381
|
+
y
|
|
382
|
+
"""
|
|
383
|
+
cdef Py_ssize_t deg = self._parent.degree()
|
|
384
|
+
if deg == 1:
|
|
385
|
+
return self._parent(self._x[0].nth_root(self._parent.characteristic()))
|
|
386
|
+
|
|
387
|
+
from sage.rings.function_field.function_field_rational import RationalFunctionField
|
|
388
|
+
if not isinstance(self.base_ring(), RationalFunctionField):
|
|
389
|
+
raise NotImplementedError("only implemented for simple extensions of function fields")
|
|
390
|
+
# compute a representation of the generator y of the field in terms of powers of y^p
|
|
391
|
+
cdef Py_ssize_t i
|
|
392
|
+
cdef list v = []
|
|
393
|
+
char = self._parent.characteristic()
|
|
394
|
+
cdef FunctionFieldElement_polymod yp = self._parent.gen() ** char
|
|
395
|
+
val = self._parent.one()._x
|
|
396
|
+
poly = self._parent.polynomial()
|
|
397
|
+
for i in range(deg):
|
|
398
|
+
v += val.padded_list(deg)
|
|
399
|
+
val = (val * yp._x) % poly
|
|
400
|
+
from sage.matrix.matrix_space import MatrixSpace
|
|
401
|
+
MS = MatrixSpace(self._parent._base, deg)
|
|
402
|
+
M = MS(v)
|
|
403
|
+
y = self._parent._base.polynomial_ring()(M.solve_left(MS.column_space()([0,1]+[0]*(deg-2))).list())
|
|
404
|
+
|
|
405
|
+
f = self._x(y).map_coefficients(lambda c: c.nth_root(char))
|
|
406
|
+
return self._parent(f)
|