My study group is lost on this one also..

Suppose you are managing 25 employees, and you need to form three teams to work on three different projects.

Assume that all employees will work on exactly one team. Also, each employee has the same qualifications/skills, so any employee can serve on any team.

The number of employees on each project are as follows: 8 on Team A, 3 on Team B, and 14 on Team C

(a) How many ways can Team A be selected from the available employees?

(b) Then, how many ways can Team B be selected from the remaining available employees?

(c) Then, how many ways can Team C be selected from the remaining available employees?

(d) Then, how many ways can all teams be selected?

(e) What is the probability that three workers randomly selected from all employees will all be from team A?

We know it's something like this but we don't know how to calculate it.

1. number of team A = C(25,8)
2. number of team B = C(17,3)
3. number of team C = C(14,14)
4. multiply them
5. C(22,5) x C(17,3) x C(14,14) / (answer to 4)

C(25,8)meaning choosing 8 people from a group of 25 but that's where we are lost because we don't know how to do that part.

any help..?

I had answered this question here

http://www.jiskha.com/display.cgi?id=1292393115

The notation C(n,r) is essential to the type of question you asked
by definition it is equal to n!/((n-r)!r!)

so for something like C(5,2)
it would be 5!/(3!2!) = 5x4x3x2x1/(2x1x3x2x1)
notice we can cancel
= 5x4/(2x1) = 20/2 = 10

you should have a key on your calculator that does this,
often it is called n C r
to do C(5,2)
enter 5
press 2nd n C r
press 2
press =
you should get 10

for your C(25,8) it means choose 8 people from 25.
Your are dealing with combinations, where the order in which the people are chosen does not matter.
See if you can make out the different answers I gave you and how they match up with the question.

e.g. for e), since we know 3 definite people are in the group we only need 5 more for team A, but the choice for that is from the other 22 available.
that leaves 17, and we need 3 of those for team B
finally leaving the remaining 14 to form team C

good luck

Sure, I can help explain how to calculate those values using combinations.

In general, the formula for combinations (denoted as C(n, r)) is used when you want to select a certain number of items from a larger set without regard to the order in which they are selected.

To calculate the value of C(n, r), you can use the formula:

C(n, r) = n! / (r!(n - r)!)

where n is the total number of items in the set, and r is the number of items you want to select.

Let's go through each part of your question:

(a) To calculate the number of ways Team A can be selected, you need to find C(25, 8) because you want to select 8 employees from a group of 25. Using the formula, you can calculate it as:

C(25, 8) = 25! / (8!(25 - 8)!).

(b) Next, to calculate the number of ways Team B can be selected from the remaining available employees, you need to find C(17, 3) because you want to select 3 employees from the remaining 17 employees after selecting Team A. Using the formula, you can calculate it as:

C(17, 3) = 17! / (3!(17 - 3)!).

(c) Similarly, to calculate the number of ways Team C can be selected from the remaining available employees, you need to find C(14, 14) because you want to select all 14 employees for Team C from the remaining available employees after selecting Teams A and B. Using the formula, you can calculate it as:

C(14, 14) = 14! / (14!(14 - 14)!).

(d) To find the total number of ways all teams can be selected, you need to multiply the values obtained in parts (a), (b), and (c):

Total ways = C(25, 8) * C(17, 3) * C(14, 14).

(e) Finally, to calculate the probability of randomly selecting three workers who are all from Team A, you need to divide the number of ways this can occur by the total number of ways all teams can be selected.

Using the formula, you can calculate it as:

Probability = C(8, 3) / [C(25, 8) * C(17, 3) * C(14, 14)]

Where C(8, 3) represents the number of ways to select 3 employees from Team A, which is the equivalent of selecting three employees from a group of eight.

I hope this explanation helps you understand how to calculate each part using combinations.