diff options
Diffstat (limited to '1475/CH1/EX1.28')
-rwxr-xr-x | 1475/CH1/EX1.28/Example_1_28.sce | 12 | ||||
-rwxr-xr-x | 1475/CH1/EX1.28/Output_1_28.PNG | bin | 0 -> 10693 bytes |
2 files changed, 12 insertions, 0 deletions
diff --git a/1475/CH1/EX1.28/Example_1_28.sce b/1475/CH1/EX1.28/Example_1_28.sce new file mode 100755 index 000000000..cd33e8d6d --- /dev/null +++ b/1475/CH1/EX1.28/Example_1_28.sce @@ -0,0 +1,12 @@ +//Example 1.28 Four Cards are drawn at random from a full pack.
+clc;
+clear;
+N=(52*51*50*49);
+disp(N,"total no. of ways in which 4 cards are drawn =");
+M1= (52*39*26*13);
+disp(M1,"No. of favourable cases with cards of 4 different suits =");
+P1=M1/N;
+M2=(52*36*22*10);
+P2=M2/N;
+disp(M2,"No of favourable cases with cards of different suits and different denominations =")
+disp(P2,"The required Probability with cards of different suits and different denominations",P1," The required Probability with cards of 4 different suits = ");
diff --git a/1475/CH1/EX1.28/Output_1_28.PNG b/1475/CH1/EX1.28/Output_1_28.PNG Binary files differnew file mode 100755 index 000000000..5060a4249 --- /dev/null +++ b/1475/CH1/EX1.28/Output_1_28.PNG |