Question

In: Advanced Math

Solve this differential equation using Matlab yy' + xy2 =x , with y(0)=5 for x=0 to...

Solve this differential equation using Matlab

yy' + xy2 =x , with y(0)=5 for x=0 to 2.5 with a step size 0.25

(a) Analytical

(b) Euler

(c) Heun

d) 4th order R-K method

Display all results on the same graph

Solutions

Expert Solution

MATLAB Code:

close all
clear
clc

dydx = @(x,y) (x - x*y^2)/y; % Given ODE, y'
h = 0.25; % Step size
xi = 0; xf = 2.5;
x = xi:h:xf;
n = (xf - xi)/h; % Number of nodes

% Part (a)
% Analytical solution
syms y_exact(x_exact)
eqn = y_exact*diff(y_exact, x_exact) + x_exact*y_exact^2 == x_exact; % ODE
cond = y_exact(0) == 5; % Initial condition
y_exact = dsolve(eqn, cond); % Solve for exact solution
x_vals = linspace(xi, xf); % Bunch of new samples for a smoother plot
plot(x_vals, subs(y_exact, x_vals)), hold on

% Part (b)
% Euler's Method
y_euler(1) = 5; % Initial condition
for i=1:n
m = dydx(x(i), y_euler(i));
y_euler(i+1) = y_euler(i) + h*m; % Euler's Update
end
plot(x, y_euler, 'o-')

% Part (c)
y_heun(1) = 5; % Initial condition
for i = 1:n
m1 = dydx(x(i), y_heun(i));
m2 = dydx(x(i) + h, y_heun(i) + h*m1);
y_heun(i+1) = y_heun(i) + 0.5*h*(m1 + m2); % Heun's Update
end
plot(x, y_heun, '*-')

% Part (d)
% RK4 Method
y_rk4(1) = 5; % Initial condition
for i = 1:n
k1 = dydx(x(i), y_rk4(i));
k2 = dydx(x(i) + 0.5*h, y_rk4(i) + 0.5*h*k1);
k3 = dydx(x(i) + 0.5*h, y_rk4(i) + 0.5*h*k2);
k4 = dydx(x(i) + h, y_rk4(i) + k3*h);
y_rk4(i + 1) = y_rk4(i) + (1/6)*(k1 + 2*k2 + 2*k3 + k4)*h; % RK4 Update
end
plot(x, y_rk4, 's-')

xlabel('x'), ylabel('y(x)'),
title('Solution of ODE')
legend('Exact Solution', 'Euler', 'Heun', 'RK4')

Plot:


Related Solutions

Consider the differential equation: y'(x)+3xy+y^2=0.     y(1)=0.    h=0.1 Solve the differential equation to determine y(1.3) using: a....
Consider the differential equation: y'(x)+3xy+y^2=0.     y(1)=0.    h=0.1 Solve the differential equation to determine y(1.3) using: a. Euler Method b. Second order Taylor series method c. Second order Runge Kutta method d. Fourth order Runge-Kutta method e. Heun’s predictor corrector method f. Midpoint method
Solve the differential equation y''(x)-2xy'(x)+2ny(x)=0 using the Hermite Polynomials
Solve the differential equation y''(x)-2xy'(x)+2ny(x)=0 using the Hermite Polynomials
Solve the differential equation 2x^2y"-x(x-1)y'-y = 0 using the Frobenius Method
Solve the differential equation 2x^2y"-x(x-1)y'-y = 0 using the Frobenius Method
Solve the following differential equation using the power series method. (1+x^2)y''-y'+y=0
Solve the following differential equation using the power series method. (1+x^2)y''-y'+y=0
Solve differential equation by using undetermined coefficient method y^''+9y=x^2e^x+6 , y(0)=1 and y^'(0)=1
Solve differential equation by using undetermined coefficient method y^''+9y=x^2e^x+6 , y(0)=1 and y^'(0)=1
Solve differential equation: y'+y=sin(x)
Solve differential equation: y'+y=sin(x)
Solve the differential equation 1. a) 2xy"+ y' + y = 0 b) (x-1)y'' + 3y...
Solve the differential equation 1. a) 2xy"+ y' + y = 0 b) (x-1)y'' + 3y = 0
Solve the following differential equation, using laplace transforms: y''+ty-y=0 where y(0)=0 and y'(0)=3
Solve the following differential equation, using laplace transforms: y''+ty-y=0 where y(0)=0 and y'(0)=3
Solve the differential equation. y'' − 8y' + 20y = te^t, y(0) = 0, y'(0) =...
Solve the differential equation. y'' − 8y' + 20y = te^t, y(0) = 0, y'(0) = 0 (Answer using fractions)
solve differential equation. y" + 9y = 18t^2 + 9t + 1 ; y(0) = 5/3...
solve differential equation. y" + 9y = 18t^2 + 9t + 1 ; y(0) = 5/3 ; y'(0) = 10
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT