dsolve
Solve system of differential equations
Description
uses additional options specified by one or more S
= dsolve(___,Name=Value
)Name=Value
arguments.
Examples
Input Arguments
Output Arguments
Tips
If
dsolve
cannot find an explicit or implicit solution, then it issues a warning and returns the emptysym
. In this case, try to find a numeric solution using the MATLAB®ode23
orode45
function. Sometimes, the output is an equivalent lower-order differential equation or an integral.dsolve
does not always return complete solutions even ifIgnoreAnalyticConstraints
isfalse
.If
dsolve
returns a function that has different one-sided limits atx0
and you specify the conditiony(x0)
, thendsolve
treats the condition as a limit from the right, .
Algorithms
If you do not set IgnoreAnalyticConstraints
to false
,
then dsolve
applies some of these rules while solving the
equation:
log(a) + log(b) = log(a·b) for all values of a and b. In particular, the following equality is applied for all values of a, b, and c:
(a·b)c = ac·bc.
log(ab) = b·log(a) for all values of a and b. In particular, the following equality is applied for all values of a, b, and c:
(ab)c = ab·c.
If f and g are standard mathematical functions and f(g(x)) = x for all small positive numbers, f(g(x)) = x is assumed to be valid for all complex x. In particular:
log(ex) = x
asin(sin(x)) = x, acos(cos(x)) = x, atan(tan(x)) = x
asinh(sinh(x)) = x, acosh(cosh(x)) = x, atanh(tanh(x)) = x
Wk(x·ex) = x for all branch indices k of the Lambert W function.
The solver can multiply both sides of an equation by any expression except
0
.The solutions of polynomial equations must be complete.
Version History
Introduced before R2006aSee Also
functionalDerivative
| isolate
| linsolve
| ode23
| ode45
| odeToVectorField
| solve
| syms
| vpasolve