document.write( "Question 967782: The tennis court in the college is rectangular in shape of size n*m metres. We need to pave the court with square stones. The square stone is of size a*a.\r
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( "What is the least number of stones needed to pave the tennis court? It's allowed to cover the surface larger than the Tennis Court, but the court has to be covered. It's not allowed to break the stones. The sides of stones should be parallel to the sides of the court. \n" );
document.write( "
Algebra.Com's Answer #591508 by Theo(13342)![]() ![]() You can put this solution on YOUR website! i would think r(n/a) * r(m/a) would cover the court with the minimum number of tiles.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "r is a function that rounds n/a up to the next highest integer.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "for example:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "assume the court is 5 by 7. \n" ); document.write( "small numbers, but easier to analyze. \n" ); document.write( "suppose the squares are 2 by 2.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "5/2 = 2.5 which would be rounded up to 3. \n" ); document.write( "7/2 = 3.5 which would be rounded up to 4.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "total squares required would be 3 * 4 = 12.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "i don't think you could get away with less than that since you have to cover both the length and the width.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "here's a picture of what i mean.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " ![]() \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |