ReducedForm - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


PDEtools

  

ReducedForm

  

reduces one given PDE system with respect to another given PDE system

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ReducedForm(PDESYS_1, PDESYS_2, RedVars)

Parameters

PDESYS_1

-

a PDE or a set or list of them; it can include ODEs and non-differential equations

PDESYS_2

-

same as PDESYS_1

RedVars

-

optional - may be required; a function or a list of them indicating the (reducing) variables of the problem

checkconsistency

-

optional - check whether the two systems PDESYS_1 and PDESYS_2 are consistent between themselves before reducing PDESYS_1

Description

• 

ReducedForm receives two PDE systems, PDESYS_1 and PDESYS_2, in that order, and reduces PDESYS_1 with respect to PDESYS_2. In some sense, ReducedForm is the "differential equation" command equivalent to simplify/siderels. ReducedForm also works with anticommutative variables set using the Physics package using the approach explained in PerformOnAnticommutativeSystem.

• 

Generally speaking, that is equivalent to taking the highest derivative of each equation in PDESYS_2, isolating it and using the equation to replace occurrences of this highest derivative in PDESYS_1, and at the end simplifying the resulting system taking into account its integrability conditions. In more technical words, the output is the reduced form of PDESYS_1 modulo the radical differential ideal of PDESYS_2

• 

If RedVars is not specified, ReducedForm will consider all the differentiated unknown functions in PDESYS_2 as (reducing) variables of the problems.

• 

The reduction process performed by ReducedForm consists of the following steps

  

[-] Departing from PDESYS_1 = [eq1, eq2, ...], a new system PDESYS_tmp = [Y1 - eq1, Y1 - eq2, ..., Yn - eqn] is constructed introducing a set of auxiliary variables {Y1, ..., Yn}, where n is the number of equations in PDESYS_1.

  

[-] One new system of equations is now built with the equations in PDESYS_tmp and in PDESYS_2 and a differential elimination process is ran ranking the auxiliary variables Yn higher than the dependent (reducing) variables - say F1 ... Fk - of PDESYS_2. So this ranking is of the form [[Y1, ... Yn], [F1, ... Fk]] and hence the elimination process runs using lexicographical ordering when comparing any Yn with any Fk but with the less expensive total degree ordering when comparing the Yn between themselves and the Fk between themselves.

  

[-] From the output of the differential elimination process, only the equations containing the Yn are preserved, so substituting the auxiliary Yn by zero results in the desired reduction of PDESYS_1 with respect to PDESYS_2, with the maximum number of Fk removed from the problem.

• 

Note that it is possible to reduce one PDE system (PDESYS_1) using another one (PDESYS_2) in cases where the two systems are not consistent with each other, and that generally speaking the reduction obtained is useless in that its solution does not solve any of the two given systems. So you may want to request a check for consistency before proceeding with the reduction - for this purpose add the keyword checkconsistency anywhere in the calling sequence passed to ReducedForm - an example of this is at the end of the Examples section.

• 

To avoid having to remember the optional keywords, if you type the keyword misspelled, or just a portion of it, a matching against the correct keywords is performed, and when there is only one match, the input is automatically corrected.

Examples

To input PDE systems conveniently, avoiding redundant typing, and to display these systems compactly, without redundancies, use diff_table and declare

withPDEtools,ReducedForm,declare,diff_table,dsubs

ReducedForm,declare,diff_table,dsubs

(1)

Udiff_tableux,y,z,t:

declareux,y,z,t

ux,y,z,twill now be displayed asu

(2)

Consider now the PDE system

pde1Ux,y,z+Ut,y,z+Ut,x,zUt,t

pde1ux,y,z+ut,y,z+ut,x,zut,t

(3)

Reduce it using:

pde2Ux=0

pde2ux=0

(4)

ReducedFormpde1,pde2

ut,y,zut,twhere

(5)

In some cases, as this example above, the same result can be obtained using dsubs in a less expensive computational way.

dsubspde2,pde1

ut,y,zut,t

(6)

Note that the reduced forms returned by dsubs and ReducedForm do not include the reducing equation pde[2]. Consider the difference between these reductions and a casesplitting of the system conformed by both pde[1] and pde[2]: the output may be similar and may include pde[2] (or its differential consequences)

PDEtools:-casesplitpde1,pde2

ut,y,z=ut,t,ux=0where

(7)

A more involved example where, by construction, the reduced form is zero; use declare to display the equations compactly, without redundancies

declareu,vx,y

ux,ywill now be displayed asu

vx,ywill now be displayed asv

(8)

U,Vdiff_tableux,y,diff_tablevx,y:

PDESYS_2VUx,xVx,Ux,yVy,Vy,y21

PDESYS_2ux,xvvx,ux,yvy,vy,y21

(9)

Construct now PDESYS_1 as a (possibly nonlinear) combination of lists constructed using PDESYS_2, for instance the derivative with respect to x of the square of each equation in PDESYS_2 minus the derivative with respect to y of of the same equation

PDESYS_1diffmap`^`,PDESYS_2,2,xdiffPDESYS_2,y

PDESYS_1ux,x,yvux,xvy+vx,y+2ux,xvvxux,x,xv+ux,xvxvx,x,ux,y,yvyux,yvy,y+2ux,yvy2ux,x,y+2ux,y2vyvx,y,2vy,yvy,y,y+4vy,y21vy,yvx,y,y

(10)

By construction, thus, PDESYS_1 is completely reduced by PDESYS_2

ReducedFormPDESYS_1,PDESYS_2

0,0,0where

(11)

Consider two systems that are inconsistent with each other, that is: the solutions of one system can never be solutions of the other one, for example:

ode1diffyx,x,x=αβyxx22xdiffyx,xx2

ode1yx,x=αβyxx22xyxx2

(12)

ode2diffyx,x=hyxκρ

ode2yx=hyxκρ

(13)

You can directly test the consistency of two equations using casesplit

PDEtools:-casesplitode1,ode2

Warning: System is inconsistent

Nevertheless, if you substitute in ode[1] the value of y' from ode[2] you obtain an expression involving y(x)

dsubsode2,ode1

h2yxκρ2=yxβρx+αρx2hyx+2hκxρ

(14)

isolate,yx

yx=αρ2x+h2xκ2hκρβρ2x+h2x2hρ

(15)

Because the systems are inconsistent with each other, this value of y(x) solves neither ode[1] nor ode[2]:

odetest,ode1,ode2

hβ3hκρ4x4+αβ2hρ4x42β3κρ5x3+2β2h3κρ2x42αβ2ρ5x3+2αβh3ρ2x48β2h2κρ3x3+βh5κx48αβh2ρ3x3+αh5x4+8β2hκρ4x26βh4κρx3+8αβhρ4x26αh4ρx3+12βh3κρ2x2+12αh3ρ2x28βh2κρ3x8αh2ρ3x8βhκρ48αhρ4xβρ2x+h2x2hρ3,ρhβ2κρ2x2+αβρ2x2+βh2κx2+αh2x22βhκρx2αhρx2βκρ22αρ2βρ2x+h2x2hρ2

(16)

So calling ReducedForm you would obtain the reduction obtained above using dsubs, which is of no use generally speaking.

ReducedFormode1,ode2

ρ2yxβx+αρ2x+yxh2xh2xκ2ρyxh+2hκρρ2xwhere

(17)

isolateop1,1,,yx

yx=αρ2x+h2xκ2hκρβρ2x+h2x2hρ

(18)

The optional argument checkconsistency is of use in these situations, enforcing a check for consistency between the two systems, and when the systems are not consistent an error is returned

ReducedFormode1,ode2,checkconsistency

Error, (in PDEtools:-ReducedForm) the given systems of equations are inconsistent with each other

ReducedForm also works with anticommutative variables, using the approach explained in PerformOnAnticommutativeSystem.

withPhysics

`*`,`.`,Annihilation,AntiCommutator,Antisymmetrize,Assume,Bra,Bracket,Check,Christoffel,Coefficients,Commutator,CompactDisplay,Coordinates,Creation,D_,Dagger,Decompose,Define,Dγ,DiracConjugate,Einstein,EnergyMomentum,Expand,ExteriorDerivative,Factor,FeynmanDiagrams,FeynmanIntegral,Fundiff,Geodesics,GrassmannParity,Gtaylor,Intc,Inverse,Ket,KillingVectors,KroneckerDelta,LagrangeEquations,LeviCivita,Library,LieBracket,LieDerivative,Normal,NumericalRelativity,Parameters,PerformOnAnticommutativeSystem,Projector,Psigma,Redefine,Ricci,Riemann,Setup,Simplify,SortProducts,SpaceTimeVector,StandardModel,Substitute,SubstituteTensor,SubstituteTensorIndices,SumOverRepeatedIndices,Symmetrize,TensorArray,Tetrads,ThreePlusOne,ToContravariant,ToCovariant,ToFieldComponents,ToSuperfields,Trace,TransformCoordinates,Vectors,Weyl,`^`,dAlembertian,d_,diff,g_,gamma_

(19)

Set first θ and Q as suffixes for variables of type/anticommutative (see Setup)

Setupanticommutativepre=Q,θ

* Partial match of 'anticommutativepre' against keyword 'anticommutativeprefix'

_______________________________________________________

anticommutativeprefix=Q,θ

(20)

A PDE system example with one unknown anticommutative function Q of four variables, two commutative and two anticommutative; to avoid redundant typing in the input that follows and redundant display of information on the screen, use PDEtools:-declare, and PDEtools:-diff_table, that also handles anticommutative variables by automatically using Physics:-diff when Physics is loaded

PDEtools:-declareQx,y,θ1,θ2

Qx,y,θ1,θ2will now be displayed asQ

(21)

qPDEtools:-diff_tableQx,y,θ1,θ2:

Now we can enter derivatives directly as the function's name indexed by the differentiation variables and see the display the same way; two PDEs

pde1qx,y,θ1+qx,y,θ2qy,θ1,θ2=0

pde1Qx,y,θ1+Qx,y,θ2Qy,θ1,θ2=0

(22)

pde2qθ1=0

pde2Qθ1=0

(23)

By inspection, it is clear that pde[1] is reducible by pde[2]

ReducedFormpde1,pde2

Qx,y,θ2where

(24)

One way of solving this PDE system is then to start solving this reduced equation

pdsolve

Q=f__9x,y_λ1+f__10x,yθ1+f__6x+f__5yθ2+f__8x+f__7y_λ2θ1θ2

(25)

Substituting this result for Q back into pde[2], then multiplying by θ1 and subtracting from the above gives the PDE system solution, that in this case can also be obtained passing the whole system directly to pdsolve.

See Also

casesplit

declare

diff_table

DifferentialAlgebra

DifferentialAlgebra[ReducedForm]

dsubs

PDEtools

PerformOnAnticommutativeSystem

Physics

Setup