[sage-devel] Re: integration algorithms

2017-03-19 Thread parisse
My guess is that Mathematica added more special functions and integration methods using them mainly for advertising, not because some researchers needed them, otherwise some of them would probably work on this in an open-source CAS. About step by step, I cover some cases, for example http://www-

[sage-devel] Re: integration algorithms

2017-03-19 Thread saad khalid
I think it's not a relevant question to ask "when we'd want student to pull out their smartphone to do integrals." The fact is that students already Can do this, whether or not this should be integrated into the curriculum has nothing to do with what functionality Sage offers. Also, I'm more co

[sage-devel] Re: Name symbolic expressions

2017-03-19 Thread Aidan
Thank-you so much for the response. As you can imagine, everything made sense to me before posting, but I can kind of see the other side of the coin. It's nice to get feedback from someone who understands what they are talking about - unlike me. I already understood that the code was a shortcut,

[sage-devel] Rant about plotting documentation

2017-03-19 Thread Andrey Novoseltsev
I wanted to check how to make new threejs plotting code to use CDN. show? and plot? don't mention viewer options and their parameters. So, I go to the reference manual http://doc.sagemath.org/html/en/reference/ and close to the top I see 3D Graphics http://doc.sagemath.org/html/en/reference/plot3

[sage-devel] Re: Name symbolic expressions

2017-03-19 Thread Nils Bruin
On Sunday, March 19, 2017 at 12:54:34 AM UTC-7, Aidan wrote: > > > I wrote some code > I would > like to contribute, but I don't know the most appropriate place to put it. > > It works like this right now > > > sage: g(x,y)

Re: [sage-devel] Sage 7.5 for Windows?

2017-03-19 Thread Eric Gourgoulhon
Thank you all for your answers. I've replied accordingly to the user on ask.sagemath. Eric. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...

[sage-devel] Name symbolic expressions

2017-03-19 Thread Aidan
I wrote some code I would like to contribute, but I don't know the most appropriate place to put it. It works like this right now sage: g(x,y) = x + sin(y) (x, y) |--> x + sin(y) sage: g = name('g', g)