Student[Basics]
PartialFractionSteps
generate steps in factoring polynomials
Calling Sequence
Parameters
Description
Examples
Compatibility
PartialFractionSteps( expr, variable )
expr
-
string or expression
variable
(optional) variable to collect the terms by
implicitmultiply
(optional) truefalse
output = ...
(optional) option to control the return value
displaystyle = ...
(optional) option to control the layout of the steps
The PartialFractionSteps command accepts a polynomial and displays the steps required to perform a partial fraction decomposition.
If no variable is given, then a variable is chosen by calling indets. When the expression is multivariate, the first indeterminate is used.
If expr is a string, then it is parsed into an expression using InertForm:-Parse so that no automatic simplifications are applied, and thus no steps are missed.
The implicitmultiply option is only relevant when expr is a string. This option is passed directly on to the InertForm:-Parse command and will cause things like 2x to be interpreted as 2*x, but also, xyz to be interpreted as x*y*z.
The output and displaystyle options are described in Student:-Basics:-OutputStepsRecord. The return value is controlled by the output option.
This function is part of the Student:-Basics package.
with⁡Student:-Basics:
PartialFractionSteps⁡−4⁢xx+3⁢x+2
−4⁢xx+3⁢x+2•First, factor the numerator and denominator. If we can simplify by dividing terms, we do so.−4⁢xx+3⁢x+2•Use the factors to write an equation for the partial fraction decomposition−4⁢xx+3⁢x+2=Ax+2+Bx+3•Multiply by the LHS's denominator.−4⁢x=Ax+2+Bx+3⁢x+3⁢x+2•Expand everything out.−4⁢x=A⁢x+B⁢x+3⁢A+2⁢B•Equate the coefficients to create equations0=3⁢A+2⁢B,−4=A+B•Solve the equations.A=8,B=−12•Use these values in the partial fraction decomposition and simplify. The final partial fraction decomposition is8x+2−12x+3
The Student[Basics][PartialFractionSteps] command was introduced in Maple 2024.
For more information on Maple 2024 changes, see Updates in Maple 2024.
See Also
Student:-Basics
Student:-Basics:-ExpandSteps
Student:-Basics:-LinearSolveSteps
Student:-Calculus1:-ShowSolution
Student:-Calculus1:-ShowSteps
Download Help Document