document.write( "Question 1194870: A man has a total of n friends, he want to invite three of them for the 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 #827152 by shlomitg(8)\"\" \"About 
You can put this solution on YOUR website!
In the first 4 months of 2023 we have 120 days. We want to have at least 120 groups of 3 guests, so each group is invited only once.
\n" ); document.write( "The number of groups formed with 3 friends out of n, is n over 3 which equals:
\n" ); document.write( "n!/[3!(n-3)!]= n*(n-1)*n(-2)/6\r
\n" ); document.write( "\n" ); document.write( "we request that
\n" ); document.write( "n*(n-1)*n(-2)/6>=120
\n" ); document.write( "10*9*8=720 therefore n=10
\n" ); document.write( "
\n" );