0% found this document useful (0 votes)
4 views1 page

Numerical Methods Question Sheet

The document presents a series of numerical solutions to differential equations using various methods including Euler's method, Modified Euler's method (Heun's method), and RK4. Each problem specifies the differential equation, initial condition, step size, and provides the final approximated value of y at a given x. The results demonstrate the application of these methods to different functions and initial conditions.

Uploaded by

harshpnalawade
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Numerical Methods Question Sheet

The document presents a series of numerical solutions to differential equations using various methods including Euler's method, Modified Euler's method (Heun's method), and RK4. Each problem specifies the differential equation, initial condition, step size, and provides the final approximated value of y at a given x. The results demonstrate the application of these methods to different functions and initial conditions.

Uploaded by

harshpnalawade
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

1. Using Euler's method with step size h = 0.1, solve dy/dx = x + y with y(0) = 1 at x = 0.1.

Final Answer: y(0.1) = 1.1

2. Using Euler's method with h = 0.2, approximate y(0.2) for dy/dx = y - x, y(0) = 2.
Final Answer: y(0.2) = 2.4

3. Apply Modified Euler's method (Heun's method) with h = 0.1 for dy/dx = xy and y(0)=1 at x = 0.1.
Final Answer: y(0.1) ≈ 1.005

4. Using Modified Euler's method with h = 0.2, solve dy/dx = x^2 + y^2, y(0)=0 at x = 0.2.
Final Answer: y(0.2) ≈ 0.008

5. Using RK4 with h = 0.1, solve dy/dx = x - y, y(0)=1 at x = 0.1.


Final Answer: y(0.1) ≈ 0.905

6. Apply RK4 with step size h = 0.2 for dy/dx = y, y(0) = 1 at x = 0.2.
Final Answer: y(0.2) ≈ 1.2214

7. Euler's method with h = 0.05: Solve dy/dx = 3y, y(0)=1 at x = 0.05.


Final Answer: y(0.05) = 1.15

8. Modified Euler method with h = 0.1: Solve dy/dx = x + y^2, y(0)=1 at x = 0.1.
Final Answer: y(0.1) ≈ 1.105

9. RK4 with h=0.1: Solve dy/dx = x*y, y(1)=2 at x = 1.1.


Final Answer: y(1.1) ≈ 2.221

10. RK4 with h = 0.2: Solve dy/dx = x^2 - y, y(0)=3 at x=0.2.


Final Answer: y(0.2) ≈ 2.561

You might also like