From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3808/CH7/EX7.13/Ex7_13.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3808/CH7/EX7.13/Ex7_13.sce (limited to '3808/CH7/EX7.13') 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') -- cgit