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 --- 3689/CH12/EX12.10/12_10.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 3689/CH12/EX12.10/12_10.sce (limited to '3689/CH12/EX12.10/12_10.sce') diff --git a/3689/CH12/EX12.10/12_10.sce b/3689/CH12/EX12.10/12_10.sce new file mode 100644 index 000000000..35e196d72 --- /dev/null +++ b/3689/CH12/EX12.10/12_10.sce @@ -0,0 +1,14 @@ +//// +//Variable Declaration +fi = 1 //Probability of receiving any card +n = 52 //Number od Cards + +//Calculations +sum = 0 +for i = 1:52 + sum = sum + fi +end +Pxi = (fi/sum) + +//Results +printf("\n Probability of receiving any card is %f', Pxi) -- cgit