Re: What's DSolve's output when it cant find a solution ?
- To: mathgroup at smc.vnet.net
- Subject: [mg87202] Re: What's DSolve's output when it cant find a solution ?
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Fri, 4 Apr 2008 02:56:23 -0500 (EST)
- Organization: Uni Leipzig
- References: <ft2anu$paq$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi, you mean DSolve[] and *not* Dsolve and it returns unevaluated if it can't find a solution. Regards Jens zerodynamics at gmail.com wrote: > Im using Mathematica 6 to look for solutions to a system of nonlinear ODE's. I > don't > expect a solution, but the only output Im getting is an exact reprint > of my input. > This usually means that the arguments to the function are incorrect, > but Im > fairly certain they're OK. > > Here is my input: > > In[11]:= Dsolve[{s''[t] + Cot[u[t]/2]*s'[t]*u'[t] == 0, u''[t] - > Sin[u[t]]*s'[t]^2 == 0 }, {s[t], u[t]}, t] > Out[11]:= Dsolve[{s''[t] + Cot[u[t]/2]*s'[t]*u'[t] == 0, u''[t] - > Sin[u[t]]*s'[t]^2 == 0 }, {s[t], u[t]}, t] > > Is this what I should expect when DSolve can't find a solution ? Also, > this is returned immediately > without any "Running ... ". > > Thanks, > Dennis >