Skip to content

DSolve

DSolve(equation, f(var), var)

attempts to solve a linear differential equation for the function f(var) and variable var.

See:

Examples

>> DSolve({y'(x)==y(x)+2},y(x), x)
{{y(x)->-2+E^x*C(1)}}
>> DSolve({y'(x)==y(x)+2,y(0)==1},y(x), x)
{{y(x)->-2+3*E^x}}

Factor, FindRoot, NRoots,Solve

Implementation status

  • ☑ - partially implemented

Github