PartialFractionSteps - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


Student[Basics]

  

PartialFractionSteps

  

generate steps in factoring polynomials

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

PartialFractionSteps( expr, variable )

Parameters

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

Description

• 

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.

Examples

withStudent:-Basics:

PartialFractionSteps4xx+3x+2

4xx+3x+2First, factor the numerator and denominator. If we can simplify by dividing terms, we do so.4xx+3x+2Use the factors to write an equation for the partial fraction decomposition4xx+3x+2=Ax+2+Bx+3Multiply by the LHS's denominator.4x=Ax+2+Bx+3x+3x+2Expand everything out.4x=Ax+Bx+3A+2BEquate the coefficients to create equations0=3A+2B,−4=A+BSolve the equations.A=8,B=−12Use these values in the partial fraction decomposition and simplify. The final partial fraction decomposition is8x+212x+3

(1)

Compatibility

• 

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