PDEtools[charstrip] - find the characteristic strip corresponding to a given first order partial differential equation
PDEtools[splitstrip] - divide the characteristic strip into uncoupled subsets
|
Calling Sequence
|
|
charstrip(PDE, f)
splitstrip(PDE, f)
|
|
Parameters
|
|
PDE
|
-
|
partial differential equation
|
f
|
-
|
indeterminate function
|
|
|
|
|
Description
|
|
•
|
These commands work only on first order PDEs, and return the given PDEs characteristic system depending on a parameter _s.
|
•
|
The splitstrip command returns the characteristic system divided into subsets, each one containing equations uncoupled with the ODEs of the other subsets. Depending on the PDE, this splitting of the characteristic system may strongly simplify its solving.
|
•
|
The Maple command usually used for solving coupled systems of ODEs (that is, the subsets returned by splitstrip) is dsolve. However, dsolve's strength is in solving single ODEs, not systems of ODEs. The PDEtools package, therefore, has an additional command for uncoupling systems of ODEs, which automatically sends the uncoupled ODEs obtained to dsolve, one at a time, to try solving the system sequentially. This often leads to the desired result (see ?dsolve,system).
|
•
|
Furthermore, it is possible to use the characteristic strip method for solving first order PDEs, by calling pdsolve with the option HINT = strip (see ?pdsolve).
|
•
|
This function is part of the PDEtools package, and so it can be used in the form charstrip(..) only after executing the command with(PDEtools). However, it can always be accessed through the long form of the command by using PDEtools[charstrip](..).
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
This system can now be solved using dsolve.
>
|
|
| (3) |
The system was solved by coupling the ODEs above and splitting the set into three subsets, which are mutually uncoupled.
>
|
|
| (4) |
This makes it possible to solve each ODE separately.
>
|
|
| (5) |
|
|
Download Help Document
Was this information helpful?