Dawnbridge

TI-84 Plus CE field manual for IB Math

HL only · 33 of 41

33

Euler's method

HL only

Use a sequence table to iterate Euler's method for a first-order differential equation.

Goal

Use Euler's method for y=tanxy,  y(1)=1, with step size h=0.1, to approximate y(1.3).

1

Press and switch the graphing mode from FUNCTION to SEQ. Then press and set the sequence type to SEQ(n+1).

2

Use u ( ) for the x-values and v ( ) for the y-values. Set nMin=0, then enter u(n+1)=u(n)+0.1 and u(nMin)=1. For the y-recurrence, enter v(n+1)=v(n)+tan(u(n))0.1v(n) and v(nMin)=1. Build the fraction with (F1) → 1: n/d, typing 0.1v(n) in the numerator and √(tan(u(n))) in the denominator. Type n with and the square root with .

NORMALFLOATAUTOREALRADIANMP
Plot1Plot2Plot3
TYPE:SEQ(n)SEQ(n+1)SEQ(n+2)
nMin=0
\u(n+1)=u(n)+0.1
u(nMin)=1
\v(n+1)=v(n)+tan(u(n))0.1v(n)
v(nMin)=1
\w(n+1)=
w(nMin)=
\w(n)=
3

Open table setup with and set both Indpnt and Depend to Ask. This is essential here: in Auto mode the table fills consecutive rows from n=0, and by n=6 it reaches x=1.6, past 2π, where tanx<0 and tanx is non-real, so computing the next row throws a domain error. Ask mode lets you request only the row you need.

NORMALFLOATAUTOREALRADIANMP
TABLE SETUP
TblStart=0
ΔTbl=1
Indpnt:AutoAsk
Depend:AutoAsk
4

Clear out any old table rows: press (CATALOG), scroll down to ClrTable, and press twice to paste and run it. Leftover n values from earlier work are not recomputed when you switch to Ask, and can crash the table.

5

Press to open the table. Since 1.3 is three steps of size 0.1 from 1, type 3 in the n column and press . Move right to the v(n) column and press to calculate the y-value.

NORMALFLOATAUTOREALRADIANMP
PRESS + FOR ΔTbl
nuv31.31.22934
v(3)=1.229343
Result

y(1.3)1.23 (the table shows 1.229343).

Your turn

Work each one on your calculator, then check the answer.

  1. 1

    Use Euler's method with h=0.1 for y=tanxy,  y(1)=2, to approximate y(1.2).

  2. 2

    Use Euler's method with h=0.1 for y=ycosx,  y(1)=1, to approximate y(1.4).

  3. 3

    Use Euler's method with h=0.1 for y=1x2y,  y(0.6)=1, to approximate y(0.9).