Jeremy Monat
Jeremy Monat
#### References to other Issues or PRs #### Brief description of what is fixed or changed #### Other comments #### Release Notes * other * A new, user-friendly page on...
> `solveset` cannot solve a system of equations (more than one equation), correct? That's correct. The three arguments to solveset can be: 1. An expression, equation, inequality, or unequality. 2....
#### References to other Issues or PRs #### Brief description of what is fixed or changed Add guide page. #### Other comments #### Release Notes * other * A new,...
#### References to other Issues or PRs #### Brief description of what is fixed or changed Add a guide on solving a system of equations numerically #### Other comments ####...
#### References to other Issues or PRs #### Brief description of what is fixed or changed Add a solving guidance page applicable to many types of solving. #### Other comments...
Attempting to use `nsolve` on an inequality ```py >>> from sympy import nsolve, Symbol >>> x = Symbol('x') >>> nsolve(x < 0.5, x, 1) 1.00000000000000 ``` gives an unexpected result....
First-time posters to the [Google Group (mailing list)](https://groups.google.com/g/sympy) could get their questions about solving a math problem answered more effectively if they were given guidance. Perhaps the most common is...
The [inequalities solver page](https://docs.sympy.org/dev/modules/solvers/inequalities.html) is currently confusing to visitors because there is no indication of which solver to use for the general case. Suggest adding a paragraph at the top...
Hi, just wanted to let folks know that ChemPy was mentioned briefly in the [Talk Python to Me podcast about SymPy](https://talkpython.fm/episodes/show/364/symbolic-math-with-python-using-sympy), as one of the projects built on SymPy. The...
I am working on updating README.rst for the improved formula parsing https://github.com/bjodah/chempy/pull/205. A few questions regarding the updated parsing which no longer accepts malformed chemical formulas such as "Ch4"--ChemPy will...