2.3 Guess and Test
October 5, 1998
An example with real exponential solutions
Consider the equation
.
It has exponential solutions
for numbers
satisfying the associated quadratic equation
,
that is,
and
. Below is a phase portrait of the associated system
,
.
| > | with(DEtools): |
| > | phaseportrait([D(y)(t)=v(t),D(v)(t)=3*y(t)-2*v(t)],
[y(t),v(t)],t=0..0.7, [[y(0)=1,v(0)=-3],[y(0)=1,v(0)=1],[y(0)=-1,v(0)=3],[y(0)=-1,v(0)=-1]]); |
![[Plot]](mth3060203m9_images/mth3060203m9_9.gif)
Note that these particular solution curves are straight lines. They should be,
, after all. Clearly the other solution curves are more complicated.
An example without real exponential solutions
Consider the equation
.
It has exponential solutions
for numbers
satisfying the associated quadratic equation
,
that is,
and
. Below is a phase portrait of the associated system
,
.
| > | phaseportrait([D(y)(t)=v(t),D(v)(t)=-50*y(t)-2*v(t)],
[y(t),v(t)],t=0..2, [[y(0)=1,v(0)=0],[y(0)=-1,v(0)=0]], linecolor=[navy,green], stepsize=0.01); |
![[Plot]](mth3060203m9_images/mth3060203m9_19.gif)
| > | plot([exp(-t)*sin(7*t),diff(exp(-t)*sin(7*t),t)],t=0..4,
title="y in red, v in green"); |
![[Plot]](mth3060203m9_images/mth3060203m9_20.gif)