summaryrefslogtreecommitdiff
path: root/1682/CH4/EX4.7/Exa4_7.sce
blob: 0edb0a0f44f2dfc974159b8357c28e5ea79db654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Exa 4.7
clc;
clear;
close;
//Given data :
P=12000;//in Rs
A1=10000;//in Rs
G=1000;//in Rs
i=18;//in % per annum
n=10;//in years
//Formula : (P/A,i,n)=(((1+i/100)^n)-1)/((i/100)*(1+i/100)^n)
//Formula : (A/G,i,n) :(((1+i/100)^n)-i*n/100-1)/(((i/100)*(1+i/100)^n)-i/100) 
PW=-P+(A1+G*(((1+i/100)^n)-i*n/100-1)/(((i/100)*(1+i/100)^n)-i/100))*(((1+i/100)^n)-1)/((i/100)*(1+i/100)^n);//in RS
disp(PW,"The present worth of the small business in RS. : ");