MAT2680 Differential Equations, FA2013
- OpenOpen
A basic introduction to ordinary (not partial) differential equations. While systems are discussed, the focus is on the solution and analysis of single equations and the physical processes from which they may have originated. While many of the most common solution techniques are covered, including numerical, the emphasis is on qualitative analysis and the use of technology.
Recent Posts
I am excited to teach our Sophomore-level ODE (Ordinary Differential Equations) course. When I […] See MoreWelcome!
Recent Comments
No Comments Found
Recent Discussions
Euler Equations; Regular Singular Points project !!!!
Here is an update of my project. See MoreEuler Equations; Regular Singular Points project !!!!
This is the final version, which includes a cleaned-up explanation and example in regards to Mesh analysis. Also attached is some rudimentary Maple code. Thanks for looking over this, it's been an enlightening project for us. Have a […] See MoreRLC Circuits Project
code for improved euler’s method in maple
improved euler's method f:= (t,y)->equation entered; t0:=initial t: y0:=initial y: n:=number of terms you want; h:=step size; t:=t0: y:=y0: for i from 1 to n do k1:=f(t,y): k2:=f(t+h,y+h*k1): y:=y+h*k: t:=t+h: print(t,y); od: See Morecode for improved euler’s method in maple
Recent Docs
No Recent Docs