Mathematica Differential Equation and Mathematica

AI Thread Summary
Mathematica can indeed numerically solve second-order differential equations using the NDSolve function. A user encountered difficulties with their specific equation, which involves a complex relationship between variables and initial conditions. After troubleshooting, they successfully implemented NDSolve for T values from 0 to 24 and stored the results in a variable named "soln." For graphing the numerical solutions, it is recommended to consult the Mathematica help browser for examples on using NDSolve and plotting solutions. Additionally, the discussion suggests that questions of this nature may be better suited for the Mathematica newsgroup available through Google Groups.
b2386
Messages
34
Reaction score
0
Hi all,

Does anyone know if Mathematica can numerically solve a second order differential equation?
 
Physics news on Phys.org
Sure can. Look up NDSolve.
 
Well, I have been trying to solve this equation with mathematica for the past two hours with no luck.

The general differential equation I am trying to solve is u''_i(T) = .65\frac{u'_{i-1}(T)-u'_{i}(T)}{u_{i-1}(T)-u_{i}(T)}+750(u_{i-1}(T)-u_{i}(T)-1)^3 where i= 1,2,3 and u'_0(T)=2\pi*Sin(2*\pi*T)

The initial conditions are u_i(0)=-i and u'_i(0)=0. I tried using NDSolve but it kept saying that the input was not a differential equation. Does anyone know what should be the syntax of the NDSolve function I need?
 
Last edited:
Well, I finally was able to get the NDSolve to work for this differential equation for T values from 0 to 24 and I set the NDSolve function to the variable "soln". So what function should I use to graph the numerical solutions?
 
b2386 said:
So what function should I use to graph the numerical solutions?
Look into the help browser of Mathematica (press F1) under NDSolve. There should be a list of examples (see 'Further examples'). From this you will also see how to plot the solution provided by NDSolve. See also http://documents.wolfram.com/mathematica/Built-inFunctions/NumericalComputation/EquationSolving/FurtherExamples/NDSolve.html .

Finally, I should point out, that this question really belongs in the Mathematica newsgroup, found through Google Groups.
 
Last edited by a moderator:

Similar threads

Replies
4
Views
2K
Replies
1
Views
2K
Replies
3
Views
2K
Replies
1
Views
3K
Replies
5
Views
3K
Back
Top