summaryrefslogtreecommitdiff
path: root/3808/CH7/EX7.13
diff options
context:
space:
mode:
Diffstat (limited to '3808/CH7/EX7.13')
-rw-r--r--3808/CH7/EX7.13/Ex7_13.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3808/CH7/EX7.13/Ex7_13.sce b/3808/CH7/EX7.13/Ex7_13.sce
new file mode 100644
index 000000000..53c63bf99
--- /dev/null
+++ b/3808/CH7/EX7.13/Ex7_13.sce
@@ -0,0 +1,18 @@
+//Chapter 07: Discrete Probability
+
+clc;
+clear;
+
+times=8 //time flipped
+o1=3 //occurrence of 3 heads
+o2=2 //occurrence of 2 heads
+o3=2 //occurrence of 2 heads
+o4=2 //occurrence of 2 heads
+o5=1 //occurrence of 1 head
+o6=1 //occurrence of 1 head
+o7=1 //occurrence of 1 head
+o8=0 //occurrence of 0 heads
+peo=1/times //probability of each outcome
+Ex=peo*(o1+o2+o3+o4+o5+o6+o7+o8)
+
+disp(Ex,'Expected heads when fair coin is flipped 3 times')