Application Center - Maplesoft

App Preview:

Classroom Tips and Techniques: Slider-Control of Parameters in an ODE

You can switch back to the summary page by clicking here.

Learn about Maple
Download Application




 

Classroom Tips and Techniques: Slider-Control of Parameters in an ODE

NULL

Robert J. Lopez

Emeritus Professor of Mathematics and Maple Fellow

Maplesoft

 

Introduction

``

After a recent webinar in which I interactively solved the initial-value problem (IVP)

 

((D@@2)(y))(t)+4*(D(y))(t)+13*y(t) = cos(2*t) 

y(0) = (D(y))(0) and (D(y))(0) = 0 

``

with the ODE Analyzer Assistant, I received an email asking how one could visualize the solution if one or two of the coefficients were parameters. If the coefficient of diff(y(x), x) were the parameter a, could a solution y(t, a) be graphed as a surface on which the specific solution y(t, `#mover(mi("a"),mo("ˆ"))`) were superimposed as a space curve whose projection onto the ty-plane would be the solution of the IVP with a = `#mover(mi("a"),mo("ˆ"))`. In particular, could the value of a be controlled by a slider.

 

If the coefficients of diff(y(x), x) and y were a and b respectively, could Maple simultaneously send a coordinate pair a, b to a solver which then graphed the solution of the IVP in which (a, b) = (`#mover(mi("a"),mo("ˆ"))`, `#mover(mi("b"),mo("ˆ"))`). In particular, could Maple reproduce the "2D slider" available in such software programs as Geometer's Sketchpad?

``

Below, both questions are answered in the affirmative.

``

One Parameter

NULL

The surface in Figure 1 is the solution y(t, a) of the IVP

 

diff(y(x), x, x)+a*(diff(y(x), x))+13*y(x) = cos(2*t) 

y(0) = (D(y))(0) and (D(y))(0) = 0 

``

The slider controls the value of the parameter a, and as it is moved to the value a = `#mover(mi("a"),mo("ˆ"))`, the solution y(t, `#mover(mi("a"),mo("ˆ"))`) is graphed on the surface as a space curve. The code by which this is accomplished can be seen by right-clicking on the slider and selecting "Edit Value Changed Action..." For this figure, the IVP is solved analytically for the function y(t, a), and as the slider varies the value of a, the space curve [t, `#mover(mi("a"),mo("ˆ"))`, y(t, `#mover(mi("a"),mo("ˆ"))`)] is appended to the graph of the surface.

NULL

``

a=  =

Figure 1   Slider-control of a

``

This answers the first question.

``

Two Parameters

``

The curve in Figure 2 is the solution of the IVP

 

((D@@2)(y))(t)+a*(D(y))(t)+b*y(t) = cos(2*t) 

y(0) = (D(y))(0) and (D(y))(0) = 0 

``

in which the values of the parameters a and b are controlled by separate sliders.

 

NULL

a= =

b= =

Figure 2   Slider control of a and b

NULL

The code behind each slider is the same, a technique that is naive at best. A more efficient strategy would be to write the code as one or more functions in a start-up code region, and then make appropriate function calls behind the sliders.

``

Compare Figure 2 with Table 32.1 in Gem 31, where the Explore command is used to generate the solution of this IVP, again with two separate sliders to control the parameters a and b.

``

Two Parameters with a 2D Slider

NULL

The graph on the left in Figure 3 shows a portion of the ab-plane and the curve b = (1/4)*a^2. The characteristic equation for the differential equation

 

diff(y(x), x, x)+a*(diff(y(x), x))+b*y(x) = 0 

``

is lambda^2+a*lambda+b = 0, with solutions lambda = (-a+`&+-`(sqrt(a^2-4*b)))*(1/2). Hence, points a, b on the curve b = (1/4)*a^2 correspond to systems that are critically damped; points in the red region (where b>a^(2)/4) correspond to systems that are underdamped; and points in the yellow region (where b < (1/4)*a^2) correspond to systems that are overdamped.

````

``

``

a=       b= 

``

Figure 3   Maple emulation of a 2D slider for controlling the parameters a and b

``

Click and drag on the left-hand graph to select parameter pairs a, b; the corresponding solutions of the IVP

 

((D@@2)(y))(t)+a*(D(y))(t)+b*y(t) = cos(2*t) 

y(0) = (D(y))(0) and (D(y))(0) = 0 

NULL

are drawn in the right-hand graph. (The default manipulator for the left-hand graph has been set to "Click and Drag". If, for any reason this default changes, use the Context Menu for the graph to re-select Manipulator/Click and Drag.)

``

NULL

 

Legal Notice: © Maplesoft, a division of Waterloo Maple Inc. 2013. Maplesoft and Maple are trademarks of Waterloo Maple Inc. This application may contain errors and Maplesoft is not liable for any damages resulting from the use of this material. This application is intended for non-commercial, non-profit use only. Contact Maplesoft for permission if you wish to use this application in for-profit activities.

 

NULL