How many Distinct Ways are there to rearrange ALL the letters in ... (Permutations with Repetition)

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ก.ย. 2024
  • How many ways are there to rearrange all of the letters in SWITCH?
    in CANADA? in BANANA? in MATHEMATICS? in TORONTO?
    * Take the factorial of the number of letters in the word
    * DIVIDE by the factorial of all doubles, triples etc. individually.

ความคิดเห็น • 11

  • @yashasvasharma4689
    @yashasvasharma4689 2 ปีที่แล้ว +3

    This was incredibly helpful thank you, Must watch!!!

  • @badtzm
    @badtzm 2 ปีที่แล้ว +2

    this was so incredibly helpful thank you!!

  • @mariyogesh827
    @mariyogesh827 23 วันที่ผ่านมา

    Thank you so much

  • @cheetodust8576
    @cheetodust8576 ปีที่แล้ว +1

    Thank you for this!

  • @aadityakiran_s
    @aadityakiran_s ปีที่แล้ว

    Hey, so how do you find out the total possible ways to arrange a 3 letter word form the letters of the word CANADA?

    • @mroldridge
      @mroldridge  11 หลายเดือนก่อน +1

      You’re going to have to break that into cases.
      Case 1: No A’s (3! = 6)
      Case 2: One A (3C2 x 3! = 18)
      Case 3: Two A’s (3C1 x 3!/2! = 9)
      Case 4: Three A’s (3!/3! = 1)
      Then add all those up, 6+18+9+1= 34

    • @aadityakiran_s
      @aadityakiran_s 11 หลายเดือนก่อน

      Oh, so if there were multiple repeated letters, then this would become quite complicated huh? I was trying to solve this programmatically, I suppose there's no general formula. Thanks for the info. @@mroldridge

    • @huyanhle
      @huyanhle 10 หลายเดือนก่อน

      @@aadityakiran_s
      CANADA = 6 letters. A = 3 letters . CND = 3 letters
      Case 1: NO "A" at all in 3 letter word ==> CND = 3 letters to be put into 3 places and no repetition of letters ==> 3 x 2 x 1 = 3! = 6
      Case 2: One "A" in 3 letter word ==> ACND = 4 letters (Note: A = 3 letters) ==> 3 (for 3 "A") x 3 x 2 = 18
      Case 3: Two "A" in 3 letter word ==> AACND = 5 letters (Note: A = 3 letters). Also note repetition of 2 "A" need to be cancelled out by 2! ==> 3 (for 3 "A") x 3 x 2 / 2! = 9
      Case 4: Three "A" in 3 letter word ==> AAACND = 6 letters (Note: A = 3 letters). Also note repetition of 3 "A" need to be cancelled out by 3! ==> 3 x 2 x 1 / 3! = 1
      ==> Answer = 6 + 18 + 9 + 1= 34

  • @GodSahil
    @GodSahil 11 หลายเดือนก่อน

    b-but how does the multiplication principle work?

    • @loveelyy8348
      @loveelyy8348 7 หลายเดือนก่อน

      be more specific pls

    • @GodSahil
      @GodSahil 7 หลายเดือนก่อน

      @@loveelyy8348 is there any derivation of this