Question

5. ABC-Free Permutations Consider permutations of the 26-character lowercase alphabet Σ={a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}. In how many of these...

5. ABC-Free Permutations

Consider permutations of the 26-character lowercase alphabet

Σ={a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}.

  1. In how many of these permutations do a,b,c occur consecutively and in that order?
  2. In how many of these permutations does a appear before b and b appear before c?

Homework Answers

Answer #1

Σ={a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}
(a) a,b,c occur consecutively and in that order
consider abc as one character therefore we have total character = 26-3+1 = 24
Permutation = 24!

(b) a appear before b and b appear before c
Select any three places for a, b and c. They need no arrangement amongst themselves as a would always come before b and b would always come before c.
The remaining (26-3) = 23 character have to be arranged in 23 places.
Thus, 26C3 x 23! = 26! / 3!

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Consider permutations of the 26-character lowercase alphabet Σ={a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}. In how many of these permutations do a,b,c...
Consider permutations of the 26-character lowercase alphabet Σ={a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}. In how many of these permutations do a,b,c occur consecutively and in that order? In how many of these permutations does a appear before b and b appear before c?
i) F o r t h e f o l l o w I n g...
i) F o r t h e f o l l o w I n g f i n d t h e ( c o m p. E x p.) f o u r I e r s e r i e s f o r x( t ) I I ) D r a w t h e am p &. P h a s e s p e c t r a I I I ) T...
Ciphertext WHKCJILXI was encrypted by affine cipher C = A*P + 8 (mod 26), where parameter...
Ciphertext WHKCJILXI was encrypted by affine cipher C = A*P + 8 (mod 26), where parameter A is uknown. You have a following additional information: plaintext letter L was encrypted by letter H. Find A and decrypt the message. You can use applet for decryption. For your convenience, below are numeric values of ENGLISH letters: A=0 B=1 C=2 D=3 E=4 F=5 G=6 H=7 I=8 J=9 K=10 L=11 M=12 N=13 O=14 P=15 Q=16 R=17 S=18 T=19 U=20 V=21 W=22 X=23 Y=24...
Use python language please #One of the early common methods for encrypting text was the #Playfair...
Use python language please #One of the early common methods for encrypting text was the #Playfair cipher. You can read more about the Playfair cipher #here: https://en.wikipedia.org/wiki/Playfair_cipher # #The Playfair cipher starts with a 5x5 matrix of letters, #such as this one: # # D A V I O # Y N E R B # C F G H K # L M P Q S # T U W X Z # #To fit the 26-letter alphabet into...