[sympy] Re: Newbie :)

2019-11-12 Thread Amit Kumar
Hi Ashlesha, Please have a look at this for contributing to SymPy: https://github.com/sympy/sympy/wiki/Introduction-to-contributing - Amit On Monday, November 11, 2019 at 9:43:48 AM UTC, Ashlesha Kumar wrote: > > Hi, > > I am Ashlesha Kumar, undergraduate engineering student pursuing Computer

[sympy] Re: Newbie: display product

2019-07-09 Thread Chris Smith
This is a substitution. `subs` will replace symbols in an expression with different expressions. The syntax is `expr.subs(old, new)` or `expr.subs({oldi: newi})` or `expr.subs([(old1, new1), (old2, new2), ...])`. You can read about the different forms with `help(Expr.subs)`. >>> eqs =

[sympy] Re: Newbie: display product

2019-07-09 Thread Gagandeep Singh (B17CS021)
Is https://github.com/sympy/sympy/pull/17097 related to your doubt? If yes, then I would say wait for this to be merged. Moreover, have you tried, Eq(Mul(*[eq.lhs for eq in ()]), Mul(*[eq.rhs for eq in (https://groups.google.com/group/sympy. To view this discussion on the web visit

[sympy] Re: Newbie: display product

2019-07-09 Thread Gary Pajer
Yes. Simple question, for sure. I've tried a lot of things, none has worked yet. For example Enter code here...a, b, x, y = symbols('a b x y') ex1 = Eq(a, x + y) ex2 = Eq(b, x * y) a * b returns $ab$, and efforts to have that rendered as $(x+y)xy$ haven't worked. On Monday, July 8, 2019 at

Re: [sympy] Re: Newbie to open source

2018-09-12 Thread somit mittal
Yeah sure  Thank you Shekhar. On Wed, Sep 12, 2018, 19:55 Shekhar Prasad Rajak < shekharrajak.1...@gmail.com> wrote: > Hi, > > Go through this link: > https://github.com/sympy/sympy/wiki/Introduction-to-contributing and > clear your doubts in SymPy gitter channel. > > Regard, > Shekhar

[sympy] Re: Newbie to open source

2018-09-12 Thread Shekhar Prasad Rajak
Hi, Go through this link: https://github.com/sympy/sympy/wiki/Introduction-to-contributing and clear your doubts in SymPy gitter channel. Regard, Shekhar On Thursday, 30 August 2018 23:03:12 UTC+5:30, OpenSourcerer wrote: > > Hi I am a student at IIIT Gwalior and I am

[sympy] Re: Newbie to SymPy

2018-08-20 Thread Akshit Srivastava
Thanks! On Tuesday, 21 August 2018 03:28:59 UTC+5:30, Jashan wrote: > > You can have a look at "Easy To Fix" bugs here: > https://github.com/sympy/sympy/issues?q=is%3Aissue+is%3Aopen+label%3A > "Easy+to+Fix" > > On Tuesday, August 21, 2018 at 2:39:46 AM UTC+5:30, Akshit Srivastava > wrote: >>

[sympy] Re: Newbie to SymPy

2018-08-20 Thread Jashan
You can have a look at "Easy To Fix" bugs here: https://github.com/sympy/sympy/issues?q=is%3Aissue+is%3Aopen+label%3A"Easy+to+Fix; On Tuesday, August 21, 2018 at 2:39:46 AM UTC+5:30, Akshit Srivastava wrote: > > Hi, I am a BTech student at Indian Institute of Technology, Bombay. I am >

[sympy] Re: Newbie question

2012-03-13 Thread Southern.Cross
Great! I'll try this out. Thanks for the work around. Joe On Mar 13, 10:31 pm, Aaron Meurer asmeu...@gmail.com wrote: Unfortunately, this is a limitation in SymPy right now, which is that our trigonometric simplification is not very good. For now, you can use a work-around suggested in