Wiki

Clone wiki

symja_android_library / Symbols / DSolve

DSolve

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

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}}

Related terms

Factor, FindRoot, NRoots, Roots, Solve

Updated