summaryrefslogtreecommitdiff
path: root/116/CH12/EX12.2/exa12_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /116/CH12/EX12.2/exa12_2.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '116/CH12/EX12.2/exa12_2.sce')
-rwxr-xr-x116/CH12/EX12.2/exa12_2.sce35
1 files changed, 35 insertions, 0 deletions
diff --git a/116/CH12/EX12.2/exa12_2.sce b/116/CH12/EX12.2/exa12_2.sce
new file mode 100755
index 000000000..638ae0ef0
--- /dev/null
+++ b/116/CH12/EX12.2/exa12_2.sce
@@ -0,0 +1,35 @@
+
+//Caption:Program to calculate the probability that eight or more arrivals occur in an chosen 30 sec
+
+//Example 12.2
+
+//Page 526
+
+disp('The average number of arrivals in a 30 sec interval is,')
+
+lamt=4*(30/60)
+
+disp('The probability of eight or more arrivals is,')
+
+P0=1
+
+P1=[(2^1)/(1)]
+
+P2=[(2^2)/(1*2)]
+
+P3=[(2^3)/(1*2*3)]
+
+P4=[(2^4)/(1*2*3*4)]
+
+P5=[(2^5)/(1*2*3*4*5)]
+
+P6=[(2^6)/(1*2*3*4*5*6)]
+
+P7=[(2^7)/(1*2*3*4*5*6*7)]
+
+i=1-{(%e^-2)*[P0+P1+P2+P3+P4+P5+P6+P7]}
+
+disp("Result")
+
+disp("P(2) = 0.0011")
+ \ No newline at end of file