summaryrefslogtreecommitdiff
path: root/3808/CH7/EX7.7/Ex7_7.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3808/CH7/EX7.7/Ex7_7.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3808/CH7/EX7.7/Ex7_7.sce')
-rw-r--r--3808/CH7/EX7.7/Ex7_7.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3808/CH7/EX7.7/Ex7_7.sce b/3808/CH7/EX7.7/Ex7_7.sce
new file mode 100644
index 000000000..6d26984d1
--- /dev/null
+++ b/3808/CH7/EX7.7/Ex7_7.sce
@@ -0,0 +1,16 @@
+//Chapter 07: Discrete Probability
+
+clc;
+clear;
+
+max_integers=100
+E1=100/2 //event that random integer is divisible by 2
+E2=100/5 //event that random integer is divisible by 5
+E1IE2=100/(5*2) //event that random integer is divisible by 5 and 2
+pE1=E1/max_integers //probability of event E1
+pE2=E2/max_integers //probability of event E2
+pE1IE2=E1IE2/max_integers //probability of event E1IE2
+
+pE1UE2=pE1+pE2-pE1IE2
+
+disp(pE1UE2,'Probability that random integer is divisible by either 2 or 5 is')