From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1682/CH3/EX3.1/Exa3_1.sce | 11 +++++++++++ 1682/CH3/EX3.2/Exa3_2.sce | 11 +++++++++++ 1682/CH3/EX3.3/Exa3_3.sce | 10 ++++++++++ 1682/CH3/EX3.4/Exa3_4.sce | 10 ++++++++++ 1682/CH3/EX3.5/Exa3_5.sce | 11 +++++++++++ 1682/CH3/EX3.6/Exa3_6.sce | 10 ++++++++++ 1682/CH3/EX3.7/Exa3_7.sce | 12 ++++++++++++ 1682/CH3/EX3.8/Exa3_8.sce | 12 ++++++++++++ 1682/CH3/EX3.9/Exa3_9.sce | 13 +++++++++++++ 9 files changed, 100 insertions(+) create mode 100755 1682/CH3/EX3.1/Exa3_1.sce create mode 100755 1682/CH3/EX3.2/Exa3_2.sce create mode 100755 1682/CH3/EX3.3/Exa3_3.sce create mode 100755 1682/CH3/EX3.4/Exa3_4.sce create mode 100755 1682/CH3/EX3.5/Exa3_5.sce create mode 100755 1682/CH3/EX3.6/Exa3_6.sce create mode 100755 1682/CH3/EX3.7/Exa3_7.sce create mode 100755 1682/CH3/EX3.8/Exa3_8.sce create mode 100755 1682/CH3/EX3.9/Exa3_9.sce (limited to '1682/CH3') diff --git a/1682/CH3/EX3.1/Exa3_1.sce b/1682/CH3/EX3.1/Exa3_1.sce new file mode 100755 index 000000000..a13a43f7e --- /dev/null +++ b/1682/CH3/EX3.1/Exa3_1.sce @@ -0,0 +1,11 @@ +//Exa3_1 +clc; +clear; +close; +//given data is : +P=20000;//in rupees +n=10;//in years +i=18;//% per annum +F=P*(1+i/100)^n; +disp("Maturity value after 18 years is : "+string(F)+" Rupees."); +//Note : Ans in the book is not correct. \ No newline at end of file diff --git a/1682/CH3/EX3.2/Exa3_2.sce b/1682/CH3/EX3.2/Exa3_2.sce new file mode 100755 index 000000000..1f9bef60c --- /dev/null +++ b/1682/CH3/EX3.2/Exa3_2.sce @@ -0,0 +1,11 @@ +//Exa3_2 +clc; +clear; +close; +//given data is : +F=100000;//in rupees +n=10;//in years +i=15;//% per annum +P=F/(1+i/100)^n; +disp("The person has to invest : "+string(P)+" Rupees."); +//Note : Ans in the book is not correct. \ No newline at end of file diff --git a/1682/CH3/EX3.3/Exa3_3.sce b/1682/CH3/EX3.3/Exa3_3.sce new file mode 100755 index 000000000..4a45db893 --- /dev/null +++ b/1682/CH3/EX3.3/Exa3_3.sce @@ -0,0 +1,10 @@ +//Exa3_3 +clc; +clear; +close; +//given data is : +A=10000;//in rupees +n=25;//in years +i=20;//% per annum +F=A*(((1+i/100)^n-1)/(i/100)); +disp("The future sum of the annual equal payment after 25 years is : "+string(F)+" Rupees."); \ No newline at end of file diff --git a/1682/CH3/EX3.4/Exa3_4.sce b/1682/CH3/EX3.4/Exa3_4.sce new file mode 100755 index 000000000..b73ba139d --- /dev/null +++ b/1682/CH3/EX3.4/Exa3_4.sce @@ -0,0 +1,10 @@ +//Exa3_4 +clc; +clear; +close; +//given data is : +F=500000;//in rupees +n=15;//in years +i=18;//% per annum +A=F*((i/100)/((1+i/100)^n-1)); +disp("The annual equal ammount which must be deposited for 15 years is : "+string(A)+" Rupees."); \ No newline at end of file diff --git a/1682/CH3/EX3.5/Exa3_5.sce b/1682/CH3/EX3.5/Exa3_5.sce new file mode 100755 index 000000000..83e85e751 --- /dev/null +++ b/1682/CH3/EX3.5/Exa3_5.sce @@ -0,0 +1,11 @@ +//Exa3_5 +clc; +clear; +close; +//given data is : +A=1000000;//in rupees +n=20;//in years +i=15;//% per annum +P=A*(((1+i/100)^n-1)/((i/100)*(1+i/100)^n)); +disp("The amount of reserve which must be setup now is : "+string(P)+" Rupees."); +//Note : Ans in the book is not correct. \ No newline at end of file diff --git a/1682/CH3/EX3.6/Exa3_6.sce b/1682/CH3/EX3.6/Exa3_6.sce new file mode 100755 index 000000000..fa832b469 --- /dev/null +++ b/1682/CH3/EX3.6/Exa3_6.sce @@ -0,0 +1,10 @@ +//Exa3_6 +clc; +clear; +close; +//given data is : +P=1000000;//in rupees +n=15;//in years +i=18;//% per annum +A=P*(((i/100)*(1+i/100)^n)/((1+i/100)^n-1)); +disp("The annual equivalent installment to be paid by the company to the bank is : "+string(A)+" Rupees."); \ No newline at end of file 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 diff --git a/1682/CH3/EX3.8/Exa3_8.sce b/1682/CH3/EX3.8/Exa3_8.sce new file mode 100755 index 000000000..11a0bf729 --- /dev/null +++ b/1682/CH3/EX3.8/Exa3_8.sce @@ -0,0 +1,12 @@ +//Exa3_8 +clc; +clear; +close; +//given data is : +A1=8500;//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 diff --git a/1682/CH3/EX3.9/Exa3_9.sce b/1682/CH3/EX3.9/Exa3_9.sce new file mode 100755 index 000000000..286b03ada --- /dev/null +++ b/1682/CH3/EX3.9/Exa3_9.sce @@ -0,0 +1,13 @@ +//Exa3_9 +clc; +clear; +close; +//given data is : +P=5000;//in rupees +n=10;//in years +i=12;//% per annum +m=4;//no. of interest periods per year for quarterly +N=n*m; +r=i/m; +F=P*(1+r/100)^N; +disp("Maturity value after 10 years is : "+string(F)+" Rupees."); \ No newline at end of file -- cgit