Re: [sage-support] plot3d

2016-10-09 Thread William Stein
On Sun, Oct 9, 2016 at 12:45 PM, raman kurdi wrote: > Hi Sage, > I want to draw the function $y^2+z^2=x^3+ax+b$ by sage. Could you please > help me. > https://cloud.sagemath.com/projects/4a5f0542-5873-4eed-a85c-a18c706e8bcd/files/support/2016-10-09-175502-3d.sagews >

Re: [sage-support] plot3d

2016-10-09 Thread raman kurdi
i want to look at this surface and the find the intersection this surface with a line or a plane On Sun, Oct 9, 2016 at 4:22 PM, raman kurdi wrote: > I checked it without any result. > Can you be much much more specific? What exactly did you type in? What exactly did

Re: [sage-support] plot3d

2016-10-09 Thread David Joyner
On Sun, Oct 9, 2016 at 4:22 PM, raman kurdi wrote: > I checked it without any result. > Can you be much much more specific? What exactly did you type in? What exactly did you get as output? > On Sun, Oct 9, 2016 at 3:45 PM, raman kurdi >

Re: [sage-support] plot3d

2016-10-09 Thread David Joyner
On Sun, Oct 9, 2016 at 3:45 PM, raman kurdi wrote: > Hi Sage, > I want to draw the function $y^2+z^2=x^3+ax+b$ by sage. Could you please > help me. > Does this help? http://doc.sagemath.org/html/en/reference/plot3d/sage/plot/plot3d/implicit_plot3d.html > Raman > > --

[sage-support] plot3d

2016-10-09 Thread raman kurdi
Hi Sage, I want to draw the function $y^2+z^2=x^3+ax+b$ by sage. Could you please help me. Raman -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[sage-support] Re: Element vs UniqueRepresentation

2016-10-09 Thread Nils Bruin
On Saturday, October 8, 2016 at 12:12:30 PM UTC-7, Nils Bruin wrote: > > On Saturday, October 8, 2016 at 8:43:33 AM UTC-7, John H Palmieri wrote: >> >> >> What are all of the drawbacks? >> >> The ones I am aware of: > - the construction parameters need to be cached. That might have lifetime >

[sage-support] bug in hyperelliptic curve point counting

2016-10-09 Thread John Cremona
I have not before now used Sage to count points on hyperelliptic curves over finite fields, only elliptic curves. Am I doing something wrong or is this a bug? It certainly looks like a bug. sage: F=GF(23) sage: x=polygen(F) sage: C=HyperellipticCurve(x^8+1) sage: C.cardinality() ... ValueError:

[sage-support] Re: How do I make assume conclude basic consequences?

2016-10-09 Thread bernardparisse57
There is no advanced algorithm to do that in giac, but for simple examples like that it works: assume(a>1); assume(b>a); 2b>a; Le dimanche 9 octobre 2016 08:35:19 UTC+2, Ralf Stephan a écrit : > > > Maxima 5.37.2: > > (%i1) assume(a>1); > (%o1) [a > 1] > (%i2)

Re: [sage-coding-theory] Re: [sage-support] BCH Efficient Decoder

2016-10-09 Thread Dima Pasechnik
More specifically, look at http://doc.sagemath.org/html/en/developer/coding_in_other.html#libgap (I'd recommend using libGAP rather than GAP, as it is faster) On Sun, Oct 9, 2016 at 1:04 AM, David Joyner wrote: > > > On Saturday, October 8, 2016, Phedon Prasinos

[sage-support] Re: How do I make assume conclude basic consequences?

2016-10-09 Thread Ralf Stephan
On Saturday, October 8, 2016 at 12:14:23 PM UTC+2, Rob H. wrote: > > sage: var('A,B') > sage: assume(A>1) > sage: assume(B>A) > sage: bool(2*B>A) > False > Maxima 5.37.2: (%i1) assume(a>1); (%o1) [a > 1] (%i2) assume(b>a); (%o2) [b > a]