If solve returns [] or raises NotImplementedError, it doesn't mean that the equation has no solutions. It just means that it couldn't find any. Often this means that the solutions cannot be represented symbolically. For example, the equation x = cos(x) has a solution, but it cannot be represented symbolically using standard functions.
>>> solve(x - cos(x), x)
Traceback (most recent call last):
...
NotImplementedError: multiple generators [x, exp(I*x)]
No algorithms are implemented to solve equation exp(I*x)
Also, it can sometimes be more useful to have a numeric solution than a solution represented in symbolic form.
--
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 sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/33ca1963-260c-499c-a244-b38da6a4ae1a%40googlegroups.com.
> Also, it can sometimes be more useful to have a numeric solution than a solution represented in symbolic form.And that's why we have libraries like scipy/numpy :)RegardsSudhanshu MishraOn Tue, Jan 6, 2015 at 4:20 AM, Luv Agarwal <luvagarw...@gmail.com> wrote:Also, it can sometimes be more useful to have a numeric solution than a solution represented in symbolic form.--
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 sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/33ca1963-260c-499c-a244-b38da6a4ae1a%40googlegroups.com.--
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 sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CAFW_KCR7c7uk89_MCxZ_3FN6tL1MkHZq7uQhfQab%3D5yURM6pag%40mail.gmail.com.
--
You received this message because you are subscribed to a topic in the Google Groups "sympy" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/sympy/SVN6EOBgFeQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CAKgW%3D6%2BkCGoCYd4vqqB6dB6a_D2o2To524LD2xHh8dQXbTP9dA%40mail.gmail.com.
In GSoC last year there was a project on improvising solvers. I wanted to know how much of that is implemented (the ideas page of this year is not updated yet) as I am interested in working on solvers.
Thanks for the response :-). I have a few questions as follows:
- In GSoC last year there was a project on improvising solvers. I wanted to know how much of that is implemented (the ideas page of this year is not updated yet) as I am interested in working on solvers.
- what are the other solvers that need to implemented in this year GSoC and some references to the algorithms that will be used in implementing those solvers.
- when will this ideas page be updated.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CAM7XJK4GR0THNaB70LhKZZ-dbyCsK9RMwKcc11H7neZ9m5P%3DbQ%40mail.gmail.com.
* There is a clear code level and interface level separation between solvers for equations in complex domain and equations in real domain.
--
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 sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CADN8iuqZhB2Qn7f0WGMP_1JRvfHxnFFsnjJBcvg7z%2Bb4DaMbKw%40mail.gmail.com.