diff options
Diffstat (limited to '1208/CH1/EX1.4/Exa4.sce')
-rwxr-xr-x | 1208/CH1/EX1.4/Exa4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1208/CH1/EX1.4/Exa4.sce b/1208/CH1/EX1.4/Exa4.sce new file mode 100755 index 000000000..893e74599 --- /dev/null +++ b/1208/CH1/EX1.4/Exa4.sce @@ -0,0 +1,15 @@ +//Exa4
+clc;
+clear;
+close;
+//given data :
+Vo=500;//in Rs
+r=16;//in % per annum
+i=r/100;
+n=5;//in years
+//interest is calculated in quarterly basis
+m=4;
+//formula Vn=Vo*(1+i/m)^(m*n)
+Vn=Vo*(1+i/m)^(m*n)
+disp(Vn," The amount will be(in Rs.) : ")
+//Note: answer given in the book is not accurate
\ No newline at end of file |