You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sympy
I am a newbie to sympy and was trying to solve the problem mentioned in the issue https://github.com/sympy/sympy/issues/10072 . I need help to understand what algorithms does sympy follow to integrate different expressions. Thanks in advance !
Aaron Meurer
unread,
Nov 2, 2015, 3:15:04 PM11/2/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
There are several algorithms. The docstring of integrate (run
help(integrate)) outlines the important ones.
For this one, the simplest way forward is to extend manualintegrate to
recognize some special functions (Si in particular). Manual integrate,
as the name suggests, does integration similar to how you would do
things by hand, so it should be pretty straightforward to understand
how the algorithm works.