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 --- 260/CH6/EX6.4/6_4.sce | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 260/CH6/EX6.4/6_4.sce (limited to '260/CH6/EX6.4') diff --git a/260/CH6/EX6.4/6_4.sce b/260/CH6/EX6.4/6_4.sce new file mode 100644 index 000000000..bf2edebdf --- /dev/null +++ b/260/CH6/EX6.4/6_4.sce @@ -0,0 +1,27 @@ +//Eg-6_4 +//pg-284 + +clear +clc + +s=[9;10;14;16;12]; +n=0; +m=0; +for i=1:5 + if s(i)<=10 then + n=n+1; + end +end + +for i=1:5 + if s(i)<15 then + m=m+1; + end +end + +prob_10=n/5; +prob_15=m/5; + +disp("probability of getting ash content 10 and 15% are") +disp(prob_10) +disp(prob_15) \ No newline at end of file -- cgit