2024-05-14 01:17:45 +0100 | received badge | ● Famous Question (source) |
2023-11-07 16:07:03 +0100 | received badge | ● Notable Question (source) |
2022-11-04 12:36:12 +0100 | received badge | ● Famous Question (source) |
2022-06-12 12:41:59 +0100 | received badge | ● Famous Question (source) |
2022-05-19 18:11:24 +0100 | received badge | ● Popular Question (source) |
2021-11-01 16:39:43 +0100 | received badge | ● Notable Question (source) |
2020-06-01 14:38:08 +0100 | received badge | ● Notable Question (source) |
2020-06-01 14:38:08 +0100 | received badge | ● Popular Question (source) |
2020-06-01 02:27:09 +0100 | received badge | ● Famous Question (source) |
2020-03-25 13:47:42 +0100 | received badge | ● Notable Question (source) |
2019-06-07 11:10:23 +0100 | received badge | ● Notable Question (source) |
2019-02-07 15:34:48 +0100 | received badge | ● Popular Question (source) |
2018-12-13 07:47:32 +0100 | received badge | ● Taxonomist |
2018-11-13 20:18:45 +0100 | received badge | ● Popular Question (source) |
2018-03-01 11:43:27 +0100 | commented answer | Normal base of a finite extersion field Thanks, calling 'vector_space' on 'K' is the crucial point. BTW, I read the documents in "sage/rings/finite_rings/finite_field_constructor.py" and many others up and down looking for all occurrences of 'def ' (restricted to these since I was looking for a method definition) but did not find something related to my question. Now I did it a second time and see 'V = k.vector_space()' is an example comment in "sage/rings/finite_rings/finite_field_ntl_gf2e.py" (probably, also in some other files). My failure was to ignore comments. |
2018-02-27 16:04:13 +0100 | asked a question | Normal base of a finite extersion field Hi all, any finite extension (say degree n) of a field K may be considered as vector space over K. In particular, the roots of any irreducible polynomial f of degree n over a finite field K constitute a basis of this vector space. Does SageMath provide a routine to construct the vector space for given K and f? Such a vector space seems to be used internally when constructing Kn=GF(K.order()^n,'a',modulus=f). If so then the question becomes: Is this vector space open to the public? And how can I use it? Thanks in advance Wolfgang Jansen |
2017-07-12 16:07:21 +0100 | received badge | ● Popular Question (source) |
2017-05-11 10:40:48 +0100 | commented answer | Where is the source code ? I used the installation procedure according to "http://www.sagemath.org/download-linux.html", entry "Ubuntu PPA" (only the last of the three commands is relevant to find out what had been installed). The link points to version 7.6, but when I installed version 7.5.1 it was the same procedure. Well, I can try to upgrade to version 7.6 to see what happens. Addendum 1: I did without success: "sagemath-upstream-binary" still provides version 7.5.1. Addendum 2: Now, I installed version 7.6 from a tar.bz2 archive according to entry "Usage" in the link given above (i.e. no upgrade): the missing sources are there, hurrah! If the stripping down is really necessary to generate the PPA it may be wise to add a comment in entry "Ubuntu PPA". |
2017-05-11 10:32:58 +0100 | commented question | Where is the source code ? That's so in your case, not in mine. |
2017-05-10 17:14:43 +0100 | commented answer | Where is the source code ? My installation contains only one subdirectory of .../sage/src, namely doc. So it may be an installation issue. What can I do to install more subdirectories? I installed the compiled SageMath, not from source code. BTW, I searched the installation directory for file names having two asterisks: "polynomial_zmodasterisk.pyasterisk" including the "pyx" files. Unfortunately, both asterisks were deleted in the formatted question you see (and, my failure, I did not look at it). |
2017-05-10 14:54:08 +0100 | asked a question | Where is the source code ? Hello all, I am using SageMath-7.5.1 on a Linux platform. Sometimes I am interested in the source code for studying implementation details. When asking for documentation or source code, e.g. R.<x>=GF(61)[] ; p=x^3 + x^2 + 59*x + 60 ; p? then the documentation may contain a line like: ~/.sage/temp/WJ1/6067/spyx/sage/rings/polynomial/polynomial_zmod/sage/rings/polynomial/polynomial_zmod_flint.pyx But directory "~/.sage/temp/WJ1/6067" is empty! Neither does the SageMath installation directory "/usr/lib/sagemath" (recursively searched) contain a file "polynomial_zmod.py". So, where is the source code? Thanks in advance |
2017-02-15 19:43:41 +0100 | commented answer | Restricted usability of Singular after upgrade I would like to "accept", but I do not know how to do (I do not see a button or the like named "accept"). |
2017-02-15 13:36:28 +0100 | commented answer | Restricted usability of Singular after upgrade It is a Singular problem since I misused Singular for its availability to handle sparse polynomials (FLINT, NTL don't). The polynomial ring is created for a given prime number 'p' by PolynomialRing(GF(p),1,'x') The second argument '1' forces SageMath to switch to Singular. I cannot tell you the output of 'type(f)' since 'f' is not generated at all. For a polynomial of smaller degree the output is <type 'sage.rings.polynomial.multi_polynomial_libsingular.mpolynomial_libsingular'=""> The "bug" is not a bug, it is a restriction implemented in Singular's official release. Unfortunately, Singular does not publish its restrictions (at least, I did not found one when reading its home page forth an back), so it appeared as a bug. |
2017-02-08 19:10:39 +0100 | commented answer | Restricted usability of Singular after upgrade On the one hand, 16-bit exponents seem to be intentional, i.e. intended by Singular. On the other hand, there is at least one Singular version that supports larger exponents. I do not understand who this version implemented (released as Singular version or implementation within SageMath only). Anyway, the version with larger exponents is not in the recent SageMath release. |
2017-02-08 12:46:46 +0100 | answered a question | Restricted usability of Singular after upgrade Meanwhile I made more experiments. The smallest polynomial degree forcing the error is 2^16. So I expect that the currently installed Singular version uses unsigned 16-bit words for exponents (and that the previous version had a larger representation, there I generated polynomials up to a degree of 27 bits then my computer was at the edge of its memory). I had also a look on Singular's home page but I did not find any hint on technical restrictions or on internal data representation. As workaround, I will try to re-install SageMath-7.3 from the Git repository. I hope the repository contains besides SageMath's core also the then actual external libraries. Addendum (15-02-2017) : It is a Singular problem since I misused Singular for its ability to handle sparse polynomials, also univariate ones (FLINT, NTL don't). The polynomial ring is created for a given prime number p by PolynomialRing(GF(p),1,"x"). The second argument 1 forces SageMath to switch to Singular. The "bug" is not a bug, it is a restriction (16 bit exponents) implemented in Singular's official release. Unfortunately, Singular does not publish its restrictions (at least, I did not found one when reading its home page forth an back), so the violated restriction appeared as a bug. What about adding a comment in SageMath's documentation of PolynomialRing? By contrast, version SageMath-7.3 included a modification of Singular where the restriction was set to 32 or 64 bit exponents, so the bug did not occur. |
2017-02-07 19:28:01 +0100 | asked a question | Restricted usability of Singular after upgrade Today I upgraded SageMath from 7.3 to 7.5.1, then I tried to continue yesterday's work: generating a sparse univariate polynomial using Singular, the polynomial has degree beyond that of toy polynomials. Yesterday, this worked fine, today I get the error message exponent overflow (117649) How can this happen? And what can I do to get the previous facilities of Singular (possibly, this means the previous facilities of SageMath)? Thanks in advance |
2016-07-17 16:07:10 +0100 | answered a question | What is the effect of declaring a polynomial `sparse'? I see that I misunderstood the words "generic" and "with_category" in type name "sage.rings.polynomial.polynomial_element_generic.PolynomialRing_field_with_category.element_class". I thought the type name means something like a common superclass to the various implementations ("generic") with a switch to the actual implementation ("with_category"). Now I see that the type name specifies a third implementation besides FLINT and NTL. I read documentation "Sage Reference Manual: Polynomials" forth and back but I did not find a hint on this meaning. Would it be possible to add a relating comment into this paper (and into the "Tutorial")? Moreover, it may be wise to add a comment into the online documentation of "PolynomialRing.__init__" stating that argument "implementation" is ignored if "sparse=True" and a third (not otherwise mentioned) implementation is used instead. Thanks for the hint to use multivariate polynomials instead of the univariate ones. Polynomials of a degree so big that they do not fit into memory when using a dense univariate implementation do not make problems anymore. But, of course, the multivariate implementation adds some computational overhead. For my polynomials when the dense univariate implementation is on its limits (degree about 10^7, density 1.2%), the computing times for polynomial generation (most time is spent for multiplication) are coarsely related as univariate_dense : multivariate : univariate_sparse = 1 : 500 : 1000. So switching to multivariate polynomials does not much help. In other words, the implementation of sparse univariate polynomials by a Python dictionary is not as bad as one might think. |
2016-07-17 00:24:44 +0100 | received badge | ● Good Question (source) |
2016-07-16 11:54:33 +0100 | received badge | ● Editor (source) |
2016-07-15 21:59:11 +0100 | received badge | ● Nice Question (source) |
2016-07-15 17:20:06 +0100 | asked a question | What is the effect of declaring a polynomial `sparse'? I do some work on polynomials over finite fields. Generated polynomials of larger degree are sparse in the sense that only a few coefficients are not zero. I tried to utilize this property by defining PR=PolynomialRing(GF(7),name='x',sparse=True). Then type(PR) is <class 'sage.rings.polynomial.polynomial_ring.polynomialring_field_with_category'=""> what is not very informative. It is not clear which library is involved (FLINT, NTL, Sage's own implementation, or something else), and libraries FLINT, NTL seem not to support sparse polynomials (sparse in the sense of storing only the non-zero coefficients similar to sparse matrices). So what does "sparse=True" mean? Is there a reduction of occupied memory? Anyway, time consumption for multiplication increases tremendously (I expected a major reduction). Thanks in advance. Function "make_pol" defined below generates for any target degree "deg" a polynomial over a finite field. Only about "deg^ex" coefficients are not zero where "ex" depends on the field's order and is in interval (1/2, 1), in particular "ex" is about 3/4 for field order 7. The reason for the sparsity is not yet understood. Multiplication of polynomials over GF(7) of degrees 100043 and 100361 (and 6144 coefficients each) generated this way takes 36 milliseconds for dense implementation but 29 seconds (without "milli"!) for sparse implementation (similarly for the function call, the function uses multiplications). If you are curious about the chosen degrees: these are Sophie Germain primes, they are of special interest since the generated polynomials are irreducible. Platform info: 64 bit, 3.3GHz, Linux, Sage 7.1 (Release Date: 2016-03-20) |
2016-04-13 10:14:24 +0100 | commented answer | Not understandable error when solving polynomial equation Thanks for the answer. I was not aware of calls like "some_polynomial.roots(Some_structure)". |
2016-04-13 09:59:35 +0100 | commented answer | Not understandable error when solving polynomial equation Thanks for the answer. Now, I understand the error's background. I was not aware of calls like "some_polynomial.roots(Some_structure)". This way, things become really simple, in particular, since the polynomials had originally been generated in QQ['x']. |
2016-04-11 13:14:27 +0100 | received badge | ● Student (source) |
2016-04-11 13:04:54 +0100 | asked a question | Not understandable error when solving polynomial equation Hi all, when I enter command I get the expected result, but when I enter command I get the error message What happened here? The error message is totally misleading (no index in the command!) and it is not to understand why the second command fails while the first works fine. By the way, the polynomial in question has ten simple real roots, so there should be no problem to compute the roots if symbolic evaluation is not possible. Thanks in advance Wolfgang |