[sympy] GSOC 23

2023-02-26 Thread Samith Kavishke
Hi,I am Samith. Can some one check my pull request and give me some feedback, my pull request is #24814 this my first contribution to Sympy and I'm willing to do more contributions. I am hoping to apply for the GSOC 23 under Sympy. Thank you for your time. -- You received this message becaus

[sympy] Self introduction and contact

2023-02-26 Thread Jingze Dai
Hi everyone, My name is Jingze Dai, and I am a fourth-year computer science student at McMaster University, Canada. My proficiency includes python, Java, C++ and C. This is my first-time official participation in GSOC. I spent a lot of time learning programming languages, professional libr

[sympy] GSOC 23

2023-02-26 Thread Samith Kavishke
Hi everyone, I am Samith Kavishke, a second-year computer science and engineering undergraduate student from the University of Moratuwa, Sri Lanka. This is my first-time participation in GSOC, and I am excited to contribute to Sympy. I have participated in international mathematics Olympiads an

[sympy] Google Summer of Code

2023-02-26 Thread Aaron Meurer
SymPy is participating in Google Summer of Code again this year https://summerofcode.withgoogle.com/ Interested candidates should start with our ideas list, and discuss them with us here on the mailing list https://github.com/sympy/sympy/wiki/GSoC-Ideas. Also be aware that we have a requirement fo

[sympy] Regarding visiblity of Check for broken links in the documentation

2023-02-26 Thread Aman Kumar Shukla
I was working on this Issue whereby as one of the measures I fixed a lot of broken links issues from the documentation. After that, I thought it would be good if I could improve the visibility of broken links by adding a GitHub workflow action test

Re: [sympy] Integration of asymptotic function using Poly.integrate()

2023-02-26 Thread Suchit K
Thanks for clarifying. On Sun, 26 Feb 2023, 18:48 Oscar Benjamin, wrote: > On Sun, 26 Feb 2023 at 11:33, Suchit K > wrote: > > > > Why does Poly.integrate() function doesn't give correct answer for > asymptotic expressions like O(x**2)? > > Example: > > from sympy import * > > x = Symbol('x') >

Re: [sympy] Integration of asymptotic function using Poly.integrate()

2023-02-26 Thread Oscar Benjamin
On Sun, 26 Feb 2023 at 11:33, Suchit K wrote: > > Why does Poly.integrate() function doesn't give correct answer for asymptotic > expressions like O(x**2)? > Example: > from sympy import * > x = Symbol('x') > exp = Poly(O(x**4)) > print(exp.integrate()) #prints 1/2*O(x**4)**2 instead of O(x**5)

Re: [sympy] GSOC 2023

2023-02-26 Thread Mohit Kumar
Hello Suchit , please read GSOC guidelines. It will be very helpful On Sun, 26 Feb 2023, 17:04 Suchit K, wrote: > Hello everyone! I'm Suchit and I'm pursuing my second year in Mechanical > Engineering at National institute of technology, Karnataka. I like maths > and programming. I am familiar w

[sympy] GSOC 2023

2023-02-26 Thread Suchit K
Hello everyone! I'm Suchit and I'm pursuing my second year in Mechanical Engineering at National institute of technology, Karnataka. I like maths and programming. I am familiar with C, C++, Java, and Python. I have also explored Kotlin(not for app development) and Golang. I also like competitiv

[sympy] Interested in Contribution to Gsoc'23

2023-02-26 Thread sonali halder
Hello Everyone, I am Sonali Halder a second-year student from Chandigarh University. I am interested in participating in GSOC 2023 as a contributor from your organization. I have in-depth knowledge in python knowledge as I have been using python for various tasks whether related to academics

[sympy] Integration of asymptotic function using Poly.integrate()

2023-02-26 Thread Suchit K
Why does Poly.integrate() function doesn't give correct answer for asymptotic expressions like O(x**2)? Example: from sympy import * x = Symbol('x') exp = Poly(O(x**4)) print(exp.integrate()) #prints 1/2*O(x**4)**2 instead of O(x**5) -- You received this message because you are subscribed to the

[sympy] Re: factoring square roots

2023-02-26 Thread emanuel.c...@gmail.com
Dear list Le samedi 25 février 2023 à 08:43:57 UTC+1, atharv@gmail.com a écrit : I did notice another bug, which is that factor doesn't recognize float exponents (or rather, there are generally several issues with float exponents). (Python) floats are numerical approximations. Float expo