From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1475/CH1/EX1.28/Example_1_28.sce | 12 ++++++++++++ 1475/CH1/EX1.28/Output_1_28.PNG | Bin 0 -> 10693 bytes 2 files changed, 12 insertions(+) create mode 100755 1475/CH1/EX1.28/Example_1_28.sce create mode 100755 1475/CH1/EX1.28/Output_1_28.PNG (limited to '1475/CH1/EX1.28') 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 new file mode 100755 index 000000000..5060a4249 Binary files /dev/null and b/1475/CH1/EX1.28/Output_1_28.PNG differ -- cgit