summaryrefslogtreecommitdiff
path: root/260/CH6/EX6.4
diff options
context:
space:
mode:
Diffstat (limited to '260/CH6/EX6.4')
-rw-r--r--260/CH6/EX6.4/6_4.sce27
1 files changed, 27 insertions, 0 deletions
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