Calculating Permutations: Understanding the Concept and Solving Examples

  • Thread starter Thread starter n00neimp0rtnt
  • Start date Start date
  • Tags Tags
    Disc Permutations
AI Thread Summary
The discussion focuses on calculating permutations and combinations in specific scenarios. For the string "ABC" within the letters ABCDEFGH, treating "ABC" as a single block allows for 6 blocks total, leading to 6! permutations, which equals 720. A follow-up problem involves forming a committee of six members with more women than men from a group of 10 men and 15 women, requiring a combination approach. The valid committee configurations are identified as having 4 women and 2 men, 5 women and 1 man, or 6 women. The correct solution involves calculating combinations for each scenario and summing them for the final answer.
n00neimp0rtnt
Messages
15
Reaction score
0
How many permutations of the letters ABCDEFGH contain the string ABC?

This is an example problem in my book, and the answer is 6! = 720. Could someone please explain to me the reasoning behind this (my book does a poor job explaining)? And would this reasoning apply if the string to be found was, say, just AB?
 
Physics news on Phys.org
Since ABC has appear just like that you can treat ABC as an indivisible block just like the other letters so that you have ABC, D, E, F, G and H, i.e. 6 blocks in all to find permutations for, which is 6! = 720.
 
OK, I see now. Thank you. Here's another problem I'm stuck on:

A department contains 10 men and 15 women. How many ways are there to form a committee with six members if it must have more women than men?

What I figure out so far is that this would be a combination, not a permutation. If gender was not a concern, it could just simply be C(25, 6). Since there must be MORE women than men, there are gender possibilities: WWWWWW, WWWWWM, WWWWMM. At first glance, it looks like you might be able to just half the amount of answers, but the amount of women and men are not equal. I tried an approach like this:

C(10, 2) + C(10, 1) + C(13, 4) + C(13, 5) + C(13, 6)

but I'm not sure if this is correct.*C(n, r) = n!/(r!*(n-r)!)
this is the combination theorem for number of r-combinations of a set with n elements.
 
Given the restrictions, the committee must fall into one of three types:
4 women, 2 men
5 women, 1 man
6 women.
Find the number of combinations for each of the three committee arrangements and add them.
 

Similar threads

Back
Top