Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1.

Determine all possibilities for the solution set of a homogeneous system of 4 equations in 4 unknowns.(a) only one(b) finitely many or zero(c) zero(d) one or infinitely manyThe question was posed to me during an internship interview.My question is from Counting in section Counting of Discrete Mathematics

Answer»

Right answer is (B) finitely many or zero

The best explanation: Here the number of equations and the number of unknowns are equal and the system is HOMOGENEOUS, so it may have the zero SOLUTION or INFINITELY many solutions.

2.

Determine all possibilities for the solution set of a homogeneous system of 6 equations in 5 unknowns.(a) only one(b) zero(c) one or infinitely many(d) finitely manyThe question was posed to me in an interview for job.This is a very interesting question from Counting in section Counting of Discrete Mathematics

Answer»

The correct ANSWER is (c) one or infinitely many

Best explanation: SINCE the system is homogeneous and there are more EQUATIONS than the number of unknowns, so the possibilities are either a UNIQUE solution or infinitely many SOLUTIONS. However, if the rank r of the system is 5, then it can be a unique solution as well as if r<5, then there are infinitely many solutions.

3.

In a get-together party, every person present shakes the hand of every other person. If there were 90 handshakes in all, how many persons were present at the party?(a) 15(b) 14(c) 16(d) 17The question was asked in an online interview.The origin of the question is Counting topic in section Counting of Discrete Mathematics

Answer» RIGHT choice is (B) 14

Easiest explanation: Let the total NUMBER of persons PRESENT at the party be m, Then, [{x *(x−1)}/2] = 90.

x = 14.
4.

A group of 20 girls plucked a total of 200 oranges. How many oranges can be plucked one of them?(a) 24(b) 10(c) 32(d) 7I had been asked this question in class test.My question is from Counting topic in portion Counting of Discrete Mathematics

Answer»

Right answer is (a) 24

To elaborate: SUPPOSE all of them plucked the different number of ORANGES. A girl can pluck at least 0 oranges and the number of oranges plucks by each student is distinct. So, total number of plucked oranges should be LESS than 100. But 0+1+2…..+19+20 = 210>200a contradiction.

Thus there exist TWO girls who plucked the same number of oranges. If thus there exist two girls who plucked the same number of oranges. It means each girl of remaining 18 students plucked different number of oranges. Number of oranges Plucked by 18 students = 0+1+2+3…+17 = 153 oranges. Number of oranges plucked by remaining 2 student = 200 – 153 = 47.Both students plucked same number of oranges. So, Number of oranges plucked by one of them = 47/2=24.

5.

Determine the solution for the recurrence relation an = 6an-1−8an-2 provided initial conditions a0=3 and a1=5.(a) an = 4 * 2^n – 3^n(b) an = 3 * 7^n – 5*3^n(c) an = 5 * 7^n(d) an = 3! * 5^nThis question was addressed to me during an interview for a job.This interesting question is from Advanced Counting Techniques in portion Counting of Discrete Mathematics

Answer»

Right choice is (b) an = 3 * 7^n – 5*3^n

For EXPLANATION: The characteristic polynomial is x^2−6x+8. By solving the characteristic equation, x^2−6x+8=0 we GET x=2 and x=4, these are the characteristic roots. Therefore we know that the SOLUTION to the recurrence RELATION has the form an=a*2^n+b*4^n, for some constants a and b. Now, by using the initial conditions a0 and a1 we have: a=7/2 and b=-1/2. Therefore the solution to the recurrence relation is: an = 4 * 2^n – 1*3^n = 7/2 * 2^n – 1/2*3^n.

6.

Determine the value of a2 for the recurrence relation an = 17an-1 + 30n with a0=3.(a) 4387(b) 5484(c) 238(d) 1437I have been asked this question in an online quiz.I need to ask this question from Advanced Counting Techniques in division Counting of Discrete Mathematics

Answer»

Correct choice is (d) 1437

The best explanation: When n=1, a1=17a0+30, Now a2=17a1+30*2. By SUBSTITUTION, we get a2=17(17a0+30)+60. Then REGROUPING the TERMS, we get a2=1437, where a0=3.

7.

What is the solution to the recurrence relation an=5an-1+6an-2?(a) 2n^2(b) 6n(c) (3/2)n(d) n!*3The question was posed to me in final exam.This interesting question is from Advanced Counting Techniques in division Counting of Discrete Mathematics

Answer»

The correct choice is (b) 6N

The best explanation: CHECK for the left side of the equation with all the options into the RECURRENCE RELATION. Then, we GET that 6n is the required solution to the recurrence relation an=5an-1 + 6an-2.

8.

Determine the solution for the recurrence relation bn=8bn-1−12bn-2 with b0=3 and b1=4.(a) 7/2*2^n−1/2*6^n(b) 2/3*7^n-5*4^n(c) 4!*6^n(d) 2/8^nThis question was addressed to me during an internship interview.My question comes from Advanced Counting Techniques in portion Counting of Discrete Mathematics

Answer»

The correct answer is (a) 7/2*2^n−1/2*6^n

The best explanation: Rewrite the recurrence relation bn-8bn-1+12bn-2=0. Now from the characteristic equation: x^2−8x+12=0 we have x: (x−2)(x−6)=0, so x=2 and x=6 are the characteristic roots. Therefore the SOLUTION to the recurrence relation will have the FORM: bn=b2^n+c6^n. To find b and c, set n=0 and n=1 to get a system of TWO equations with two UNKNOWNS: 3=b2^0+c6^0=b+c, and 4=b2^1+c6^1=2b+6c. Solving this system gives c=-1/2 and b=7/2. So the solution to the recurrence relation is, bn=7/2*2^n−1/2*6^n.

9.

The solution to the recurrence relation an=an-1+2n, with initial term a0=2 are _________(a) 4n+7(b) 2(1+n)(c) 3n^2(d) 5*(n+1)/2I got this question in a national level competition.My enquiry is from Advanced Counting Techniques in division Counting of Discrete Mathematics

Answer» RIGHT answer is (B) 2(1+n)

The best EXPLANATION: When n=1, a1=a0+2. By substitution we get, a2=a1+2 ⇒ a2=(a0+2)+2 and so on. So the solution to the recurrence relation, subject to the initial condition should be an=2+2n=2(1+n).
10.

Find the value of a4 for the recurrence relation an=2an-1+3, with a0=6.(a) 320(b) 221(c) 141(d) 65The question was asked in an interview for job.This interesting question is from Advanced Counting Techniques topic in section Counting of Discrete Mathematics

Answer»

The CORRECT ANSWER is (c) 141

Best explanation: When n=1, a1=2a0+3, Now a2=2a1+3. By SUBSTITUTION, we get a2=2(2a0+3)+3.

Regrouping the terms, we get a4=141, where a0=6.

11.

If Sn=4Sn-1+12n, where S0=6 and S1=7, find the solution for the recurrence relation.(a) an=7(2^n)−29/6n6^n(b) an=6(6^n)+6/7n6^n(c) an=6(3^n+1)−5n(d) an=nn−2/6n6^nThis question was addressed to me in quiz.Enquiry is from Advanced Counting Techniques topic in section Counting of Discrete Mathematics

Answer»

The correct OPTION is (b) an=6(6^n)+6/7n6^n

Explanation: The characteristic equation of the recurrence relation is → x^2−4x-12=0

So, (x-6)(x+2)=0. Only the characteristic root is 6. THEREFORE the solution to the recurrence relation will have the form: an=a.6^n+b.n.6^n. To find a and b, set n=0 and n=1 to get a system of TWO equations with two unknowns: 6=a6^0+b.0.6^0=a and 7=a6^1+b.1.6^1=2a+6b. Solving this system gives a=6 and b=6/7. So the solution to the recurrence relation is, an=6(6^n)−6/7n6^n.

12.

What is the recurrence relation for 1, 7, 31, 127, 499?(a) bn+1=5bn-1+3(b) bn=4bn+7!(c) bn=4bn-1+3(d) bn=bn-1+1This question was addressed to me during an interview for a job.The doubt is from Advanced Counting Techniques in section Counting of Discrete Mathematics

Answer» RIGHT option is (c) bn=4bn-1+3

For explanation: Look at the differences between terms: 1, 7, 31, 124,…. and these are growing by a factor of 4. So, 1⋅4=4, 7⋅4=28, 31⋅4=124, and so on. Note that we always END up with 3 less than the next TERM. So, bn=4bn-1+3 is the recurrence RELATION and the initial CONDITION is b0=1.
13.

Determine the solution of the recurrence relationFn=20Fn-1 − 25Fn-2 where F0=4 and F1=14.(a) an = 14*5^n-1(b) an = 7/2*2^n−1/2*6^n(c) an = 7/2*2^n−3/4*6^n+1(d) an = 3*2^n−1/2*3^nThe question was posed to me in an interview for internship.Query is from Advanced Counting Techniques topic in section Counting of Discrete Mathematics

Answer»

Right answer is (b) an = 7/2*2^n−1/2*6^n

For EXPLANATION: The characteristic equation of the recurrence relation is → x^2−20x+36=0

So, (x-2)(x-18)=0. Hence, there are two REAL roots x1=2 and x2=18. Therefore the solution to the recurrence relation will have the FORM: an=a2^n+b18^n. To find a and b, SET n=0 and n=1 to get a system of two equations with two UNKNOWNS: 4=a2^0+b18^0=a+b and 3=a2^1+b6^1=2a+6b. Solving this system gives b=-1/2 and a=7/2. So the solution to the recurrence relation is,

an = 7/2*2^n−1/2*6^n.

14.

Consider the recurrence relation a1=4, an=5n+an-1. The value of a64 is _________(a) 10399(b) 23760(c) 75100(d) 53700The question was asked during an internship interview.I'm obligated to ask this question of Advanced Counting Techniques in portion Counting of Discrete Mathematics

Answer»

The correct option is (a) 10399

The EXPLANATION is: an=5n+an-1

= 5n + 5(n-1) + … + an-2

= 5n + 5(n-1) + 5(n − 2) +…+ a1

= 5n + 5(n-1) + 5(n − 2) +…+ 4 [SINCE, a1=4]

= 5n + 5(n-1) + 5(n − 2) +…+ 5.1 – 1

= 5(n + (n − 1)+…+2 + 1) – 1

= 5 * n(n+1)/ 2 – 1

 an = 5 * n(n+1)/ 2 – 1

Now, n=64 so the answer is a64 = 10399.

15.

The independent term of x is 80000 in the expansion of (3x+b/x)^6, where b is a positive constant. What the value of b?(a) 3.97(b) 6.87(c) 8.3(d) 5.2I have been asked this question by my school principal while I was bunking the class.Enquiry is from Counting topic in division Counting of Discrete Mathematics

Answer»

Correct CHOICE is (d) 5.2

Explanation: By using the BINOMIAL Theorem, the terms are of the form ^6CN * (4x)^6-n * (B/x)^n.

For the term to be independent of x, we need x^6-n(1/x)^n = x^0⇒ x^6-n(x-1)^n = x^0⇒ x^6-nx^-n = x^0 ⇒ 6 – n = n ⇒ 2n = 6 and n = 3. Thus, we have a CONSTANT term of ^6C3 * 3^3 * b^3 = 8000

20 * 27 * b^3 = 80000

540 * b^3 = 80000

b^3 = 148.14 ⇒ b= 5.2.

16.

The last digit of the number ((\(\sqrt{51}\) + 1)^51 – \(\sqrt{51}\) – 1)^51 is _______(a) 32(b) 8(c) 51(d) 1This question was addressed to me in my homework.This is a very interesting question from Counting topic in portion Counting of Discrete Mathematics

Answer»

Correct option is (b) 8

To elaborate: Consider the binomial expansion of (m+1)^71 and (m-1)^71 which gives these two

expressions below respectively: 1) m^51 + ^51C1m^50 + ^51C2m^49 + ^51C3m^48 + … + ^51C50m^1 + ^51C51m^0

2) m^51 – ^51C1m^50 + ^51C2m^49 – ^51C3m^48 + … + ^51C50m^1 – ^51C51m^0 .

By TAKING the difference we have, 2(^51C1m^50 + ^51C3m^48 – ^51C5m^46 + … + ^51C50m^2 – ^51C51m^0 ).

In this case, m = \(\sqrt{51}\) and 2(^51C1m^50 + ^51C3m^48 – ^51C5m^46 + … + ^51C50m^2 – ^51C51m^0 ).

Consider, module 10 on the POWERS(for any NATURAL number n): (51)^n ≡ (51 mod 10^n) ≡ 1 gives 2(^51C1 + ^51C3 + ^51C5 + … + ^51C50 + ^51C51). Now, by ADDING the odd terms of the 51^st row of the Pascal Triangle 2.(\(\frac{1}{2}\) * 2^51) = 2^51 = 2^(51 mod 4) = 2^3 = 8.

17.

Find the coefficient of x^8 in the expansion of (x+2)^11.(a) 640(b) 326(c) 1320(d) 456I had been asked this question in my homework.I would like to ask this question from Counting in portion Counting of Discrete Mathematics

Answer»

Correct ANSWER is (c) 1320

Best EXPLANATION: The coefficient of the 8^th TERM is ^11C8 = 165. HENCE, the 8^th term of the expansion is 165 * 2^3 * x^8 = 1320x^8, where the coefficient is 1320.

18.

Determine the coefficient of the x^5y^7 term in the polynomial expansion of (m+n)^12.(a) 792(b) 439(c) 382(d) 630This question was posed to me in examination.Question is from Counting topic in chapter Counting of Discrete Mathematics

Answer»

Right answer is (a) 792

Best explanation: NOTE that, the “x” in the BINOMIAL has to be CHOSEN 5 times out of 12. Thus, the COEFFICIENT of the term x^5y^7 must be equal to the number of combinations of 5 objects out of 12: ^12C5 = 792.

19.

Determine the independent term of x^7 in the expansion of (3x^2 + 4)^12.(a) 220* 4^6(b) 230(c) 548* 3!(d) 220 * 3^6 * 4^6I got this question in class test.The doubt is from Counting topic in chapter Counting of Discrete Mathematics

Answer»
20.

What is the coefficient of x^9 in the expansion of (x+5)^14?(a) 5! * ^14C6(b) ^14C5(c) 54 * ^14C5(d) 34 * ^11C5I got this question during a job interview.Enquiry is from Counting topic in division Counting of Discrete Mathematics

Answer» RIGHT choice is (c) 54 * ^14C5

Explanation: the binomial theorem is (x+y)^a = Σ ^aCi x^a-i y^i. In order to get the coefficient of x^9, we need to have a-i=9. SINCE a=14, i=5. THUS, the ANSWER is ^aC5 * y^4 = 5^4 * ^14C5.
21.

In a game, a fair coin is tossed 6 times. Each time the coin comes up tails, A will pay Rs. 15 but if each time heads come up, A will pay nothing. Determine the probability that A will win Rs. 45 by playing the game?(a) \(\frac{5}{16}\)(b) \(\frac{4}{31}\)(c) \(\frac{3}{7}\)(d) \(\frac{12}{65}\)I have been asked this question in an online quiz.This intriguing question comes from Counting in portion Counting of Discrete Mathematics

Answer»

The correct option is (a) \(\frac{5}{16}\)

Explanation: By using the binomial distribution, to calculate how LIKELY to win Rs. 45 (or equivalently, the likelihood the coin comes up tails 3 TIMES). The POSSIBLE outcomes of this game are to win Rs. 45. Therefore, the required probability is \(\frac{^6C_3}{26} = \frac{5}{16}\).

22.

How many 4-digit numbers can be formed by using 2, 4, 6, 8, 10, 12 without repetition of digits?(a) 15(b) 42(c) 70(d) 127The question was posed to me in an interview.I'd like to ask this question from Counting in division Counting of Discrete Mathematics

Answer»

The correct OPTION is (a) 15

To explain: Here making a 4-digit NUMBER is equivalent to filling 4 PLACES with 6 numbers. So, the number of ways of filling all the four places is ^6C4 = 15. Hence, the total possible 4-digit numbers from the above 6 numbers are 15.

23.

In how many ways can you select 9 cupcakes from a box containing 17 cupcakes?(a) 42769(b) 45398(c) 24310(d) 36214This question was posed to me at a job interview.My query is from Counting topic in chapter Counting of Discrete Mathematics

Answer»

Correct option is (c) 24310

For EXPLANATION I would SAY: The number of ways to choose 9 CUPCAKES out of a SET of 17 is ^17C9 = \(\frac{17!}{9!(17-9)!}\) = 24,310.

24.

What is the middle term in the expansion of (x/2 + 6y)^8?(a) 45360x^4(b) 34210x^3(c) 1207x^4(d) 3250x^5The question was posed to me in an online interview.Asked question is from Counting topic in portion Counting of Discrete Mathematics

Answer»

The correct CHOICE is (a) 45360x^4

Explanation: We know that in the expansion of (x+y)^n, if n is even then the MIDDLE term is (n/2 + 1)^th term. HENCE, the middle term in the expansion of (x/2 + 6y)^8 is(8/2+1)^th = 5^th term.

Now, assuming that x^5 occurs in the (r+1)^th term of the expansion (x/2+6y)^8, we obtain Tr+1 =^nCrx^n-ry^r = ^8C4(x/2)^4(6y)^4 = 45360x^4.

25.

Calculate the value of ^8C5.(a) 79(b) 43(c) 120(d) 56This question was addressed to me in semester exam.My doubt stems from Counting in division Counting of Discrete Mathematics

Answer»

The correct choice is (d) 56

The explanation is: We can use the formula ^nCk = \(\FRAC{n!}{K!(n-k)!}\) to CALCULATE the value of ^8C5 = \(\frac{8!}{5!(8-5)!}\) = 56.

26.

Determine the 7th term in the expansion of (x-2y)^12.(a) 6128y^7(b) 59136y^6(c) 52632x^6(d) 39861y^5The question was asked in quiz.The origin of the question is Counting in section Counting of Discrete Mathematics

Answer»

The correct answer is (B) 59136y^6

To explain: By assuming that x^7 occurs in the (r+1)^TH TERM of the expansion (x-2Y)^12, we obtain Tr+1 = ^nCra^n-rb^r = ^12C6 x^6 (2y)^6 = 59136y^6.

27.

By the expression \(\left(\frac{x}{3} + \frac{1}{x}\right)^5\), evaluate the middle term in the expression.(a) 10*(x^5)(b) \(\frac{1}{5}*(\frac{x}{4})\)(c) 10*(\(\frac{x}{3}\))(d) 6*(x^3)I got this question in an interview for internship.My question is taken from Counting topic in division Counting of Discrete Mathematics

Answer»

Correct CHOICE is (c) 10*(\(\FRAC{x}{3}\))

To elaborate: By using Binomial THEOREM,the expression \(\left(\frac{x}{3} + \frac{1}{x}\right)^5\) can be expanded as \(\left(\frac{x}{3} + \frac{1}{x}\right)^5 = ^5C_0(\frac{x}{3})^5 + ^5C_1(\frac{x}{3})^4(\frac{1}{x})^1 + ^5C_2(\frac{x}{3})^3(\frac{1}{x})^2\)

\(+ ^5C_3(\frac{x}{3})^2(\frac{1}{x})^3 + ^5C_4(\frac{x}{3})^1(\frac{1}{x})^4 \)

= \((\frac{x}{3})^5 + 5.(\frac{x}{3}) + 10.(\frac{x}{3}) + 10.(\frac{1}{3X}) + 5(\frac{1}{3x^3})\). Hence, the middle term is 10*(\(\frac{x}{3}\)).

28.

Find the coefficient of x^7 in (x+4)^9.(a) 523001(b) 428700(c) 327640(d) 129024This question was addressed to me in an interview.My question is taken from Counting in chapter Counting of Discrete Mathematics

Answer»

Right ANSWER is (d) 129024

To EXPLAIN: It is known that (r+1)^TH TERM, in the binomial expansion of (a+b)^n is given by, Tr+1 = ^nCra^n-rb^r. Assuming that x^7 occurs in the (r+1)^th term of the expansion (x+4)^9, we obtain Tr+1 = 129024x^4.

29.

Evaluate the expression (y+1)^4 – (y-1)^4.(a) 3y^2 + 2y^5(b) 7(y^4 + y^2 + y)(c) 8(y^3 + y^1)(d) y + y^2 + y^3The question was posed to me in an interview for internship.The origin of the question is Counting topic in portion Counting of Discrete Mathematics

Answer»

Right OPTION is (c) 8(y^3 + y^1)

The BEST explanation: By using Binomial theorem,the expression (y+1)^4 – (y-1)^4 can be expanded as = (y+1)^4 = ^4C0y^4 + ^4C1y^3 + ^4C2y^2 + ^4C3y^1 + ^4C4y^0 and (y-1)^4 = ^4C0y^4 – ^4C1y^3 + ^4C2y^2 – ^4C3y^1 + ^4C4y^0. Now, (y+1)^4 – (y-1)^4 = (^4C0y^4 + ^4C1y^3 + ^4C2y^2 + ^4C3y^1 + ^4C4y^0)– (^4C0y^4 – ^4C1y^3 + ^4C2y^2 – ^4C3y^1 + ^4C4y^0) = 2(^4C1y^3 + ^4C3y^1) = 8(y^3 + y^1).

30.

In earlier days, there was a chance to make a telephone call would be of 0.6. Determine the probability when it could make 11 successes in 20 attempts of phone call.(a) 0.2783(b) 0.2013(c) 0.1597(d) 3.8561I had been asked this question during an interview.Question is taken from Counting in division Counting of Discrete Mathematics

Answer»

Right choice is (c) 0.1597

The best I can EXPLAIN: Probability of success p=0.6 and q=0.4. X=success in making a telephone CALL. HENCE, the probability of 11 successes in 20 attempts = P(X=11) = ^20C11(0.6)^11(0.4)^20 – 11 = 0.1597.

31.

Determine the probability when a die is thrown 2 times such that there are no fours and no fives occur?(a) \(\frac{4}{9}\)(b) \(\frac{56}{89}\)(c) \(\frac{13}{46}\)(d) \(\frac{3}{97}\)This question was addressed to me in examination.My question comes from Counting in section Counting of Discrete Mathematics

Answer»

Right OPTION is (a) \(\frac{4}{9}\)

To explain: In this experiment, throwing a die ANYTHING other than a 4 is a success and ROLLING a 4 is failure. SINCE there are two trials, the required probability is

b(2; 2, \(\frac{5}{6}\)) = ^2C2 * (\(\frac{4}{6}\))^2 * (\(\frac{2}{6}\))^0 = \(\frac{4}{9}\).

32.

When a programmer compiles her code there is a 95% chance of finding a bug every time. It takes three hours to rewrite her code when she finds out a bug. Determine the probability such that she will finish her coding by the end of her workday. (Assume, a workday is 7 hours)(a) 0.065(b) 0.344(c) 0.2(d) 3.13The question was posed to me during an interview.I'd like to ask this question from Counting topic in portion Counting of Discrete Mathematics

Answer»

Correct answer is (c) 0.2

For EXPLANATION I would say: A success is a bug-free COMPILATION, and a failure is the finding out of a bug. The PROGRAMMER has 0, 1, 2, or 3 failures and so her probability of FINISHING the program is :Pr(X=0) + Pr(X=1) + Pr(X=2) + Pr(X=3) = (0.95)^0(0.05) + (0.95)^0(0.05) + (0.95)^0(0.05) + (0.95)^0(0.05) = 0.2.

33.

A fair coin is tossed 15 times. Determine the probability in which no heads turned up.(a) 2.549 * 10^-3(b) 0.976(c) 3.051 * 10^-5(d) 5.471I have been asked this question by my college professor while I was bunking the class.This interesting question is from Counting in division Counting of Discrete Mathematics

Answer»

The correct answer is (c) 3.051 * 10^-5

Easiest explanation: ACCORDING to the NULL hypothesis it is a FAIR coin and so in that case the probability of FLIPPING at least 59% tails is = ^15C0(0.5)^15 = 3.051 * 10^-5.

34.

In a blindfolded game, a boy can hit the target 8 times out of 12. If he fired 8 shots, find out the probability of more than 4 hits?(a) 2.530(b) 0.1369(c) 0.5938(d) 3.998This question was addressed to me by my school teacher while I was bunking the class.I want to ask this question from Counting topic in chapter Counting of Discrete Mathematics

Answer» CORRECT option is (c) 0.5938

To explain I would say: Here, n = 8, p = 0.6, q = 0.4. Suppose X = number of HITS x0 = 0 number of hits, x1 = 1 hit, x2 = 2 hits, and so on.

So, (X) = P(x5) + P(x6) + P(x7) + P(x8) = ^8C5(0.6)^5(0.4)^3 + ^8C5(0.6)^6(0.4)^2 + ^8C7(0.6)^7(0.4)^1 + ^8C8(0.6)^8(0.4)^0 = 0.5938.
35.

Determine the average of all four digit numbers that can be made using all the digits 2, 3, 5, 7 and 11 exactly once?(a) 3993(b) 1555(c) 5486(d) 1347The question was posed to me during an interview.The above asked question is from Counting topic in division Counting of Discrete Mathematics

Answer»

Right choice is (b) 1555

Explanation: First we NEED to FIND the sum of all possible numbers and then DIVIDE it by the total such numbers possible to GAIN an average of all the numbers. So, we have (n-1)!(sum of digits)(1111…n times)/n!. Here n = 4. THEREFORE, (5-1)!(2+3+5+7+11)(1111)/5! = 1555.

36.

Determine the number of ways In a single competition a singing couple from 5 boys and 5 girls can be formed so that no girl can sing a song with their respective boy?(a) 123(b) 44(c) 320(d) 21The question was asked in an interview for internship.Question is from Counting topic in section Counting of Discrete Mathematics

Answer»

Correct answer is (B) 44

The best I can explain: This is a case of derangement of 5 boys and 5 girls. The REQUIRED number of ways can be described as D = 5! (1 – \(\FRAC{1}{1!} + \frac{1}{2!} – \frac{1}{3!} + \frac{1}{4!} – \frac{1}{5!}) = 120(\frac{11}{30})\) = 44 ways.

37.

What is the sum of all 6 digit numbers which can be formed using the digits 2, 3, 5, 6 and 9 exactly once?(a) 986546600(b) 25611866(c) 433338798(d) 319999680I had been asked this question in an online quiz.I need to ask this question from Counting topic in chapter Counting of Discrete Mathematics

Answer» RIGHT answer is (d) 319999680

For EXPLANATION: Note that sum of all possible NUMBERS = (n-1)!(sum of the digits involved)(1111…n times), where n is the number of digits. Here n = 6, we have (6-1)!(2+3+5+6+9)(111111) = 5!*(24)*(111111) = 319999680.
38.

A postman can put 12 letters into their respective envelopes such that exactly 5 will go into the right envelope. Find the number of ways of doing this work.(a) 2984300(b) 1610496(c) 5322167(d) 3768650I had been asked this question in homework.I'm obligated to ask this question of Counting topic in portion Counting of Discrete Mathematics

Answer»

Correct choice is (b) 1610496

Explanation: The NUMBER of WAYS in which the 5 correct envelopes can be selected = ^12C5 = 864

Derangement of the REMAINING 7 envelopes & letters = 1864 (derangement value for 7 is 1864)

Total No of ways of arrangement = 1864 * 864 = 1610496.

39.

There are 5 different-colored boxes in a room each with a distinct cover. Find out the number of ways so that these covers can be put on the boxes such that none of the boxes can have right covers on it? (Assume that all the covers must be on the boxes).(a) 208(b) 137(c) 239(d) 24The question was posed to me at a job interview.I'd like to ask this question from Counting in portion Counting of Discrete Mathematics

Answer»

The correct CHOICE is (d) 24

To elaborate: Let the box covers be A, B, C, D and E. The possible ways for the covers to not be in the exact order of A, B, C, D, E are: 4! = 24 ways. (Since correct order i.e., A, B, C, D and E must be ELIMINATED from such arrangements).

40.

Computational complexity of derangements is of __________(a) NP-complete(b) NP-hard(c) NP(d) PThe question was posed to me in unit test.The above asked question is from Counting topic in section Counting of Discrete Mathematics

Answer»

The correct ANSWER is (a) NP-complete

For EXPLANATION: Computational COMPLEXITY of derangements isNP-complete in order to determine whether a given permutation GROUP consists of any derangements or not.

41.

There are 7 groups in a picnic who has brought their own lunch box, and then the 7 lunch box are exchanged within those groups. Determine the number of ways that they can exchange the lunch box such that none of them can get their own.(a) 655(b) 328(c) 1854(d) 3765This question was posed to me in a national level competition.I need to ask this question from Counting topic in section Counting of Discrete Mathematics

Answer»

Correct choice is (c) 1854

For explanation: This can be SOLVED by the derangement formula:

!N = n!(1 – \(\frac{1}{1!} + \frac{1}{2!} – \frac{1}{3!} + … + \frac{(-1)^N1}{n!}\)) ⇒ 7! = 1854.

42.

Farhan has received 9 gifts from 9 different people. In how many ways can Farhan receives the gifts such that no one gives him real gifts?(a) 133496(b) 326654(c) 218744(d) 745331I have been asked this question by my school teacher while I was bunking the class.Asked question is from Counting topic in division Counting of Discrete Mathematics

Answer»

Correct choice is (a) 133496

The BEST explanation: By the derangements formula, the NUMBER of possible derangements should be 9!(\(\frac{1}{0!} – \frac{1}{1!} + … – \frac{1}{9!}\)) = 133496. Hence, there are a total of ways to GIVE the gifts to him such that no one distributes the real gifts.

43.

A nursery teacher has 5 pencil boxes to give out to her five students. Determine the probability that at least one student gets their name tag?(a) \(\frac{19}{30}\)(b) \(\frac{26}{47}\)(c) \(\frac{123}{537}\)(d) \(\frac{12}{79}\)I had been asked this question in an interview for job.I would like to ask this question from Counting in division Counting of Discrete Mathematics

Answer» RIGHT option is (a) \(\frac{19}{30}\)

Best explanation: There are 5!= 120 WAYS to give out the pencil BOXES. By using complementary PROBABILITY, the number of ways where nobody gets their pencil boxes is

5!(\(\frac{1}{0!} – \frac{1}{1!} + … – \frac{1}{5!}\))

= 44. Hence, the required probability is\(\frac{120 – 44}{120} = \frac{19}{30}\).
44.

Determine the number of derangements of (2, 4, 6, 1, 3, 5) that end with integer 2, 4 and 6 in some order?(a) 128(b) 29(c) 54(d) 36The question was asked in semester exam.This interesting question is from Counting topic in section Counting of Discrete Mathematics

Answer»

Correct option is (d) 36

Explanation: The PLACE of 2, 4, 6 is SPECIFIED i.e. each of them will GET their place out of the last 3 places only. So 1, 3, 5 will automatically get one of the places in the first 3 places. This MUST ensure that 2, 4 and 6 occupies one of the last 3 places each and 1, 3 and 5 one of 1st 3 places each. Hence, 1, 3 and 5 can be arranged in 3! ways and 2, 4 and 6 also in 3! Ways. So, no of such derangements = 3! * 3! = 6 * 6 = 36.

45.

Determine all possibilities for the solution set of the system of 2 equations in 3 unknowns that has x1 = 4, x2 = −7, x3 = 0 as a solution.(a) one or finitely many(b) infinite(c) finite(d) zeroI had been asked this question during an internship interview.Question is taken from Counting topic in chapter Counting of Discrete Mathematics

Answer»

Correct choice is (B) infinite

For explanation I WOULD say: Since m1 = 4, x2 = −7, x3 = 0 is a solution of the system, the system is not inconsistent. Thus the only POSSIBILITY is infinitely many SOLUTIONS.

46.

Determine all possibilities for the solution set of a homogeneous system of 5 equations in 4 unknowns and the rank of the system is 3.(a) finite(b) zero or finitely many(c) only one(d) infiniteThis question was posed to me during an online exam.This is a very interesting question from Counting topic in portion Counting of Discrete Mathematics

Answer»

Right option is (d) infinite

Best explanation: A homogeneous system is consistent. The rank is R = 3 and the number of variables is n = 4. Hence there is n – r = 1 FREE variable. THUS there are infinitely many solutions.

47.

Determine all possibilities for the solution set of a homogeneous system that has y1 = 5, y2 = −3, y3 = 2 as a solution.(a) one(b) finitely many(c) infinitely many(d) either one or infinitely manyThis question was posed to me in an online quiz.I'd like to ask this question from Counting topic in portion Counting of Discrete Mathematics

Answer»

The CORRECT option is (c) infinitely MANY

Explanation: The possibilities for the solution SET for any homogeneous system is either a unique solution or infinitely many solutions. Since the homogeneous system has the zero solution and y1 = 5, y2 = −3, Y3 = 2 is another solution, it has at least two distinct solution. Thus the only possibility is infinitely many solutions.

48.

Determine all possibilities for the solution set of the homogeneous system of 5 equations in 3 unknowns and the rank of the system is 3.(a) more than two(b) only one(c) zero(d) infiniteThis question was addressed to me by my school principal while I was bunking the class.My enquiry is from Counting topic in chapter Counting of Discrete Mathematics

Answer»

Right answer is (c) zero

The best I can EXPLAIN: Since the rank of this homogeneous system(which is ALWAYS consistent) and the number of UNKNOWNS are equal, the only possible solution is zero and it is a UNIQUE solution.

49.

Determine all possibilities for the solution set of the homogeneous system that has y1 = 6, y2 = −4, y3 = 0 as a solution.(a) zero(b) infinitely many(c) finitely many(d) only oneI have been asked this question in unit test.This question is from Counting topic in chapter Counting of Discrete Mathematics

Answer»

The CORRECT OPTION is (B) INFINITELY many

Explanation: SINCE m

50.

Determine all possibilities for the number of solutions of the system of 7 equations in 5 unknowns and it has x1 = 0, x2 = −6, and x3 = 4 as a solution.(a) unique or infinitely many(b) unique(c) finitely many(d) zeroI got this question during an internship interview.The question is from Counting topic in section Counting of Discrete Mathematics

Answer» CORRECT answer is (a) UNIQUE or infinitely many

Explanation: Let i be the number of equations and j be the number of unknowns in the given system. Since i> j, the system has at least one SOLUTION x1 = 0, x2 = −6, and x3 = 4 and so it is consistent. Thus, it results in either a unique solution or infinitely many solutions.