Index of New and Enhanced Packages - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : System : Information : Updates : Maple 16 : Index of New and Enhanced Packages

New and Enhanced Packages in Maple 16

Maple 16 contains the following new packages and enhancements to existing packages.

 

Physics

DifferentialGeometry

PDEtools

VectorCalculus

RegularChains

SolveTools[SemiAlgebraic]

Groebner[IsBasis]

Statistics

Student

Threads

Magma

ListTools

Physics

• 

The Physics package of Maple 16, including 17 new commands and new General Relativity functionality, brings with it the largest number of developments since its introduction in Maple 11, underscoring Maple's goal of having a state-of-the-art environment for algebraic computations in Physics.

  

For more information see what is new in Physics in Maple 16.

DifferentialGeometry

• 

DifferentialGeometry for Maple 16, with 28 new commands, contains important new functionality for working with abstractly defined differential forms, Lie algebras and general relativity.

  

For more information see what is new in DifferentialGeometry in Maple 16.

PDEtools

• 

For both Ordinary and Partial Differential Equations, a theme in Maple 16 is a thorough revision of the existing symmetry algorithms and their extension to automatically handle problems involving anticommutative variables. This extension includes the dsolve and pdsolve commands, all the commands of the PDEtools[Library] and many of the symmetry commands in PDEtools, making all this DE functionality naturally available for the first time for working on problems in Physics that involve anticommutative variables.

  

For more information see what is new in Differential Equations in Maple 16.

VectorCalculus

• 

The VectorCalculus[Hessian] command now takes a determinant option, which requests that the determinant of the Hessian matrix of the input function be returned, as well as the Hessian matrix itself.

with(VectorCalculus):

H, det := Hessian( cos(x*y), [x,y], determinant);

H,dety2cosxysinxyyxcosxysinxyyxcosxyx2cosxy,2cosxysinxyxysinxy2

(1)

RegularChains

• 

The new RegularChains package features not only in efficiency improvements and new algorithms, it also features new and existing commands computing over the reals and solving semi-algebraic systems.

• 

The variable order of a polynomial system may have a large impact on performance of triangular decomposition.  The new command SuggestVariableOrder provides an optimal order that can be used in any solvers of the RegularChains library.

• 

The new SquarefreeFactorization command computes the squarefree factorization of a polynomial modulo a regular chain.

with(RegularChains):

with(ChainTools):

R := PolynomialRing([x, y]):

p := (x+y)*(x+2*y)^2*(x+3*y)^3:

rc := Chain([y^2+1], Empty(R), R):

p := SparsePseudoRemainder(p, rc, R):

SquarefreeFactorization(p, x, rc, R);

x+y,1,x+2y,2,x+3y,3,rc

(2)
• 

The RealTriangularize command has two new options: method and relaxation. The method option specifies the decomposition algorithm to be used.  The relaxation option specifies if the new relaxation technique is used.  When relaxation=explicit is specified, the number of components in the output is usually reduced because non-strict constraints in inequalities are not allowed.

R := PolynomialRing([x, a, b]):

sys := [x^5*a+x*b-a = 0, x-b > 0]:

numelems(RealTriangularize(sys, R, output = list));

13

(3)

numelems(RealTriangularize(sys, R, output = list, relaxation = explicit));

7

(4)

numelems(RealTriangularize(sys, R, output = list, method = incremental));

13

(5)
• 

The new RealComprehensiveTriangularize command computes a comprehensive triangular decomposition over the reals of a parametric semi-algebraic system.

• 

The new LinearSolve command is a linear semi-algebraic system solver implementing a variant of the Fourier-Motzkins elimination algorithm.

with(SemiAlgebraicSetTools):

R := PolynomialRing([z, y, x]):

F := [z+y+x = 0, 0 <= x+y-z, x-y-z < 0]:

T := LinearSolve(F, R);

Tx<0&comma;xy&comma;z=xy

(6)
• 

The CylindricalAlgebraicDecompose command now takes a list of regular semi-algebraic systems as input.  In addition, its output option, which controls the output format, accepts cadcell and rootof. The Display command has been updated to handle these new output formats.

• 

The following commands in ConstructibleSetTools accept semi-algebraic systems as inputs: Complement, Difference, Intersection, IsContained, IsEmpty, Projection and RemoveRedundantComponents.

SolveTools[SemiAlgebraic]

• 

The SolveTools[SemiAlgebraic] command computes the solutions of a polynomial system consisting of a combination of equations, inequations and inequalities.

with(SolveTools):

SemiAlgebraic({x^2+x-1=0, x+y^2<0});

x=5212&comma;2+252<y&comma;y<2+252

(7)

Groebner[IsBasis]

• 

The Groebner[IsBasis] command provides a convenient way to determine if a basis is a Groebner basis for a given monomial ordering.

with(Groebner):

F:=[d^5-e^5, c^5-d^5, b^5-c^5, a^4*b+b^4*c+c^4*d+d^4*e+a*e^4,a^5-b^5]:

G:=Basis(F, tdeg(a,b,c,d,e)):

IsBasis(G, tdeg(a,b,c,d,e));

true

(8)

IsBasis(G, plex(a,b,c,d,e));

false

(9)

Statistics

• 

The Statistics package contains several enhancements, including new functionality for discrete distributions with noninteger values, custom discrete distributions, efficient maximum likelihood parameter estimation, better handling of Matrix data sets, variable-width histograms, and a new command ScatterPlot3D for lowess smoothing. See What's New, Statistics for more detailed descriptions of these changes.

Student

• 

Many commands in the Student subpackages are now accessible through command completion.

• 

The Student[Calculus1][VolumeOfRevolution] command has a new output option: region.  This new output option allows users to visualize the slice that is rotated to create the solid.  In addition, the new showregion option allows users to embed the slice in the solid.

with(Student):

with(Calculus1):

VolumeOfRevolution(x^2+1, x=0..3, output=region);

VolumeOfRevolution(x^2+1, x=0..3, output=plot, showregion=true);

• 

The default captions in plots generated by visualization routines can be disabled by setting caption option to an empty string.

VolumeOfRevolution(x^2+1, x=0..3, output=plot, caption="");

Threads

• 

The Add, Mul, Seq and Map routines from the Threads package have been updated to make them better at exploiting parallelism, especially when given a small number of inputs.  In addition, users can now specify the maximum number of elements to be executed in a single task.  This allows users to tune the execution of the routine to match the input.  For example, a small number of long running computations may benefit from a maximum task size of 1.  However a large number of very fast computations will benefit from a large task size.

Magma

• 

The Magma package includes several new commands: IsCrossedSet, IsSimple, IsDiassociative, IsPowerAssociative, IsQuasitrivial, IsomorphicCopy, and IsomorphismClassRepresentatives.

with( Magma ):

L := select(IsCrossedSet,Enumerate(3,quandle,output=list));

L111222333&comma;132321213

(10)

select( IsSimple, L );

132321213

(11)

ListTools

• 

The ListTools package contains the new command, Classify. This is an efficient way to group list elements according to a given property.

with(ListTools);

BinaryPlace&comma;BinarySearch&comma;Categorize&comma;Classify&comma;Collect&comma;Deal&comma;DotProduct&comma;Enumerate&comma;FindMaximalElement&comma;FindMinimalElement&comma;FindRepetitions&comma;Flatten&comma;FlattenOnce&comma;Group&comma;Interleave&comma;InversePermutation&comma;Join&comma;JoinSequence&comma;LengthSplit&comma;MakeUnique&comma;Occurrences&comma;Pad&comma;PartialSums&comma;Reverse&comma;Rotate&comma;Search&comma;SearchAll&comma;SelectFirst&comma;SelectLast&comma;Slice&comma;Sorted&comma;Split&comma;Transpose&comma;Unpermute

(12)

types := Classify(whattype, ["Hello", 1, 2., Pi, x, x+y, exp, "world!"]):

eval(types);

tablestring=Hello&comma;world!&comma;symbol=π&comma;x&comma;integer=1&comma;procedure=exp&comma;float=2.&comma;`+`=x+y

(13)

See Also

Index of New Maple 16 Features