Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
convert/fullparfrac - convert a rational expression to full partial fraction form
Calling Sequence
convert(f, fullparfrac)
convert(f, fullparfrac, x)
convert(f, fullparfrac, methext)
convert(f, fullparfrac, x, methext)
convert(f, fullparfrac, ratflag)
convert(f, fullparfrac, x, ratflag)
convert(f, fullparfrac, methext, ratflag)
convert(f, fullparfrac, x, methext, ratflag)
Parameters
f
-
rational function in x
x
main variable name
methext
(optional); method (normal, sqrfree, or factor) or an extension
ratflag
(optional); flag that alters the form of the output
Description
Convert to fullparfrac performs a partial fraction decomposition of the rational function f in the variable x after completely factoring the denominator into linear factors over its splitting field.
If no x is provided, parfrac attempts to determine a suitable x, and proceeds if the operation is not ambiguous. For example, an expression that is a rational polynomial in both and requires that the variable be specified.
Optionally, the methext parameter can be one of 'normal', 'sqrfree', 'factor' (the default) or a field extension. In the first three cases, the associated function is applied to the denominator(s), and in the last case, factoring over that field extension is applied. The 'normal' and 'sqrfree' options are very efficient, although the answer often contains reducible RootOfs. Factoring eliminates this problem but at a high computational cost, and also at the cost of not always producing the simplest output form.
Optionally, the ratflag parameter is a boolean flag indicating if rational expressions in terms of the roots of the irreducible RootOfs should be rationalized to polynomial functions. By default, this rationalization is performed when the denominator of f contains only x. If additional unknowns are present in the denominator, then this rationalization is not performed.
The default can be overridden by using the environment variable . If set to true, rationalization is performed by default, and if set to false it will not. This is most useful when fullparfrac is being called from another routine over which you have no control (see the final example below).
Warning: If the coefficients of the function f contain parameters, then there will be values for those parameters for which the decomposition is erroneous, as a symbolic splitting field is valid only for generic values of the parameter. This is known as the specialization problem.
Examples
In the following example, 'x' and 'a' appear in the denominator, so x must be specified.
Not specifying x results in an error:
Error, (in `convert/fullparfrac`) the variable name (for conversion to partial fractions) must be provided
You can request rationalization via:
In the following example, 'x' is the only variable in the denominator, so rationalization is performed.
To disable rationalization, use the false option.
or
As a final example, you can control the behavior of fullparfrac when used in other functions.
See Also
convert, convert[parfrac]
Download Help Document