[sage-support] How to set Initial conditions for desolve_laplace

2011-06-16 Thread Nin
Hi everybody, To become familiar with ODEs with Sage, I am trying to solve a very simple ODE with the Laplace method implemented in Sage In concrete, i want to solve dy(t)/dt = -k*y(t) with for example, initial conditions y(0)=1 For that: t = var('t') k = var('k') y = function('y',t)

[sage-support] [ANN] OpenOpt suite 0.34

2011-06-16 Thread dmitrey
Hi all, I'm glad to inform you about new quarterly release 0.34 of the OOSuite package software (OpenOpt, FuncDesigner, SpaceFuncs, DerApproximator) . Main changes: * Python 3 compatibility * Lots of improvements and speedup for interval calculations * Now interalg can obtain all solutions of

Re: [sage-support] How to set Initial conditions for desolve_laplace

2011-06-16 Thread David Joyner
On Thu, Jun 16, 2011 at 5:58 AM, Nin n...@neurohost.org wrote: Hi everybody, To become familiar with ODEs with Sage, I am trying to solve a very simple ODE with the Laplace method implemented in Sage In concrete, i want to solve dy(t)/dt = -k*y(t) with for example, initial conditions

Re: [sage-support] How to set Initial conditions for desolve_laplace

2011-06-16 Thread Nin
On 16/06/11 13:32, David Joyner wrote: On Thu, Jun 16, 2011 at 5:58 AM, Ninn...@neurohost.org wrote: Hi everybody, To become familiar with ODEs with Sage, I am trying to solve a very simple ODE with the Laplace method implemented in Sage In concrete, i want to solve dy(t)/dt = -k*y(t)

[sage-support] Re: Error: Converting from p-adics to rationals.

2011-06-16 Thread Mel
I do want to convert to an integer in this particular case...but integers are rationals, so I don't understand why I don't just get the integer 344 when I try the following code: sage: K=Qp(7,5) sage: Q=QQ sage: a=344 sage: b=K(a) sage: a=Q(b) -- To post to this group, send email to

[sage-support] Re: Error: Converting from p-adics to rationals.

2011-06-16 Thread Mel
Here is the code that can be pasted into sage to produce the error: sage: K=Qp(7,5) sage: Q=QQ sage: a=344 sage: b=K(a) sage: a=Q(b) -- 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

[sage-support] install R packages on OS X

2011-06-16 Thread Kirill Vankov
I was hoping that new release 4.7 will fix the problem, seeing that the ticket 5634 has been closed. However, I just tried to install a new package and got an error message: = Detected SAGE64 flag Building Sage on OS X in 64-bit mode

[sage-support] Re: install R packages on OS X

2011-06-16 Thread kcrisman
On Jun 16, 10:44 am, Kirill Vankov kirill.van...@gmail.com wrote: I was hoping that new release 4.7 will fix the problem, seeing that the ticket 5634 has been closed. However, I just tried to install a The errors reported there were of a different nature, primarily related to us long ago not

[sage-support] Re: gap packages and sage

2011-06-16 Thread Dima Pasechnik
Dear Enrique, I cc to sage-support, as it is an appropriate venue for such requests. On 16-Jun-2011, at 3:28 PM, Enrique Artal Bartolo wrote: Dear Dimitri, I am not sure if your are the good correspondant for this mail. I am a gap user and now I started to use sage. I appreciate a lot your

[sage-support] Re: Memleak when deleting elliptic curve over finite field ?

2011-06-16 Thread Jean-Pierre Flori
The following piece of code also seems to leak memory. The problem seems to occur while resolving the action of ZZ on E. sage: K = GF(155,'t') sage: a = K.random_element() sage: while 1: : E = EllipticCurve(j=a); P = E.random_point(); 2*P; On 16 juin, 02:51, Jean-Pierre Flori

[sage-support] Re: Error: Converting from p-adics to rationals.

2011-06-16 Thread Nils Bruin
On Jun 16, 7:22 am, Mel chemmyg...@gmail.com wrote: I do want to convert to an integer in this particular case...but integers are rationals, so I don't understand why I don't just get the integer 344 when I try the following code: If you are sure that the element can be represented as an

Re: [sage-support] Re: install R packages on OS X

2011-06-16 Thread amaseam
On 2011-06-16 kcrisman wrote: On Jun 16, 10:44 am, Kirill Vankov wrote: Detected SAGE64 flag Building Sage on OS X in 64-bit mode Does this happen every time you start Sage?  That is odd. About that, see trac tickets 10303, 11077, 9960: http://trac.sagemath.org/sage_trac/ticket/10303

[sage-support] Re: gap packages and sage

2011-06-16 Thread Simon King
Hi Dmitrii and Enrique, On 16 Jun., 17:17, Dima Pasechnik dimp...@gmail.com wrote: On 16-Jun-2011, at 3:28 PM, Enrique Artal Bartolo wrote: Dear Dimitri, I am not sure if your are the good correspondant for this mail. I am a gap user and now I started to use sage. I appreciate a lot

[sage-support] Re: Error: Converting from p-adics to rationals.

2011-06-16 Thread JamesHDavenport
As I said previously, you are only going to reconstruct RATIONALs with num,den less than sqrt((1/2)*p^k), i.e. 92 in this case. It is true that the integers are a subset of the rationals, but the convert to integer problem is not a sub-problem of the convert to rational problem. On Jun 16, 3:22