Example 4: Solve the differential equation from Example 3, that satisfies the initial conditions [Maple Math] .

> y:=unapply(%,x);

[Maple Math]

Recall, unapply makes the previous expression % , a function of [Maple Math] .

> solve({y(0)=1,D(y)(0)=3},{c[1],c[2]});

[Maple Math]

Note how we used the operator D(y) instead of diff(y(x),x) .

color=#000000>.