document.write( "Question 347844: Here is the problem I am trying to solve: The square of a positive number is six more than five times the positive number. Find the number.\r
\n" );
document.write( "\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #248694 by mananth(16946)![]() ![]() You can put this solution on YOUR website! let the number be x \n" ); document.write( "x^2 =5x+6 \n" ); document.write( "x^2-5x-6=0 \n" ); document.write( "x^2-6x+x-6=0 \n" ); document.write( "x(x-6)+1(x-6)=0 \n" ); document.write( "(x-6)(x+1) \n" ); document.write( "x=6 OR -1 \n" ); document.write( " |