Advanced Math
Maple 2019 includes numerous cutting-edge updates in a variety of branches of mathematics.
Differential Equations
The new command FindODE, in the DEtools package, tries to find a linear ordinary differential equation with polynomial coefficients for the given expression.
> |
), y(x))](AdvancedMath/AdvancedMath_1.gif) |
> |
, `*`(x, `*`(BesselI(2, x)))), y(x))](AdvancedMath/AdvancedMath_3.gif) |
int
Description
- There have been various improvements made to the int command for Maple 2019.
int Examples
> |
 |
> |
 |
> |
 |
> |
 |
> |
![`assuming`([int(abs(`+`(cos(`*`(`+`(p, `-`(1)), `*`(x))), `-`(cos(`*`(`+`(p, 1), `*`(x)))))), x = 0 .. Pi)], [`>`(p, 1)])](AdvancedMath/AdvancedMath_13.gif) |
> |
 |
> |
 |
- Improved answers for definite integrals when the AllSolutions option is given:
> |
 |
> |
 |
> |
 |
Integral Transforms
Description
- The inttrans package in Maple 2019 has had several transforms, specifically laplace, invlaplace, fourier and invfourier, extended to handle a larger class of problems, and in some cases already handled classes of problems faster. This has been accomplished via an integration by differentiation approach described in the following:
- A. Kempf, D.M. Jackson and A.H. Morales, "New Dirac delta function based methods with applications to perturbative expansions in quantum field theory", J. Phys. A:47, 2014
- D. Jia, E. Tang, and A. Kempf, "Integration by differentiation: new proofs, methods and examples", J. Phys. A:50, 2017
- One can view this approach, in simplest possible terms, as a product rule.
Fourier Examples
- Here are a few examples which failed to transform in prior versions of Maple, but now transform quite rapidly:
> |
 |
> |
](AdvancedMath/AdvancedMath_27.gif) |
> |
 |
> |
](AdvancedMath/AdvancedMath_31.gif) |
> |
 |
> |
](AdvancedMath/AdvancedMath_35.gif) |
> |
 |
> |
](AdvancedMath/AdvancedMath_39.gif) |
Multivariate Limits
The limit command in Maple 2019 has been enhanced for the case of limits of quotients of multivariate functions. See
Multivariate Limits
for details.
Real Roots of Polynomials
A new algorithm for univariate polynomials has been added to the RootFinding:-Isolate command. It is particularly efficient for ill-conditioned problems and high accuracy solutions, and it provides certified real root isolation for polynomials with irrational coefficients. See
Real Root Finding
for details.
Residue
The residue command has a new optional argument that allows the user to specify the maximal order of the underlying series computations.
simplify
Description
- The simplify command in Maple 2019 has undergone several improvements, especially with regard to expressions containing piecewise functions.
simplify Examples
- Simplification of expressions containing piecewise functions has been improved.
Equal, equivalent, or implied piecewise branches are now combined by simplify;
> |
 |
> |
 |
> |
 |
> |
![`assuming`([simplify(piecewise(`<`(m, 2), floor(`+`(`*`(`/`(1, 2), `*`(m)))), 0))], [m::posint])](AdvancedMath/AdvancedMath_47.gif) |
Piecewise conditions involving floor, ceil, round, frac, trunc can now be simplified:
> |
 |
Branch conditions other than equations, inequations, and inequalities are now taken into account while simplifying branch values:
> |
 |
> |
 |
Branch conditions are now simplified more effectively using basic boolean logic:
> |
 |
> |
 |
simplify now reorders piecewise conditions when appropriate:
> |
 |
Piecewise conditions are now better normalized;
> |
 |
Common terms and factors are now pulled out of piecewise branch values where possible:
> |
 |
> |
![simplify(piecewise(x = 0, `+`(`-`(`*`(4, `*`(Pi, `*`(_C8[_Z1, _Z2], `*`(`^`(BesselJ(_Z1, `*`(BesselJZeros(_Z1, _Z2), `*`(r))), 2), `*`(r))))))), `+`(`-`(`*`(2, `*`(Pi, `*`(_C8[_Z1, _Z2], `*`(`^`(Besse...](AdvancedMath/AdvancedMath_65.gif) |
- Nonpiecewise-related improvements made to simplify:
Improved simplification of
:
> |
![`assuming`([simplify(`/`(1, `*`(GAMMA(`+`(1, `-`(n))), `*`(GAMMA(n)))))], [n::integer])](AdvancedMath/AdvancedMath_68.gif) |
Trig functions are now expanded if it helps with simplification:
> |
 |
Simplification of expressions containing arctan has been improved:
> |
 |
Expressions containing csgn can now be more effectively simplified:
> |
 |
Conversion between powers, exponentials, trig functions, and radicals to achieve simplification has been improved:
> |
 |
> |
 |
> |
 |
> |
 |
Symbolic powers of integers are now combined more effectively:
> |
 |
simplify now rewrites expressions using a common integer base:
> |
 |
Radicals are now typically combined by simplify:
> |
 |
If appropriate conditions are satisfied, certain simplifications of floor, ceil, and round are applied:
> |
![`assuming`([simplify(`+`(floor(`+`(z, `/`(1, 2))), floor(z)))], [z::real])](AdvancedMath/AdvancedMath_90.gif) |
> |
![`assuming`([simplify(`+`(round(z), `-`(floor(`+`(`*`(2, `*`(z)))))))], [(`+`(z, `-`(`/`(1, 2))))::(And(real, Not(negint)))])](AdvancedMath/AdvancedMath_92.gif) |
now simplifies:
> |
![`assuming`([simplify(EllipticE(`^`(-1, n), x))], [n::integer])](AdvancedMath/AdvancedMath_95.gif) |
solve
Description
- The solve command in Maple 2019 has undergone several improvements.
solve Examples
Maple2019 solves equations with inequalities more carefully:
> |
 |
> |
 |
> |
![[solve(`<=`(sqrt(x), `+`(`-`(`*`(`^`(y, 2))))), {x, y})]; 1](AdvancedMath/AdvancedMath_101.gif) |
> |
 |
Other Improvements
Description
- There are other commands which have improved.
Other examples
minimize can now solve this example:
> |
 |
expand now takes into account more assumptions:
> |
 |
floor and ceil now make better use of assumptions:
> |
![`assuming`([floor(w)], [`>=`(w, 0), `<`(w, `/`(1, 2))])](AdvancedMath/AdvancedMath_109.gif) |
rationalize works better on certain examples of nested radicals:
> |
 |
Expressions with nested calls to Re and Im now evaluate better:
> |
 |