diff options
Diffstat (limited to '3689/CH12/EX12.10/12_10.sce')
-rw-r--r-- | 3689/CH12/EX12.10/12_10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
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)
|