document.write( "Question 40642This question is from textbook
\n" );
document.write( ": a designer, attempting to arrange the charaters of his artwork in the form of a grid with equal number of rows and columns, found that 24 characters were left out. When he tried to add one more row and column, he found that he was short of 25 characters. Can you find the number of characters used by the designer?
\n" );
document.write( "isbn 0-321-23383-2, fourth edition \n" );
document.write( "
Algebra.Com's Answer #26153 by rajagopalan(174)![]() ![]() You can put this solution on YOUR website! Let the original grid size = n \n" ); document.write( "No of charcters = (n*n)+24 \n" ); document.write( "If one row & one colmn are increased grid size = n+1 \n" ); document.write( "No of Characters = (n+1)*(n+1)- 25\r \n" ); document.write( "\n" ); document.write( "equating n^2+24 = ((n+1)^2)-25 \n" ); document.write( "we find \n" ); document.write( "n^2+24 = n^2+2n+1-25 \n" ); document.write( "24+25 = 2n+1 \n" ); document.write( "49-1 = 2n \n" ); document.write( "24 = n\r \n" ); document.write( "\n" ); document.write( "No of characters = n^2+24 = 576+24 = 600 \n" ); document.write( "cheers \n" ); document.write( " |