0% found this document useful (0 votes)
44 views3 pages

Assignment 4 - Question Kutta Method

This document demonstrates the Runge-Kutta method for numerical integration through two examples. It shows the step size (h), initial x and y values, and the k coefficients calculated at each step to determine the next y value for successive iterations of the method.

Uploaded by

Afzal Bhatti
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views3 pages

Assignment 4 - Question Kutta Method

This document demonstrates the Runge-Kutta method for numerical integration through two examples. It shows the step size (h), initial x and y values, and the k coefficients calculated at each step to determine the next y value for successive iterations of the method.

Uploaded by

Afzal Bhatti
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
You are on page 1/ 3

Runge-Kutta Method

Assignment 4 Question

First Iteation
h x0 y0
0.5 0 1

k1 0
k2 0.125
k3 0.141113
k4 0.325535

y1 1.14296

Second Iteration
h x1 y1
0.5 0.5 1.14296

k1 0.32659
k2 0.639863
k3 0.80252
k4 1.892446

y2 1.993594
Example Page 199

h x0 y0
0.1 0 1

First Iteration
k1 0.1
k2 0.11
k3 0.1105
k4 0.12105

y1 1.110342

h x1 y1
0.1 0.1 1.110342

Second Iteration
k1 0.121034
k2 0.132086
k3 0.132638
k4 0.144298

y2 1.242805

h x2 y2
0.1 0.2 1.242805

Third Iteration
k1 0.144281
k2 0.156495
k3 0.157105
k4 0.169991

y3 1.399717

h x3 y3
0.1 0.3 1.399717
Fourth Iteration
k1 0.169972
k2 0.18347
k3 0.184145
k4 0.198386

y4 1.583648

You might also like