diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /803/CH8/EX8.5 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '803/CH8/EX8.5')
-rw-r--r-- | 803/CH8/EX8.5/ex8_5.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/803/CH8/EX8.5/ex8_5.sce b/803/CH8/EX8.5/ex8_5.sce new file mode 100644 index 000000000..c5bd3544c --- /dev/null +++ b/803/CH8/EX8.5/ex8_5.sce @@ -0,0 +1,21 @@ +clc
+n=10;...................................//total pulses selected
+p=0.8;..................................//probability of pulses hitting the dish
+q=0.2;..................................//probability of miss
+add=0;
+for k=2;
+ x(k)=((factorial(n)*(p^k)*((1-p)^(n-k)))/(factorial(k)*factorial(n-k)));
+ disp(x(k),"Exactly two pulses missing the target");
+end;
+for k=0:1
+ x(k)=((factorial(n)*(p^k)*((1-p)^(n-k)))/(factorial(k)*factorial(n-k)));
+ add=add+x(k);
+end;
+ y(k)=1-add;
+ disp(y(k),"Two or more pulses missing the target");
+for k=6:10
+ x(k)=((factorial(n)*(p^k)*((1-p)^(n-k)))/(factorial(k)*factorial(n-(k)));
+ y(k)=sum(x(k));
+ disp(y(k),"More than 5 pulses missing the target");
+
+end;
|