Community Profile

photo

jamila nizamani


Active since 2014

Followers: 0   Following: 0

Message

Professional Interests: mathtoolbox

Statistics

Feeds

View by

Question


hi, i need your help, y''=xy, y(0)=0 and y(0)=1 this second order DE i can solve in power series method i got recurrence relation
I can already solve center moving series, but how I can solve 50 and 100 order power series with plot. This is my code: ...

9 years ago | 2 answers | 0

2

answers

Question


y''=xy, y(0)=0, y'(0)=1, (Airy equation) step size h=0.05 and interval is [-10,2], this is system of ode, i can already solve runge kutta method but also i need airy solution i can try but not make correct graph please help me...
y''=xy, y(0)=0, y'(0)=1, (Airy equation) step size h=0.05 and interval is [-10,2], this is system of ode, I can already solve ru...

9 years ago | 0 answers | 0

0

answers

Question


i can try The system of ODE's y''=xy, y(0)=0, y'(0)=1 solve in runge kutta method, h=0.05 and interval is [-10 2]
function [x, u]= RK4_sys12(f, tspan, u0, n) a=tspan(1); b=tspan(2); h=(b-a)/n; x=(a:h:b)'; u(1,:)=u0; for i...

9 years ago | 0 answers | 0

0

answers