diff options
Diffstat (limited to '1475/CH8/EX8.5')
-rwxr-xr-x | 1475/CH8/EX8.5/Example_8_5.sce | 14 | ||||
-rwxr-xr-x | 1475/CH8/EX8.5/Output_8_5.PNG | bin | 0 -> 9619 bytes |
2 files changed, 14 insertions, 0 deletions
diff --git a/1475/CH8/EX8.5/Example_8_5.sce b/1475/CH8/EX8.5/Example_8_5.sce new file mode 100755 index 000000000..2e62324b5 --- /dev/null +++ b/1475/CH8/EX8.5/Example_8_5.sce @@ -0,0 +1,14 @@ +//Example 8.5 From the life table we have the following table
+clc;
+clear;
+I40=81685;
+I50= 74528;
+I60=62170;
+I70=42091;
+P1=I60/I40;
+P2=I70/I50;
+disp(P1,"Probab. that Smith survives 20 years is = ");
+disp(P2,"Probab. that Jones aged 50 years, survives 20 years is = ");
+disp(P1*P2,"So the required probability such that Partnership will continue undissolved = ");
+disp((1-P1)*P2,"Probability that in the next 20 years Smith will die but Jones survive = ");
+
diff --git a/1475/CH8/EX8.5/Output_8_5.PNG b/1475/CH8/EX8.5/Output_8_5.PNG Binary files differnew file mode 100755 index 000000000..aacc19dca --- /dev/null +++ b/1475/CH8/EX8.5/Output_8_5.PNG |