Sergey B Kirpichev
Sergey B Kirpichev
Not worth it.
It seems, that the corresponding SymPy's issue sympy/sympy#7264 was closed. However, it was "fixed" by adding yet another heuristics to the "manual" integrator. @asmeurer, please correct me, but I think...
@suhr, I believe this was fixed by ac3c182e8f. In the version 0.14.0: ```python $ python -m diofant In [1]: var('x m E') Out[1]: (x, m, E) In [2]: integrate(sqrt(2*m*(E -...
@fredrik-johansson, probably this can be closed?
> This confuses just about everyone because it's different from markdown More important, probably, that this break [numpy docstring standard](https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt#docstring-standard). Using single backticks required to enclose variables, e.g. in Parameters...
Besides backticks vs dollar, using latex in docstring - probably a bad idea in general (except for optional sections like suggested by numpy standard, e.g. Notes).
> It is possible to render docstrings as html in the notebook. Unfortunately, it doesn't yet support LaTeX math. numpy docstring from example seems to be too ugly even without...
> I think we can remove the "needs decision" label. I think so. For reference, see #8134.
Now we have ugly answer: ``` In [8]: integrate(x/sqrt(x+y),x) Out[8]: _______ _______ _______ 7/2 3/2 ╱ y 5/2 5/2 ╱ y 3/2 7/2 ╱ y 2⋅x ⋅y ⋅ ╱ 1...