diff options
Diffstat (limited to '3808/CH7/EX7.1/Ex7_1.sce')
-rw-r--r-- | 3808/CH7/EX7.1/Ex7_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3808/CH7/EX7.1/Ex7_1.sce b/3808/CH7/EX7.1/Ex7_1.sce new file mode 100644 index 000000000..20dae4c82 --- /dev/null +++ b/3808/CH7/EX7.1/Ex7_1.sce @@ -0,0 +1,12 @@ +//Chapter 07: Discrete Probability + +clc; +clear; + +no_blue=4 //no of blue balls +no_red=5 //no of red balls + +prob_blue=no_blue/(no_red+no_blue) + +disp('The probability that a ball chosen at random will be blue is:') +disp(prob_blue) |