New Reply

Differential Equations Euler's method

 
Share Thread
Feb19-13, 11:04 PM   #1
 

Differential Equations Euler's method


Find the solution y = φ(t) of the given problem and evaluate φ(t) at t = 0.1, 0.2, 0.3,
and 0.4.

1.y'=3+t-y
y = φ(t)=t-2e^-t
y(1)= 0+(0-2e^0)*(.1)=.8
and the correct answer is 1.19516

2. y'=2y-1

What I'm getting stuck on is do I use the formula y(n)=y(n-1)+f(t(n-1),y(n-1)h because when I do I do not get the same answers as back of the book.

Thanks for the help!
PhysOrg.com science news on PhysOrg.com

>> City-life changes blackbird personalities, study shows
>> Origins of 'The Hoff' crab revealed (w/ Video)
>> Older males make better fathers: Mature male beetles work harder, care less about female infidelity
Feb20-13, 08:01 AM   #2
 
Recognitions:
Gold Membership Gold Member
Science Advisor Science Advisor
Retired Staff Staff Emeritus
Quote by andyk23 View Post
Find the solution y = φ(t) of the given problem and evaluate φ(t) at t = 0.1, 0.2, 0.3,
and 0.4.

1.y'=3+t-y
y = φ(t)=t-2e^-t
Where did you get this? With y= t- 2e^{-t}, y'= 1+ 2e^{-t} while 3+ t- y= 3+ t+ t- 2e^{-t}= 3+ 2t- 2e^{-t}. They are NOT the same. In any case, you cannot get a specific solution to this without some "initial condition".

y(1)= 0+(0-2e^0)*(.1)=.8
and the correct answer is 1.19516
2. y'=2y-1

What I'm getting stuck on is do I use the formula y(n)=y(n-1)+f(t(n-1),y(n-1)h because when I do I do not get the same answers as back of the book.
You are using Euler's method for this? Yes, Euler's method approximates y'= dy/dx by [itex]\Delta y/\Delta x= \Delta y/h[/itex] so your equation becomes [itex]\Delta y/h= f(t, y)[/itex] so that [itex]\Delta y= y_n- y_{n-1}= f(t, y)h[/itex] so that [itex]y_n= y_{n-1}+ f(t, y)h[/itex]. For this problem, f(t, y)= 2y- 1 so you just have [itex]y_n= y_{n-1}+ (2y_{n-1}-1)h[/itex]. What did you get?
(And, again, you cannot solve a first order differential equation for a specific value with an "initial condition". What are you using for t0 and y0?

Thanks for the help!
Feb20-13, 08:03 AM   #3
 
y(0)=1/2
New Reply

Similar discussions for: Differential Equations Euler's method
Thread Forum Replies
Solving a differential equation using Cauchy-Euler Method Calculus & Beyond Homework 5
Integrating Euler's equations for rigid body dynamics with Euler's Method Differential Equations 0
Differential equations, euler's method and bisection method Calculus & Beyond Homework 3
URGENT HELP! Initial Value Problem Question-Differential Equations and Euler's Method Calculus & Beyond Homework 0
Euler's Method for 4-D Differential Equation (Computing) Introductory Physics Homework 26