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)\"\" \"About 
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( "\"+9+%2B+8+%2B+7+%2B+6+%2B+5+%2B+4+%2B+3+%2B+2+%2B+1+=+45+\"
\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 \"+%281%2F2%29%2An%2A%28n-1%29+\"
\n" ); document.write( "check:
\n" ); document.write( "for 1 to 10, \"+%281%2F2%29%2A10%2A9+=+90%2F2+\"
\n" ); document.write( "\"+90%2F2+=+45+\"
\n" ); document.write( "OK\r
\n" ); document.write( "\n" ); document.write( "
\n" ); document.write( "
\n" ); document.write( "
\n" );