diff options
Diffstat (limited to '1682/CH3/EX3.7')
-rwxr-xr-x | 1682/CH3/EX3.7/Exa3_7.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1682/CH3/EX3.7/Exa3_7.sce b/1682/CH3/EX3.7/Exa3_7.sce new file mode 100755 index 000000000..849f44968 --- /dev/null +++ b/1682/CH3/EX3.7/Exa3_7.sce @@ -0,0 +1,12 @@ +//Exa3_7
+clc;
+clear;
+close;
+//given data is :
+A1=4000;//in rupees
+G=500;//in rupees
+n=10;//in years
+i=15;//% per annum
+A=A1+G*(((1+i/100)^n-(i/100)*n-1)/((i/100)*(1+i/100)^n-(i/100)));
+F=A*(((1+i/100)^n-1)/(i/100));
+disp("At the end of 10th year, the compound amountr of all his payments will be : "+string(F)+" Rupees.");
\ No newline at end of file |