[sage-support] Re: integral

2010-09-18 Thread sps
On 17 Set, 23:03, Yann yannlaiglecha...@gmail.com wrote: If I try this, here is what I get: sage: var('a') a sage: integral(cos(2*x)/(x^2+a^2),x,-Infinity,+Infinity) ERROR: An unexpected error occurred while tokenizing input ... TypeError: Computation failed since Maxima requested

[sage-support] Differentiation inverse function. How it is correct?

2010-09-18 Thread alien308
x = var(x) d = function(d,x) diff(x, d) output: Traceback (click to the left of this block for traceback) ... TypeError: argument symb must be a symbol -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[sage-support] Re: Arbitrary precision in Cython NumPy?

2010-09-18 Thread KvS
Hi again, I hope you don't mind me bumping this thread one more time. I started experimenting with trying a few things for fast arbitrary precision computations using Cython. Above it was suggested to use MPFR directly, so without the RealNumber wrapper, as the fastest way. Here is a bit of code

[sage-support] Re: GUI Error.

2010-09-18 Thread alien308
http://localhost:8000 -- Works, thanks. -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL:

[sage-support] Re: integral

2010-09-18 Thread ma...@mendelu.cz
x does not need declaration, it is declared automatically Robert On 18 zář, 09:08, sps debernasave...@libero.it wrote: On 17 Set, 23:03, Yann yannlaiglecha...@gmail.com wrote: If I try this, here is what I get: sage: var('a') a sage:

Re: [sage-support] Re: Arbitrary precision in Cython NumPy?

2010-09-18 Thread Thierry Dumont
Le 18/09/2010 16:31, KvS a écrit : Hi again, I hope you don't mind me bumping this thread one more time. I started experimenting with trying a few things for fast arbitrary precision computations using Cython. Above it was suggested to use MPFR directly, so without the RealNumber wrapper, as

Re: [sage-support] Re: Is this a bug?

2010-09-18 Thread Robert Bradshaw
http://trac.sagemath.org/sage_trac/ticket/9945 needs review. On Fri, Sep 17, 2010 at 8:28 PM, Robert Bradshaw rober...@math.washington.edu wrote: Oops. I'll post a fix. On Fri, Sep 17, 2010 at 12:42 PM, kcrisman kcris...@gmail.com wrote: On Sep 17, 2:30 pm, Alex Lara lrodr...@gmail.com

[sage-support] Re: integral

2010-09-18 Thread kcrisman
On Sep 18, 12:52 pm, ma...@mendelu.cz ma...@mendelu.cz wrote: x does not need declaration, it is declared automatically Robert It's still good practice to do it, just in case x was defined in some other way earlier in the session :) - kcrisman -- To post to this group, send email to

Re: [sage-support] Re: integral

2010-09-18 Thread Mitesh Patel
On 09/18/2010 08:31 PM, kcrisman wrote: On Sep 18, 12:52 pm, ma...@mendelu.cz ma...@mendelu.cz wrote: x does not need declaration, it is declared automatically It's still good practice to do it, just in case x was defined in some other way earlier in the session :) Or with 'sage -c', where

[sage-support] Re: Differentiation inverse function. How it is correct?

2010-09-18 Thread kcrisman
On Sep 18, 6:20 am, alien308 alien3...@gmail.com wrote: x = var(x) d = function(d,x) diff(x, d) Did you intend to differentiate x with respect to d? The error message is totally unhelpful, though presumably this derivative doesn't make sense 'as is'. If you instead do sage: diff(d,x)

[sage-support] Re: Differentiation inverse function. How it is correct?

2010-09-18 Thread kcrisman
Actually, the subject of your email now makes a little more sense. But I don't think that one can define an inverse function quite this easily! That would indeed be *very* obscure notation! I don't know if we can define a symbolic inverse of this kind yet, or whether that would even be easy -

[sage-support] Re: Differentiation inverse function. How it is correct?

2010-09-18 Thread alien308
Thanks. -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org