Re: [sage-support] Assumptions in Python Code

2011-05-17 Thread Michael Orlitzky
On 05/17/11 09:01, Michael Orlitzky wrote: > I'd like to add some simple assumptions, e.g. > > assume(x > 0) > assume(y > 0) > ... > > to the top of a Python file and have them used in all symbolic > calculations that follow. But, they don't seem to take hold like they do > from within the

[sage-support] Assumptions in Python Code

2011-05-17 Thread Michael Orlitzky
I'd like to add some simple assumptions, e.g. assume(x > 0) assume(y > 0) ... to the top of a Python file and have them used in all symbolic calculations that follow. But, they don't seem to take hold like they do from within the Sage prompt. Is there a way to make it do what I want? --