Comment #2 on issue 3444 by [email protected]: Doc for partial fraction decomp needs expanding
http://code.google.com/p/sympy/issues/detail?id=3444

I think the parameter "full" determines which algorithm will be chosen for the partial fraction decomposition, as the code mentions that:
        if not full:
            partial = apart_undetermined_coeffs(P, Q)
        else:
            partial = apart_full_decomposition(P, Q)

Thus, by default, using the undetermined coefficients method. If you want to switch to another algorithm, I think it should be apart(y/(x+2)/(x+1), x, 1).

Should I need to put this addition to the documentation? Thanks.

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to