edited by
732 views
5 votes
5 votes

The school athletics coach has to choose $4$ students for the relay team. He calculates that there are $3876$ ways of choosing the team if the order in which the runners are placed is not considered. How many ways are there of choosing the team if the order of the runners is to be taken into account?

  1. Between $12,000$ and $25,000$
  2. Between $75,000$ and $99,999$
  3. Between $30,000$ and $60,000$
  4. More than $100,000$
edited by

3 Answers

3 votes
3 votes

Here are 3876 ways of choosing the team if the order in which the runners are placed is not considered.

Now No ways are there of choosing the team if the order of the runners is to be taken into account

Since here are 4 student they can be chosen in 4!=24 for the relay team.

So total No way in which order of the runners is to be taken into account

24*3876=93024

So it will be between Between 75,000 and 99,999.

0 votes
0 votes

Let us assume there are n students in the class.

Number of ways to choose a team of 4 members if the order in which the runners are placed is not considered =$\binom{n}{4}$.

=3876

Number of ways to choose a team of 4 members if the order in which the runners are placed is considered=n P 4 =$\binom{n}{4}$ *4!

=3876*24=93024.

Hence it will be between Between 75,000 and 99,999

 

Answer:

Related questions

13 votes
13 votes
5 answers
4
go_editor asked May 27, 2016
5,620 views
How many times is the comparison $i \geq n$ performed in the following program?int i=85, n=5; main() { while (i >= n) { i=i-1; n=n+1; } }$40$$41$$42$$43$