SlideShare a Scribd company logo
Runge- Kutta Methods
Runge- Kutta Methods
• Runge–Kutta method is an effective and widely used
method for solving the initial-value problems of differential
equations. Runge–Kutta method can be used to construct
high order accurate numerical method by functions' self
without needing the high order derivatives of functions.
• The Runge-Kutta method attempts to overcome the
problem of the Euler's method, as far as the choice of a
sufficiently small step size is concerned, to reach a
reasonable accuracy in the problem resolution.
Second-order Runge-Kutta Method
(Improved Euler’s Method)
• The improved Euler method is a Runge-Kutta
method for approximating the solution of the
initial value problem y'(x) = f(x,y); y(x0) =
y0 which evaluates the integrand,f(x,y), twice
for each step.
The essential formulas to compute the value of
y(n+1):
yn+1 = yn + k2 ,
k1 = h * f(xn, yn),
k2 = h * f(xn + h / 2, yn + k1 / 2 ),
xn = x0 + n h.
Third-order Runge-Kutta Method
• This method is a third order Runge-Kutta
method for approximating the solution of the
initial value problem y'(x) = f(x,y); y(x0) = y0
which evaluates the integrand,f(x,y), three
times per step.
The essential formulas to compute the value of
y(n+1):
yn+1 = yn + 1/6 ( k1 + 4 k2 + k3 ),
k1 = h f(xn, yn),
k2 = h f(xn + h / 2, yn + k1 / 2 ),
k3 = h f(xn + h, yn - k1 + 2 k2 ),
xn = x0 + n h.
Higher Order Runge-Kutta Methods
• Runge-Kutta methods of any order can be
derived, although the derivation of an order
higher than four can become extremely
complicated. The table below gives the order
of the method and the minimum number of
stages required.
Because the fifth-order method requires two
more stages than the fourth-order method,
the fourth order method has found some
popularity.
Classical Runge-Kutta Fourth Order Method
• This method is the classical fourth order
Runge-Kutta method for approximating the
solution of the initial value problem y'(x) =
f(x,y); y(x0) = y0 which evaluates the
integrand,f(x,y), four times per step.
The essential formulas to compute the value of
y(n+1):
yn+1 = yn + K
yn+1 = yn + 1/6 ( k1 + 2 k2 + 2 k3 + k4 ),
k1 = h f(xn, yn),
k2 = h f(xn + h / 2, yn + k1 / 2 ),
k3 = h f(xn + h / 2, yn + k2 / 2 ),
k4 = h f(xn + h, yn + k3 ),
xi = x0 + n h.
Sample Problem:
• Apply the Runge-Kutta method of 4th order to
find approximate value of y at x=0.2 if given
that y=1 when x=0 in steps of h=0.1.
Solution:
U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx
U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx
U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx
U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx
U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx
U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx

More Related Content

Similar to U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx

Mit6 094 iap10_lec03
Mit6 094 iap10_lec03Mit6 094 iap10_lec03
Mit6 094 iap10_lec03
Tribhuwan Pant
 
Aaex4 group2(中英夾雜)
Aaex4 group2(中英夾雜)Aaex4 group2(中英夾雜)
Aaex4 group2(中英夾雜)
Shiang-Yun Yang
 
daa-unit-3-greedy method
daa-unit-3-greedy methoddaa-unit-3-greedy method
daa-unit-3-greedy method
hodcsencet
 
myppt for health issues at IITB. Don't come to IITB
myppt for health issues at IITB. Don't come to IITBmyppt for health issues at IITB. Don't come to IITB
myppt for health issues at IITB. Don't come to IITB
dhvaniliitb
 
Applied numerical methods lec12
Applied numerical methods lec12Applied numerical methods lec12
Applied numerical methods lec12
Yasser Ahmed
 
Ou3425912596
Ou3425912596Ou3425912596
Ou3425912596
IJERA Editor
 
Shor’s algorithm the ppt
Shor’s algorithm the pptShor’s algorithm the ppt
Shor’s algorithm the ppt
Mrinal Mondal
 
e.ppt
e.ppte.ppt
Unit 3-Greedy Method
Unit 3-Greedy MethodUnit 3-Greedy Method
Unit 3-Greedy Method
DevaKumari Vijay
 
Lecture 7_introduction_algorithms.pptx
Lecture 7_introduction_algorithms.pptxLecture 7_introduction_algorithms.pptx
Lecture 7_introduction_algorithms.pptx
ngBinh3
 
Optim_methods.pdf
Optim_methods.pdfOptim_methods.pdf
Optim_methods.pdf
SantiagoGarridoBulln
 
Range Kutta methods.pptx
Range Kutta methods.pptxRange Kutta methods.pptx
Range Kutta methods.pptx
BMVIJAYARAGHAVA
 
Applications Of MATLAB Ordinary Differential Equations (ODE
Applications Of MATLAB  Ordinary Differential Equations (ODEApplications Of MATLAB  Ordinary Differential Equations (ODE
Applications Of MATLAB Ordinary Differential Equations (ODE
Justin Knight
 
Paper Study: Melding the data decision pipeline
Paper Study: Melding the data decision pipelinePaper Study: Melding the data decision pipeline
Paper Study: Melding the data decision pipeline
ChenYiHuang5
 
8282967.ppt
8282967.ppt8282967.ppt
8282967.ppt
ArunachalamSelva
 
App8
App8App8
Lecture 5 6_7 - divide and conquer and method of solving recurrences
Lecture 5 6_7 - divide and conquer and method of solving recurrencesLecture 5 6_7 - divide and conquer and method of solving recurrences
Lecture 5 6_7 - divide and conquer and method of solving recurrences
jayavignesh86
 
Runge Kutta Method
Runge Kutta MethodRunge Kutta Method
Runge Kutta Method
Saloni Singhal
 
opt_slides_ump.pdf
opt_slides_ump.pdfopt_slides_ump.pdf
opt_slides_ump.pdf
VikashKumarRoy3
 
Single_Variable_Optimization_Part1_Dichotomous_moodle.ppsx
Single_Variable_Optimization_Part1_Dichotomous_moodle.ppsxSingle_Variable_Optimization_Part1_Dichotomous_moodle.ppsx
Single_Variable_Optimization_Part1_Dichotomous_moodle.ppsx
AmerTout
 

Similar to U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx (20)

Mit6 094 iap10_lec03
Mit6 094 iap10_lec03Mit6 094 iap10_lec03
Mit6 094 iap10_lec03
 
Aaex4 group2(中英夾雜)
Aaex4 group2(中英夾雜)Aaex4 group2(中英夾雜)
Aaex4 group2(中英夾雜)
 
daa-unit-3-greedy method
daa-unit-3-greedy methoddaa-unit-3-greedy method
daa-unit-3-greedy method
 
myppt for health issues at IITB. Don't come to IITB
myppt for health issues at IITB. Don't come to IITBmyppt for health issues at IITB. Don't come to IITB
myppt for health issues at IITB. Don't come to IITB
 
Applied numerical methods lec12
Applied numerical methods lec12Applied numerical methods lec12
Applied numerical methods lec12
 
Ou3425912596
Ou3425912596Ou3425912596
Ou3425912596
 
Shor’s algorithm the ppt
Shor’s algorithm the pptShor’s algorithm the ppt
Shor’s algorithm the ppt
 
e.ppt
e.ppte.ppt
e.ppt
 
Unit 3-Greedy Method
Unit 3-Greedy MethodUnit 3-Greedy Method
Unit 3-Greedy Method
 
Lecture 7_introduction_algorithms.pptx
Lecture 7_introduction_algorithms.pptxLecture 7_introduction_algorithms.pptx
Lecture 7_introduction_algorithms.pptx
 
Optim_methods.pdf
Optim_methods.pdfOptim_methods.pdf
Optim_methods.pdf
 
Range Kutta methods.pptx
Range Kutta methods.pptxRange Kutta methods.pptx
Range Kutta methods.pptx
 
Applications Of MATLAB Ordinary Differential Equations (ODE
Applications Of MATLAB  Ordinary Differential Equations (ODEApplications Of MATLAB  Ordinary Differential Equations (ODE
Applications Of MATLAB Ordinary Differential Equations (ODE
 
Paper Study: Melding the data decision pipeline
Paper Study: Melding the data decision pipelinePaper Study: Melding the data decision pipeline
Paper Study: Melding the data decision pipeline
 
8282967.ppt
8282967.ppt8282967.ppt
8282967.ppt
 
App8
App8App8
App8
 
Lecture 5 6_7 - divide and conquer and method of solving recurrences
Lecture 5 6_7 - divide and conquer and method of solving recurrencesLecture 5 6_7 - divide and conquer and method of solving recurrences
Lecture 5 6_7 - divide and conquer and method of solving recurrences
 
Runge Kutta Method
Runge Kutta MethodRunge Kutta Method
Runge Kutta Method
 
opt_slides_ump.pdf
opt_slides_ump.pdfopt_slides_ump.pdf
opt_slides_ump.pdf
 
Single_Variable_Optimization_Part1_Dichotomous_moodle.ppsx
Single_Variable_Optimization_Part1_Dichotomous_moodle.ppsxSingle_Variable_Optimization_Part1_Dichotomous_moodle.ppsx
Single_Variable_Optimization_Part1_Dichotomous_moodle.ppsx
 

More from karthiknarra1906

AIRCRAFThshdjjdjdjdjfjfjtjtjjfhthfhfS PPT.pptx
AIRCRAFThshdjjdjdjdjfjfjtjtjjfhthfhfS PPT.pptxAIRCRAFThshdjjdjdjdjfjfjtjtjjfhthfhfS PPT.pptx
AIRCRAFThshdjjdjdjdjfjfjtjtjjfhthfhfS PPT.pptx
karthiknarra1906
 
d3IGaGIHEVmLlydudufh0dpydupdudu0fupdoC1762.pptx
d3IGaGIHEVmLlydudufh0dpydupdudu0fupdoC1762.pptxd3IGaGIHEVmLlydudufh0dpydupdudu0fupdoC1762.pptx
d3IGaGIHEVmLlydudufh0dpydupdudu0fupdoC1762.pptx
karthiknarra1906
 
MURALI LANfg]utyyt77yyyiuGAUGES PPT..pptx
MURALI LANfg]utyyt77yyyiuGAUGES PPT..pptxMURALI LANfg]utyyt77yyyiuGAUGES PPT..pptx
MURALI LANfg]utyyt77yyyiuGAUGES PPT..pptx
karthiknarra1906
 
itworkshhjjsjsjsjjsjsjajjajajajjsjsjahop (2).pptx
itworkshhjjsjsjsjjsjsjajjajajajjsjsjahop (2).pptxitworkshhjjsjsjsjjsjsjajjajajajjsjsjahop (2).pptx
itworkshhjjsjsjsjjsjsjajjajajajjsjsjahop (2).pptx
karthiknarra1906
 
TRANSFORhsjjsjsjsjjansnsnsnsnnsnsjsjsjsjsjsjsMERS.pptx
TRANSFORhsjjsjsjsjjansnsnsnsnnsnsjsjsjsjsjsjsMERS.pptxTRANSFORhsjjsjsjsjjansnsnsnsnnsnsjsjsjsjsjsjsMERS.pptx
TRANSFORhsjjsjsjsjjansnsnsnsnnsnsjsjsjsjsjsjsMERS.pptx
karthiknarra1906
 
KGQ8b1YY4Ldo3I2e905.ppt dfhkuytttttdx
KGQ8b1YY4Ldo3I2e905.ppt     dfhkuytttttdxKGQ8b1YY4Ldo3I2e905.ppt     dfhkuytttttdx
KGQ8b1YY4Ldo3I2e905.ppt dfhkuytttttdx
karthiknarra1906
 
COMPUTER LANGAUGES .pptx
COMPUTER LANGAUGES                    .pptxCOMPUTER LANGAUGES                    .pptx
COMPUTER LANGAUGES .pptx
karthiknarra1906
 
CAMPUS PLACEMENTS PREDICTOR .pptx
CAMPUS PLACEMENTS PREDICTOR        .pptxCAMPUS PLACEMENTS PREDICTOR        .pptx
CAMPUS PLACEMENTS PREDICTOR .pptx
karthiknarra1906
 
CAMPUS PLACEMENTS PREDICTOR about .pptx
CAMPUS PLACEMENTS PREDICTOR about  .pptxCAMPUS PLACEMENTS PREDICTOR about  .pptx
CAMPUS PLACEMENTS PREDICTOR about .pptx
karthiknarra1906
 

More from karthiknarra1906 (9)

AIRCRAFThshdjjdjdjdjfjfjtjtjjfhthfhfS PPT.pptx
AIRCRAFThshdjjdjdjdjfjfjtjtjjfhthfhfS PPT.pptxAIRCRAFThshdjjdjdjdjfjfjtjtjjfhthfhfS PPT.pptx
AIRCRAFThshdjjdjdjdjfjfjtjtjjfhthfhfS PPT.pptx
 
d3IGaGIHEVmLlydudufh0dpydupdudu0fupdoC1762.pptx
d3IGaGIHEVmLlydudufh0dpydupdudu0fupdoC1762.pptxd3IGaGIHEVmLlydudufh0dpydupdudu0fupdoC1762.pptx
d3IGaGIHEVmLlydudufh0dpydupdudu0fupdoC1762.pptx
 
MURALI LANfg]utyyt77yyyiuGAUGES PPT..pptx
MURALI LANfg]utyyt77yyyiuGAUGES PPT..pptxMURALI LANfg]utyyt77yyyiuGAUGES PPT..pptx
MURALI LANfg]utyyt77yyyiuGAUGES PPT..pptx
 
itworkshhjjsjsjsjjsjsjajjajajajjsjsjahop (2).pptx
itworkshhjjsjsjsjjsjsjajjajajajjsjsjahop (2).pptxitworkshhjjsjsjsjjsjsjajjajajajjsjsjahop (2).pptx
itworkshhjjsjsjsjjsjsjajjajajajjsjsjahop (2).pptx
 
TRANSFORhsjjsjsjsjjansnsnsnsnnsnsjsjsjsjsjsjsMERS.pptx
TRANSFORhsjjsjsjsjjansnsnsnsnnsnsjsjsjsjsjsjsMERS.pptxTRANSFORhsjjsjsjsjjansnsnsnsnnsnsjsjsjsjsjsjsMERS.pptx
TRANSFORhsjjsjsjsjjansnsnsnsnnsnsjsjsjsjsjsjsMERS.pptx
 
KGQ8b1YY4Ldo3I2e905.ppt dfhkuytttttdx
KGQ8b1YY4Ldo3I2e905.ppt     dfhkuytttttdxKGQ8b1YY4Ldo3I2e905.ppt     dfhkuytttttdx
KGQ8b1YY4Ldo3I2e905.ppt dfhkuytttttdx
 
COMPUTER LANGAUGES .pptx
COMPUTER LANGAUGES                    .pptxCOMPUTER LANGAUGES                    .pptx
COMPUTER LANGAUGES .pptx
 
CAMPUS PLACEMENTS PREDICTOR .pptx
CAMPUS PLACEMENTS PREDICTOR        .pptxCAMPUS PLACEMENTS PREDICTOR        .pptx
CAMPUS PLACEMENTS PREDICTOR .pptx
 
CAMPUS PLACEMENTS PREDICTOR about .pptx
CAMPUS PLACEMENTS PREDICTOR about  .pptxCAMPUS PLACEMENTS PREDICTOR about  .pptx
CAMPUS PLACEMENTS PREDICTOR about .pptx
 

Recently uploaded

欧洲杯投注-欧洲杯投注押注app-欧洲杯投注押注app官网|【​网址​🎉ac10.net🎉​】
欧洲杯投注-欧洲杯投注押注app-欧洲杯投注押注app官网|【​网址​🎉ac10.net🎉​】欧洲杯投注-欧洲杯投注押注app-欧洲杯投注押注app官网|【​网址​🎉ac10.net🎉​】
欧洲杯投注-欧洲杯投注押注app-欧洲杯投注押注app官网|【​网址​🎉ac10.net🎉​】
akrooshsaleem36
 
一比一原版西三一大学毕业证(TWU毕业证书)学历如何办理
一比一原版西三一大学毕业证(TWU毕业证书)学历如何办理一比一原版西三一大学毕业证(TWU毕业证书)学历如何办理
一比一原版西三一大学毕业证(TWU毕业证书)学历如何办理
bttak
 
"IOS 18 CONTROL CENTRE REVAMP STREAMLINED IPHONE SHUTDOWN MADE EASIER"
"IOS 18 CONTROL CENTRE REVAMP STREAMLINED IPHONE SHUTDOWN MADE EASIER""IOS 18 CONTROL CENTRE REVAMP STREAMLINED IPHONE SHUTDOWN MADE EASIER"
"IOS 18 CONTROL CENTRE REVAMP STREAMLINED IPHONE SHUTDOWN MADE EASIER"
Emmanuel Onwumere
 
买(usyd毕业证书)澳洲悉尼大学毕业证研究生文凭证书原版一模一样
买(usyd毕业证书)澳洲悉尼大学毕业证研究生文凭证书原版一模一样买(usyd毕业证书)澳洲悉尼大学毕业证研究生文凭证书原版一模一样
买(usyd毕业证书)澳洲悉尼大学毕业证研究生文凭证书原版一模一样
nvoyobt
 
一比一原版不列颠哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
一比一原版不列颠哥伦比亚大学毕业证(UBC毕业证书)学历如何办理一比一原版不列颠哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
一比一原版不列颠哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
bttak
 
欧洲杯体彩-欧洲杯体彩比赛投注-欧洲杯体彩比赛投注官网|【​网址​🎉ac99.net🎉​】
欧洲杯体彩-欧洲杯体彩比赛投注-欧洲杯体彩比赛投注官网|【​网址​🎉ac99.net🎉​】欧洲杯体彩-欧洲杯体彩比赛投注-欧洲杯体彩比赛投注官网|【​网址​🎉ac99.net🎉​】
欧洲杯体彩-欧洲杯体彩比赛投注-欧洲杯体彩比赛投注官网|【​网址​🎉ac99.net🎉​】
lopezkatherina914
 
一比一原版(aiti毕业证书)澳洲悉尼翻译学院毕业证如何办理
一比一原版(aiti毕业证书)澳洲悉尼翻译学院毕业证如何办理一比一原版(aiti毕业证书)澳洲悉尼翻译学院毕业证如何办理
一比一原版(aiti毕业证书)澳洲悉尼翻译学院毕业证如何办理
fyguxu
 
The Future of Wearable Technology in Healthcare: Innovations and Trends to Watch
The Future of Wearable Technology in Healthcare: Innovations and Trends to WatchThe Future of Wearable Technology in Healthcare: Innovations and Trends to Watch
The Future of Wearable Technology in Healthcare: Innovations and Trends to Watch
bluetroyvictorVinay
 
一比一原版(SBU毕业证书)肯特州立大学毕业证如何办理
一比一原版(SBU毕业证书)肯特州立大学毕业证如何办理一比一原版(SBU毕业证书)肯特州立大学毕业证如何办理
一比一原版(SBU毕业证书)肯特州立大学毕业证如何办理
mbawufebxi
 
一比一原版圣托马斯大学毕业证(UST毕业证书)学历如何办理
一比一原版圣托马斯大学毕业证(UST毕业证书)学历如何办理一比一原版圣托马斯大学毕业证(UST毕业证书)学历如何办理
一比一原版圣托马斯大学毕业证(UST毕业证书)学历如何办理
bttak
 
按照学校原版(UPenn文凭证书)宾夕法尼亚大学毕业证快速办理
按照学校原版(UPenn文凭证书)宾夕法尼亚大学毕业证快速办理按照学校原版(UPenn文凭证书)宾夕法尼亚大学毕业证快速办理
按照学校原版(UPenn文凭证书)宾夕法尼亚大学毕业证快速办理
uwoso
 
Company Profile of Tempcon - Chiller Manufacturer In India
Company Profile of Tempcon - Chiller Manufacturer In IndiaCompany Profile of Tempcon - Chiller Manufacturer In India
Company Profile of Tempcon - Chiller Manufacturer In India
soumotempcon
 
We’re Underestimating the Damage Extreme Weather Does to Rooftop Solar Panels
We’re Underestimating the Damage Extreme Weather Does to Rooftop Solar PanelsWe’re Underestimating the Damage Extreme Weather Does to Rooftop Solar Panels
We’re Underestimating the Damage Extreme Weather Does to Rooftop Solar Panels
Grid Freedom Inc.
 
世预赛投注-世预赛投注投注官网app-世预赛投注官网app下载|【​网址​🎉ac123.net🎉​】
世预赛投注-世预赛投注投注官网app-世预赛投注官网app下载|【​网址​🎉ac123.net🎉​】世预赛投注-世预赛投注投注官网app-世预赛投注官网app下载|【​网址​🎉ac123.net🎉​】
世预赛投注-世预赛投注投注官网app-世预赛投注官网app下载|【​网址​🎉ac123.net🎉​】
bljeremy734
 
ℂall Girls Kolkata 😍 Call 0000000 Vip Escorts Service Kolkata
ℂall Girls Kolkata 😍 Call 0000000 Vip Escorts Service Kolkataℂall Girls Kolkata 😍 Call 0000000 Vip Escorts Service Kolkata
ℂall Girls Kolkata 😍 Call 0000000 Vip Escorts Service Kolkata
nhero3888
 
欧洲杯赌钱-欧洲杯赌钱冠军-欧洲杯赌钱冠军赔率|【​网址​🎉ac10.net🎉​】
欧洲杯赌钱-欧洲杯赌钱冠军-欧洲杯赌钱冠军赔率|【​网址​🎉ac10.net🎉​】欧洲杯赌钱-欧洲杯赌钱冠军-欧洲杯赌钱冠军赔率|【​网址​🎉ac10.net🎉​】
欧洲杯赌钱-欧洲杯赌钱冠军-欧洲杯赌钱冠军赔率|【​网址​🎉ac10.net🎉​】
hanniaarias53
 
一比一原版办理(Caltech毕业证)加州理工学院毕业证
一比一原版办理(Caltech毕业证)加州理工学院毕业证一比一原版办理(Caltech毕业证)加州理工学院毕业证
一比一原版办理(Caltech毕业证)加州理工学院毕业证
kboqz
 

Recently uploaded (17)

欧洲杯投注-欧洲杯投注押注app-欧洲杯投注押注app官网|【​网址​🎉ac10.net🎉​】
欧洲杯投注-欧洲杯投注押注app-欧洲杯投注押注app官网|【​网址​🎉ac10.net🎉​】欧洲杯投注-欧洲杯投注押注app-欧洲杯投注押注app官网|【​网址​🎉ac10.net🎉​】
欧洲杯投注-欧洲杯投注押注app-欧洲杯投注押注app官网|【​网址​🎉ac10.net🎉​】
 
一比一原版西三一大学毕业证(TWU毕业证书)学历如何办理
一比一原版西三一大学毕业证(TWU毕业证书)学历如何办理一比一原版西三一大学毕业证(TWU毕业证书)学历如何办理
一比一原版西三一大学毕业证(TWU毕业证书)学历如何办理
 
"IOS 18 CONTROL CENTRE REVAMP STREAMLINED IPHONE SHUTDOWN MADE EASIER"
"IOS 18 CONTROL CENTRE REVAMP STREAMLINED IPHONE SHUTDOWN MADE EASIER""IOS 18 CONTROL CENTRE REVAMP STREAMLINED IPHONE SHUTDOWN MADE EASIER"
"IOS 18 CONTROL CENTRE REVAMP STREAMLINED IPHONE SHUTDOWN MADE EASIER"
 
买(usyd毕业证书)澳洲悉尼大学毕业证研究生文凭证书原版一模一样
买(usyd毕业证书)澳洲悉尼大学毕业证研究生文凭证书原版一模一样买(usyd毕业证书)澳洲悉尼大学毕业证研究生文凭证书原版一模一样
买(usyd毕业证书)澳洲悉尼大学毕业证研究生文凭证书原版一模一样
 
一比一原版不列颠哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
一比一原版不列颠哥伦比亚大学毕业证(UBC毕业证书)学历如何办理一比一原版不列颠哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
一比一原版不列颠哥伦比亚大学毕业证(UBC毕业证书)学历如何办理
 
欧洲杯体彩-欧洲杯体彩比赛投注-欧洲杯体彩比赛投注官网|【​网址​🎉ac99.net🎉​】
欧洲杯体彩-欧洲杯体彩比赛投注-欧洲杯体彩比赛投注官网|【​网址​🎉ac99.net🎉​】欧洲杯体彩-欧洲杯体彩比赛投注-欧洲杯体彩比赛投注官网|【​网址​🎉ac99.net🎉​】
欧洲杯体彩-欧洲杯体彩比赛投注-欧洲杯体彩比赛投注官网|【​网址​🎉ac99.net🎉​】
 
一比一原版(aiti毕业证书)澳洲悉尼翻译学院毕业证如何办理
一比一原版(aiti毕业证书)澳洲悉尼翻译学院毕业证如何办理一比一原版(aiti毕业证书)澳洲悉尼翻译学院毕业证如何办理
一比一原版(aiti毕业证书)澳洲悉尼翻译学院毕业证如何办理
 
The Future of Wearable Technology in Healthcare: Innovations and Trends to Watch
The Future of Wearable Technology in Healthcare: Innovations and Trends to WatchThe Future of Wearable Technology in Healthcare: Innovations and Trends to Watch
The Future of Wearable Technology in Healthcare: Innovations and Trends to Watch
 
一比一原版(SBU毕业证书)肯特州立大学毕业证如何办理
一比一原版(SBU毕业证书)肯特州立大学毕业证如何办理一比一原版(SBU毕业证书)肯特州立大学毕业证如何办理
一比一原版(SBU毕业证书)肯特州立大学毕业证如何办理
 
一比一原版圣托马斯大学毕业证(UST毕业证书)学历如何办理
一比一原版圣托马斯大学毕业证(UST毕业证书)学历如何办理一比一原版圣托马斯大学毕业证(UST毕业证书)学历如何办理
一比一原版圣托马斯大学毕业证(UST毕业证书)学历如何办理
 
按照学校原版(UPenn文凭证书)宾夕法尼亚大学毕业证快速办理
按照学校原版(UPenn文凭证书)宾夕法尼亚大学毕业证快速办理按照学校原版(UPenn文凭证书)宾夕法尼亚大学毕业证快速办理
按照学校原版(UPenn文凭证书)宾夕法尼亚大学毕业证快速办理
 
Company Profile of Tempcon - Chiller Manufacturer In India
Company Profile of Tempcon - Chiller Manufacturer In IndiaCompany Profile of Tempcon - Chiller Manufacturer In India
Company Profile of Tempcon - Chiller Manufacturer In India
 
We’re Underestimating the Damage Extreme Weather Does to Rooftop Solar Panels
We’re Underestimating the Damage Extreme Weather Does to Rooftop Solar PanelsWe’re Underestimating the Damage Extreme Weather Does to Rooftop Solar Panels
We’re Underestimating the Damage Extreme Weather Does to Rooftop Solar Panels
 
世预赛投注-世预赛投注投注官网app-世预赛投注官网app下载|【​网址​🎉ac123.net🎉​】
世预赛投注-世预赛投注投注官网app-世预赛投注官网app下载|【​网址​🎉ac123.net🎉​】世预赛投注-世预赛投注投注官网app-世预赛投注官网app下载|【​网址​🎉ac123.net🎉​】
世预赛投注-世预赛投注投注官网app-世预赛投注官网app下载|【​网址​🎉ac123.net🎉​】
 
ℂall Girls Kolkata 😍 Call 0000000 Vip Escorts Service Kolkata
ℂall Girls Kolkata 😍 Call 0000000 Vip Escorts Service Kolkataℂall Girls Kolkata 😍 Call 0000000 Vip Escorts Service Kolkata
ℂall Girls Kolkata 😍 Call 0000000 Vip Escorts Service Kolkata
 
欧洲杯赌钱-欧洲杯赌钱冠军-欧洲杯赌钱冠军赔率|【​网址​🎉ac10.net🎉​】
欧洲杯赌钱-欧洲杯赌钱冠军-欧洲杯赌钱冠军赔率|【​网址​🎉ac10.net🎉​】欧洲杯赌钱-欧洲杯赌钱冠军-欧洲杯赌钱冠军赔率|【​网址​🎉ac10.net🎉​】
欧洲杯赌钱-欧洲杯赌钱冠军-欧洲杯赌钱冠军赔率|【​网址​🎉ac10.net🎉​】
 
一比一原版办理(Caltech毕业证)加州理工学院毕业证
一比一原版办理(Caltech毕业证)加州理工学院毕业证一比一原版办理(Caltech毕业证)加州理工学院毕业证
一比一原版办理(Caltech毕业证)加州理工学院毕业证
 

U3BEKoM7mQ4JSO26ggggggfgyrghhfgjhfghh739.pptx

  • 2. Runge- Kutta Methods • Runge–Kutta method is an effective and widely used method for solving the initial-value problems of differential equations. Runge–Kutta method can be used to construct high order accurate numerical method by functions' self without needing the high order derivatives of functions. • The Runge-Kutta method attempts to overcome the problem of the Euler's method, as far as the choice of a sufficiently small step size is concerned, to reach a reasonable accuracy in the problem resolution.
  • 3. Second-order Runge-Kutta Method (Improved Euler’s Method) • The improved Euler method is a Runge-Kutta method for approximating the solution of the initial value problem y'(x) = f(x,y); y(x0) = y0 which evaluates the integrand,f(x,y), twice for each step.
  • 4. The essential formulas to compute the value of y(n+1): yn+1 = yn + k2 , k1 = h * f(xn, yn), k2 = h * f(xn + h / 2, yn + k1 / 2 ), xn = x0 + n h.
  • 5. Third-order Runge-Kutta Method • This method is a third order Runge-Kutta method for approximating the solution of the initial value problem y'(x) = f(x,y); y(x0) = y0 which evaluates the integrand,f(x,y), three times per step.
  • 6. The essential formulas to compute the value of y(n+1): yn+1 = yn + 1/6 ( k1 + 4 k2 + k3 ), k1 = h f(xn, yn), k2 = h f(xn + h / 2, yn + k1 / 2 ), k3 = h f(xn + h, yn - k1 + 2 k2 ), xn = x0 + n h.
  • 7. Higher Order Runge-Kutta Methods • Runge-Kutta methods of any order can be derived, although the derivation of an order higher than four can become extremely complicated. The table below gives the order of the method and the minimum number of stages required.
  • 8. Because the fifth-order method requires two more stages than the fourth-order method, the fourth order method has found some popularity.
  • 9. Classical Runge-Kutta Fourth Order Method • This method is the classical fourth order Runge-Kutta method for approximating the solution of the initial value problem y'(x) = f(x,y); y(x0) = y0 which evaluates the integrand,f(x,y), four times per step.
  • 10. The essential formulas to compute the value of y(n+1): yn+1 = yn + K yn+1 = yn + 1/6 ( k1 + 2 k2 + 2 k3 + k4 ), k1 = h f(xn, yn), k2 = h f(xn + h / 2, yn + k1 / 2 ), k3 = h f(xn + h / 2, yn + k2 / 2 ), k4 = h f(xn + h, yn + k3 ), xi = x0 + n h.
  • 11. Sample Problem: • Apply the Runge-Kutta method of 4th order to find approximate value of y at x=0.2 if given that y=1 when x=0 in steps of h=0.1.