document.write( "Question 563661: if i have to pick two numbers from 1 to 10, provided the first number can't be greater than the second number. How many possible way I can represent the two number. Please suggest the formula to use?
\n" );
document.write( "E.g.
\n" );
document.write( "12 - valid
\n" );
document.write( "21 - not valid \n" );
document.write( "
Algebra.Com's Answer #364979 by josmiceli(19441)![]() ![]() You can put this solution on YOUR website! If the 1st number is 1, the 2nd can be 2-10 \n" ); document.write( "If the 1st number is 2, the 2nd can be 3-10 \n" ); document.write( "If the 1st number is 3, the 2nd can be 4-10 \n" ); document.write( "----------- \n" ); document.write( "This progression is \n" ); document.write( " \n" ); document.write( "------------- \n" ); document.write( "A formula would be if you can choose numbers \n" ); document.write( "from 1 to n, then the possible arrangements of 2 numbers \n" ); document.write( "the 1st being smaller than the 2nd \n" ); document.write( "is (n-1) + (n-2) + (n-3) + . . . + 1 \n" ); document.write( "This sum is \n" ); document.write( "check: \n" ); document.write( "for 1 to 10, \n" ); document.write( " \n" ); document.write( "OK\r \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " \n" ); document.write( " |