What is the Applications of using Discrete Probability in Computer Science? ( 3 )
List out 2 basic counting rules and when to use
A student can choose a computer project from one of three lists. The three lists contain 23, 15 and 19 possible projects respectively. How many posible projects are there to choose from?
A student can choose a computer project from one of every lists. The three lists contain 23, 15 and 19 possible projects respectively. How many posible projects are there to choose from?
How many different 8 - letter ( uppercase ) password are there?
1. With repetitions
2. Without repetitons
How many difference license plates are available if each plate contains a sequence of 3 letters followed by 3 digits?
If there are 6 men and eight women auditioning for the leading male and female roles, how many ways the director can cast his leading couple?
There are 7 different introductory books each on C++, Java and Perl. How many books that can be recommended to a student who is interested in learning a first programming language?
A bag containes nince dics numbered from 1 to 9
If the number is even, a coin is tosses. If the number is odd, then a dice is thrown.
What does a Tree Diagram consists?
What is the definition of Permutation ( nPa ) ?
A class has 4 students A , B , C , D , 4 students are to be chosen and steated in a row for a picture, How many such linear arragements are possible?
What does n! involves?
What does P ( n , r ) involves?
P ( 26 , 8 )
What does n^r involves?
26^8
There are 6 children in a drawing class
1. In how many ways can all these 6 children be arranged in a line?
2. In how many ways can 4 children from the class be arranged in a line?
If repetitions of letters are allowed, how many 5 - letter sequences are possible for letters CDE?
n = 3 ( C , D , E )
r = 5 ( 5 - letter sequence )
Does sequence / arrangement matter in Combination?
How to press 1. P ( 26 , 8 ) and 2. C ( 26 , 8 ) in calculator ?
What does 1. n and 2 . r represent in Permutation and Combination?
What is the outcome for C ( n , 0 ) ? ( 2 )
C ( n , 0 ) = 1
= C ( n , n )
What is the outcome for C ( n , 1 ) ? ( 2 )
C ( n , 1 ) = n
= C ( n , n-1 )
There are 5 women and 4 men in a club. A team of four has to be chosen. How many different teams can be chosen if there must be either one women or exactly 2 women on the team?
5C1 x 4C3 + 5C2 x 4C2
5C1 x 4C3 ( Either One Women )
One Women x 3 Men
5C2 x 4C2 ( Exactly 2 Women )
2 Women x 3 Men
Automobiles comes in 4 models, 12 colors, 3 engine sizes and 2 transmission types
( i ) How many distinct automobiles can be manufactured?
( ii ) IF one of the available color is blue, how many different blue automobiles can be manufactured?
i. 4 x 12 x 3 x 2 = 288
ii. 4 x 3 x 2 = 24