diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1475/CH1/EX1.28 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 |