document.write( "Question 1194824: A man has a total of n friends; he wants to invite three of them for dinner every day during the first 4 months of the year 2023. Calculate the minimum number of friends , n, he must have if he does not want to invite the same combination of three friends more than once? \n" ); document.write( "
Algebra.Com's Answer #827094 by math_tutor2020(3817)![]() ![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "If we look at a calendar of 2023, then we'd find that:
\n" ); document.write( " \n" ); document.write( "\n" ); document.write( "This must mean that there must be 120 or more combinations of three friends to invite friends over.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Recall that the nCr combinations can be found in Pascal's Triangle.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Go to this page here (or wherever your favorite resource is to look up Pascal's Triangle) \n" ); document.write( "https://www.mathsisfun.com/pascals-triangle.html \n" ); document.write( "Scroll down until you reach the section titled \"The First 15 Lines\". \n" ); document.write( "You'll find a pretty massive triangle.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Looking through that triangle shows that 120 is buried inside it. \n" ); document.write( "It's found on the row that has 1, 10, 45, 120, ...\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The second item of this row is the value of n we're after.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "You should find that if n = 10 and r = 3, then nCr = 10C3 = 120\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Scratch work: \n" ); document.write( "nCr = (n!)/(r!*(n-r)!) \n" ); document.write( "10C3 = (10!)/(3!*(10-3)!) \n" ); document.write( "10C3 = (10*9*8*7!)/(3!*7!) \n" ); document.write( "10C3 = (10*9*8)/(3!) \n" ); document.write( "10C3 = (10*9*8)/(3*2*1) \n" ); document.write( "10C3 = 720/6 \n" ); document.write( "10C3 = 120\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "If the man has n = 10 friends, then he has 120 different trios of friends to invite over. \n" ); document.write( "This ensures that he has a different trio on every night for the first four months of 2023.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Keep in mind that repeated friends can be allowed (i.e. the same friend invited on multiple nights), just not repeated trios. \n" ); document.write( "For instance, let's say the man has ten friends with code names A,B,C,D,E,F,G,H,I,J \n" ); document.write( "One group to invite over is {A,B,C} for night one, then on night #2 could be the group {A,C,D} \n" ); document.write( "The group {A,C,B} is a repeat of the first trio, so it's not allowed. \n" ); document.write( "Order doesn't matter within any group.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "If n > 10, then he'll have more possible trios. \n" ); document.write( "Therefore, n = 10 is the smallest possible value of n.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Answer: 10 friends. \n" ); document.write( " \n" ); document.write( " |