Mathematica 9 is now available

Documentation / Mathematica / Add-ons & Links / Standard Packages / Calculus /

Calculus`DSolveIntegrals`

Most nonlinear partial differential equations do not allow for general solutions. In these cases it is advisable to use the CompleteIntegral function that attempts to find a sufficiently representative family of particular solutions called a complete integral.

A complete integral of an equation is known to be exhaustive in the sense that solutions of almost all boundary value problems for the equation may then be expressed in quadratures of the complete integral. Thus, the complete integral plays a role similar to that of the Green's function for linear second-order partial differential equations.

Finding the complete integral of an equation.

This loads the package.

In[1]:= <<Calculus`DSolveIntegrals`

Here B[1] and B[2] are parameters of the solution.

In[2]:= CompleteIntegral[
Derivative[0, 1][u][x, y] == (u[x, y] +
x^2*Derivative[1, 0][u][x, y]^2)/y,
u[x,y], {x,y}]

Out[2]=

B[n] is the default name for the parameters appearing in the result of CompleteIntegral. The names of parameters may be selected using the option GeneratedParameters, just as the names of the undetermined constants in the result of DSolve may be selected using this option.

This shows how the names of parameters of the complete integral may be changed. The integral is Example 6.7 from KamkeII.

In[3]:= CompleteIntegral[-u[x, y] +
(2 + y)*Derivative[0, 1][u][x, y] +
x*Derivative[1, 0][u][x, y] +
3*Derivative[1, 0][u][x, y]^2 == 0,
u[x,y], {x,y}, GeneratedParameters -> F]

Out[3]=

Reference

[KamkeII] E. Kamke, Differentialgleichungen, Lösungsmethoden und Lösungen, Band 2, Partielle Differentialgleichungen Erster Ordnung fur Eine Gesuchte Funktion, Academische Verlagsgesellschaft, Leipzig, 1948.



Any questions about topics on this page? Click here to get an individual response.Buy NowMore Information
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.