| |
Solving Differential Equations with Mathematica's Solver
Assuming that you made no mistakes, (and it would be pretty hard to do so
given that all you had to do was type seven letters and hit [ENTER]), you should
have gotten an output from Mathematica that looked something like the
following:
?DSolve
DSolve[eqn,y,x] solves a differential equation for the function y, with independent variable x.
DSolve[{eqn1,eqn2,…},{y1,y1,…},x] solves a list of differential equations.
DSolve[eqn,y,{x1,x2,…}] solves a partial differential equation. >>
Notice that this description of DSolve tells us that there
are actually three ways that the command can be used:
"DSolve[eqn,y,x]" tells us how to solve a single differential
equation, whereas "DSolve[{eqn1,eqn2,…},{y1,y1,…},x]" is the command we'd use to solve a system of differential
equations. We haven't even done systems in class yet, so we'll stick to single
equations for a while. Finally, the last option, "DSolve[eqn,y,{x1,x2,…}]" is intended for use with partial differential equations, which is totally beyond the scope of this course, so we'll ignore this possibility entirely!
Anyway, let's get started on giving DSolve a work-out. We'll
see how it handles some basic first-order problems you might encounter on
a typical early exam in this course.
So, moving on...
 |
If you're lost, impatient, want an overview of this laboratory assignment, or
maybe even all three, you can click on the compass button on the left to
go to the table of contents for this laboratory assignment.
|
|
|