[sympy] Re: Poly expands the expression

2021-11-21 Thread Paul Royik
Thanks to all! On Sunday, November 21, 2021 at 6:35:06 PM UTC+2 Paul Royik wrote: > Just to print it. > > On Sunday, November 21, 2021 at 12:25:16 PM UTC+2 smi...@gmail.com wrote: > >> Internally, Poly will expand it. It would be possible to make a printer >> that prints the expression in

[sympy] How to parse f(x) as a Function?

2021-11-21 Thread Paul Royik
I want to parse something like `f(x) - 2 sin 3x`. If I use `parse_expr` without `implicit_multiplication_application`, then `f(x)` is parsed correctly, but not `2 sin 3x`. If I include `implicit_multiplication_application`, then `f(x)` is parsed as `fx`. Is this a bug? -- You received this

[sympy] Re: Poly expands the expression

2021-11-21 Thread Paul Royik
Just to print it. On Sunday, November 21, 2021 at 12:25:16 PM UTC+2 smi...@gmail.com wrote: > Internally, Poly will expand it. It would be possible to make a printer > that prints the expression in factored form, however. But why do you want > to do that? What is the goal/problem? > > /c > >

Re: [sympy] How to get started with contribution

2021-11-21 Thread mohit balwani
Hey Dhruv, Thanks for the interest. You can always go through Sympy's wiki on GitHub. Here is the page you might be looking for: https://github.com/sympy/sympy/wiki/Introduction-to-contributing Also do take a look at the issues which are labelled with "good first issue" and start from there.

[sympy] How to get started with contribution

2021-11-21 Thread dhruv soni
Hello all, I am Dhruv Soni and I'm new to open source contribution but i am well aware of python and c++. I would love to contribute to sympy, could someone please guide me how can i get started? -- You received this message because you are subscribed to the Google Groups "sympy" group. To

[sympy] How to get started with Contributions

2021-11-21 Thread Nikhil
Hello Everybody, My name is Nikhil, a computer science undergrad who's new to SymPy. I got to know about SymPy through GSoC and I'm new to open source contributions. I have intermediate knowledge in Python, as it my favorite programming language, which I've been using since the 2.5 years. I'm

[sympy] Re: Poly expands the expression

2021-11-21 Thread Chris Smith
Internally, Poly will expand it. It would be possible to make a printer that prints the expression in factored form, however. But why do you want to do that? What is the goal/problem? /c On Saturday, November 20, 2021 at 1:59:08 AM UTC-6 distan...@gmail.com wrote: > Poly((x-1)**2, x) returns