PartialFractionPackage RΒΆ
pfr.spad line 327 [edit on github]
The package PartialFractionPackage gives an easier to use interface to PartialFraction. The user gives a fraction of polynomials, and a variable and the package converts it to the proper datatype for the PartialFraction domain.
- partialFraction: (Fraction Polynomial R, Symbol) -> Any
partialFraction(rf, var)
returns the partial fraction decomposition of the rational functionrf
with respect to the variable var.
- partialFraction: (Polynomial R, Factored Polynomial R, Symbol) -> Any
partialFraction(num, facdenom, var)
returns the partial fraction decomposition of the rational function whose numerator isnum
and whose factored denominator isfacdenom
with respect to the variable var.