summaryrefslogtreecommitdiff
path: root/Numerical_Methods_by_E_Balaguruswamy/CH13/EX13.8
diff options
context:
space:
mode:
authorPrashant S2019-10-04 12:27:32 +0530
committerGitHub2019-10-04 12:27:32 +0530
commitac2986488a9731cff5cbb517d8f0ef98e2561d64 (patch)
tree7bb3f64824627ef179d5f341266a664fd0b69011 /Numerical_Methods_by_E_Balaguruswamy/CH13/EX13.8
parentcbb2770fb2f88246175add29623103a56ba338b8 (diff)
parentb3f3a8ecd454359a2e992161844f2fb599f8238a (diff)
downloadR_TBC_Uploads-master.tar.gz
R_TBC_Uploads-master.tar.bz2
R_TBC_Uploads-master.zip
Merge pull request #1 from prashantsinalkar/masterHEADmaster
Added R TBC
Diffstat (limited to 'Numerical_Methods_by_E_Balaguruswamy/CH13/EX13.8')
-rw-r--r--Numerical_Methods_by_E_Balaguruswamy/CH13/EX13.8/Ex13_8.R30
1 files changed, 30 insertions, 0 deletions
diff --git a/Numerical_Methods_by_E_Balaguruswamy/CH13/EX13.8/Ex13_8.R b/Numerical_Methods_by_E_Balaguruswamy/CH13/EX13.8/Ex13_8.R
new file mode 100644
index 00000000..40f50985
--- /dev/null
+++ b/Numerical_Methods_by_E_Balaguruswamy/CH13/EX13.8/Ex13_8.R
@@ -0,0 +1,30 @@
+# Example 8 Chapter 13 Page no.: 439
+# Classic Runge Kutta Method
+
+#for the solution
+cat("Classic Runge Kutta Method")
+h <- 0.2
+x = 0
+y = 0
+
+cat("h=",h)
+cat("x=",x)
+cat("y=",y)
+
+#Given Function
+f <- function(x,y){
+ x^2 + y^2
+}
+
+#Creating algorithm and displaying
+for (i in 1:2) {
+
+ m1 <- f(x,y)
+ m2 <- f(x + 0.5*h, y + 0.5*h*m1)
+ m3 <- f(x + 0.5*h, y + 0.5*h*m2)
+ m4 <- f(x + h, y + h*m3)
+ x <- x + h
+ y <- y + h * (m1 + m4 + 2*m2 + 2*m3) / 6
+ cat("y(",x,")= ", signif(y,6),"\n")
+
+}