I would really appreciate it if someone could share the repository link so I can take some time to understand the codebase and contribute meaningfully to the project. On Thursday, September 4, 2025 at 10:30:05 PM UTC+5:30 [email protected] wrote:
> Hi Shubham, > > Three things. First, this the tutorial I recommend to start: > > https://docs.sympy.org/latest/tutorials/intro-tutorial/calculus.html > > It gets right to the point - and it enables you to do symbolic math - > including derivatives and integral calculus right at the beginning. > > x, y, z = symbols('x y z')init_printing(use_unicode=True) > > Derivatives > > To take derivatives, use the diff() > <https://docs.sympy.org/latest/modules/core.html#sympy.core.function.diff> > function. > > diff(cos(x), x)-sin(x)diff(exp(x**2), x) ⎛ 2⎞ ⎝x ⎠2⋅x⋅ℯ > > > > > I will be including this kind of information in some material I am writing > about Python and math. > > Also, I sent this link to my friend Tereuhas who is on LinkedIN > > She is doing a series of related introductory material > > https://www.linkedin.com/in/terezijasemenski/ > > https://www.linkedin.com/learning/instructors/terezija-semenski > > But that first Google tutorial - it's like immediate help. > > All the best, > > *-- Rich* > > *Richard Katz* > > *Data Engineers Architects * > > San Leandro/Castro Valley, CA: San Francisco Bay Area: > > [email protected] / [email protected] > https://www.linkedin.com/in/richardkatz/ > > *415 336-9559 <(415)%20336-9559> * > > > > > > > On Thu, Sep 4, 2025 at 9:36 AM Shubham Chhatbar <[email protected]> > wrote: > >> Hi, I’m Shubham >> I’m new to open-source and want to start contributing. >> I’d like to work on beginner-friendly issues in SymPy to get familiar >> with the codebase. >> Could someone please guide me to a good starting point or resources that >> can help me understand the contribution workflow? >> >> Thank you! >> >> -- >> You received this message because you are subscribed to the Google Groups >> "sympy" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion visit >> https://groups.google.com/d/msgid/sympy/d095352f-d64d-444c-9c72-be6544a232f7n%40googlegroups.com >> >> <https://groups.google.com/d/msgid/sympy/d095352f-d64d-444c-9c72-be6544a232f7n%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > > > -- > *Richard Katz* > [email protected] > (415) 336-9559 > https://www.linkedin.com/in/richardkatz/ > [email protected] > -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/sympy/05a3fc4c-6393-47c8-ae53-7c1781295138n%40googlegroups.com.
