Ask Your Question

db's profile - activity

2021-06-10 19:42:10 +0200 received badge  Student (source)
2016-06-14 02:37:37 +0200 received badge  Taxonomist
2015-11-28 23:58:33 +0200 received badge  Famous Question (source)
2015-03-04 21:08:50 +0200 received badge  Notable Question (source)
2014-06-29 21:32:46 +0200 received badge  Notable Question (source)
2014-06-29 21:32:46 +0200 received badge  Popular Question (source)
2014-01-07 18:44:54 +0200 received badge  Popular Question (source)
2013-09-24 13:31:05 +0200 received badge  Supporter (source)
2013-09-23 13:44:27 +0200 commented question installation error experimental packages

sorry for the poor formatting, don't know what happened

2013-09-23 13:43:13 +0200 asked a question installation error experimental packages

I am trying to install a new experimental package from within sage (asymptote in this case) and get the following error message:

sage: sage.misc.package.install_package('asymptote-1.29') Attempting to download package asymptote-1.29

Checking online list of optional packages. [Traceback (most recent call last): File "", line 29, in File "/misc/ada2/visit/betea/Programs/sage-5.8/local/lib/python/urllib.py", line 244, in retrieve tfp = open(filename, 'wb') IOError: [Errno 20] Not a directory: '/dev/stdout' Error: failed to download http://www.sagemath.org/spkg/optional..., aborting

Any help?

2013-04-11 15:10:09 +0200 asked a question symmetric skew Macdonald polynomials

Is there a correct way to compute skew Macdonald polynomials in sage? The routine skew_by does not seem to give the right answer (far from it). Probably due to the fact that "zee" is not defined properly somewhere.

2013-02-05 10:27:47 +0200 asked a question polynomial evaluation

If I have a polynomial p in variables $x_0,...,x_n$, how do I specialize the algebra appropriately to substitute values for $x_i$'s? For example, how do I compute $p(1,1,...,1)$? Or replace $x_i$ by $q^i$ ($q$ a parameter) so to compute $p(1,q,...,q^n)$? In Mathematica, if the variables were x[[i]], one could do "./x[[i]] -> q^i //Simplify" and it is the equivalent of this replace and simplify that I am looking for.

This is coming from symmetric polynomials/functions theory and I know some of the specializations are built in, but at the end of the day I want to try small examples with different specializations than what is already built in.