I would like to know if it is possible with Sympy to solve simple equation of this kind not especially this one:
sol = solve(x**2)
but with conditions like for example :
- sol[0] < n (n is a real number )
- sol[0] != n
- m < sol[0] < n (m is a real number too)
And if i can put the same condition for
Product( k, (k, 1, 3) ).doit()
And other if it is possible.
Thanks.
Read documentation for hours and found nothing.
Look on stackoverflow and else where on the internet
And i am kind of not an expert so i found those and was not sure if it answer my question because i did not understand what they say:
Your question is too vague to answer well. Is it a univariate expression you are trying to solve? Do you expect a closed form solution? You can use
solvesetand give it the domain in which to search for a solution,I don't know what you want to try to do with the Product, but