IHA11672

5 Reputation

2 Badges

13 years, 55 days

MaplePrimes Activity


These are questions asked by IHA11672

Hello!

 

I'm currently trying to program Euler's Nummerical Method to solve a second order differential equation, that I've split into two parts: 

f1:=v:

f2:=-(0.006549/0.7038)*v-sin(x/1.03)*9.82

 

In an attempt to solve this equation by using Euler's in Maple, I typed in the following commands: 

 

EulerSystem:=proc (f1,f2,t0,x0,v0,h,n) local t,x,v,i,p;
t[0]:=0; x[0]:=x0; v[0]:=v0;

Page 1 of 1