Solution of nonlinear ordinary differential equation of second order
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Can anyone let me hownto solve nonlinear ordinary differential equation mathematically, numerically and graphically using matlab. The differential equation is: y" = A (x^4) and y(0) = y(1) = 1
1 Kommentar
Dyuman Joshi
am 6 Nov. 2023
Do you mind showing how to solve a Differential equation graphically?
Also, did you search on this forum or on the internet for similar questions asked before?
Antworten (2)
Bhumi Desai
am 10 Nov. 2023
A = 1; % Assumed
syms y(x)
Dy = diff(y);
ode = diff(y,x, 2) == A*(x^4);
cond1 = y(0) == 1;
cond2 = y(1) == 1;
conds = [cond1 cond2];
ySol(x) = dsolve(ode,conds);
ySol = simplify(ySol)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Linear Algebra finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!