how will maple response to non-unique solutions??

dsolve( {diff(x(t),t)=sqrt(x(t)), x(0)=0}, x(t));

use the theorem to test the ODE ,the solutions are unique

however maple gives me a unique solution?

 

 

use the theorem to test the

use the theorem to test the ODE ,the solutions are NOT unique

however maple gives me a unique solution?

Robert Israel's picture

dsolve and non-unique solutions

Basically, dsolve is set up for the "usual" situation where you have existence and uniqueness.  If you want to deal with one of these pathological situations, you must do some careful analysis.  Start with the general solution

> dsolve(diff(x(t),t) = sqrt(x(t)));

x(t)^(1/2)-1/2*t-_C1 = 0

Note that this does not include the singular solution x(t) = 0.  Maple's solution is  defined for t >= - 2 _C1, but can be continued as x(t) = 0 for t < -2 _C1.  In particular this gives solutions satisfying x(0)=0 for any _C1 <= 0.

 

i see so basically if i just

i see

so basically if i just ask it to solve with initial condition given
i wont know if the solution is unique or not

thanks

with Axiom

which is free, you can get the other one:

143_n3.png

So, you may want to check results.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}