document.write( "Question 204697: There N stations on a railroad.
\n" );
document.write( "After adding X stations on the rail route 46 additional tickets have to be printed.
\n" );
document.write( "Find N and X. \n" );
document.write( "
Algebra.Com's Answer #154559 by scott8148(6628)![]() ![]() You can put this solution on YOUR website! each PAIR of stations means a PAIR of tickets (A to B and B to A)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "2(old stations)(new stations) + 2(new stations)(new stations - 1) = 46\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "(N * X) + (X * (X - 1)) = 23\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "factoring ___ X (N + X - 1) = 23\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "23 is a prime number with only two factors, 1 and 23\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "so N = 23 and X = 1 \n" ); document.write( " |