[sage-support] Re: jsmath in sage-4.1

2009-08-04 Thread Elizabeth Yip
John The pdf file at http://sites.google.com/site/mislwagro/Home/eg_jsmath.3.4.pdf?attredirects=0 is the output from sage-3.4 Thanks for the prompt response! Elizabeth On Aug 3, 10:12 pm, John H Palmieri jhpalmier...@gmail.com wrote: On Aug 3, 9:39 pm, Elizabeth Yip el...@comcast.net wrote:

[sage-support] Re: jsmath in sage-4.1

2009-08-04 Thread Minh Nguyen
Hi Elizabeth, On Tue, Aug 4, 2009 at 4:34 PM, Elizabeth Yipel...@comcast.net wrote: John The pdf file at http://sites.google.com/site/mislwagro/Home/eg_jsmath.3.4.pdf?attredirects=0 is the output from sage-3.4 I went to that URL and got a Site not found error. -- Regards Minh Van

[sage-support] Re: jsmath in sage-4.1

2009-08-04 Thread Elizabeth Yip
Sorry !! Let me try again !! http://sites.google.com/site/mislwagroup/Home/eg_jsmath.3.4.pdf?attredirects=0 Elizabeth On Aug 3, 11:37 pm, Minh Nguyen nguyenmi...@gmail.com wrote: Hi Elizabeth, On Tue, Aug 4, 2009 at 4:34 PM, Elizabeth Yipel...@comcast.net wrote: John The pdf file at

[sage-support] Re: Solving multivariate polynomial systems over GF(2)

2009-08-04 Thread Michael Brickenstein
Hi! I think the problem is quite hard using Gröbner bases, I also talked to Gregory Bard about the topic in Sage days 10. Nevertheless it is interesting. Did you convert the polynomial system to cnf using Martins converter. Does it also solve the bigger problem, you gave me? Can you please give

[sage-support] matrix term Orderings

2009-08-04 Thread Michael Brickenstein
Hi! How do I construct matrix orderings in Sage? I had a look at PolynomialRing and TermOrder and did not find anything. Michael --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[sage-support] Re: matrix term Orderings

2009-08-04 Thread Simon King
Hi Michael, On Aug 4, 9:54 am, Michael Brickenstein brickenst...@mfo.de wrote: Hi! How do I construct matrix orderings in Sage? I had a look at PolynomialRing and TermOrder and did not find anything. I think I remember being told that it is not wrapped in libSingular. This is one of the two

[sage-support] Re: error loading the sage libraries (setting up public Sage server) notebook directory outside of .sage don't work

2009-08-04 Thread Serge A. Salamanka
William Stein пишет: On Mon, Aug 3, 2009 at 9:26 AM, Serge A. Salamankasalsa-...@tut.by wrote: Dear support, I'm having a bit of a problem with setting up Sage public server with several pool accounts. Everything is done according to recommendations on

[sage-support] Re: matrix term Orderings

2009-08-04 Thread Martin Albrecht
On Tuesday 04 August 2009, Michael Brickenstein wrote: Hi! How do I construct matrix orderings in Sage? I had a look at PolynomialRing and TermOrder and did not find anything. Unfortunately: NotImplementedError. Cheers, Martin -- name: Martin Albrecht _pgp:

[sage-support] Re: accessing sage notebook with android phone

2009-08-04 Thread Dan Christensen
Pierre pierre.guil...@gmail.com writes: Say, you want to plot x -- x^2*sin(1/x) on your android phone, what do you do ? There's an android app called handycalc that can do basic things like this. There's also an rpn calculator, but I don't think it can do plots. There may be other apps that

[sage-support] Re: accessing sage notebook with android phone

2009-08-04 Thread Dan Christensen
Rado rki...@gmail.com writes: Iphone has the same problem that its onscreen keyboard has no tab key The android does allow you to enter a tab (via Alt-Q), but it just inserts a tab. Dan --~--~-~--~~~---~--~~ To post to this group, send email to

[sage-support] Re: error loading the sage libraries (setting up public Sage server) notebook directory outside of .sage don't work

2009-08-04 Thread William Stein
On Tue, Aug 4, 2009 at 2:42 AM, Serge A. Salamankasalsa-...@tut.by wrote: William Stein пишет: On Mon, Aug 3, 2009 at 9:26 AM, Serge A. Salamankasalsa-...@tut.by wrote: Dear support, I'm having a bit of a problem with setting up Sage public server with several pool accounts. Everything

[sage-support] Re: accessing sage notebook with android phone

2009-08-04 Thread William Stein
On Tue, Aug 4, 2009 at 6:54 AM, Dan Christensen j...@uwo.ca wrote: Rado rki...@gmail.com writes: Iphone has the same problem that its onscreen keyboard has no tab key The android does allow you to enter a tab (via Alt-Q), but it just inserts a tab. Dan I think the idea of adding a

[sage-support] floating point solve

2009-08-04 Thread Mikie
I need some help with a solve function that gives fp solutions to all types of equations. Possibly allowing an interval. I have tried def FPSolver2a(val1,val2,val3): var('val1,val2,val3') a2=SR(val1) q1=find_root(xy,p,q) return q1 I need to put it into a python script, so no