document.write( "Question 2608: A toy store sells two sizes of circular dartboards. The larger of the two has a radius that is 3 inches greater than that of the other. The radius of the smaller darboard is t inches. Find a polynomial that represents the difference in area between the two dartboards. \n" ); document.write( "
Algebra.Com's Answer #1149 by kiru_khandelwal(79)![]() ![]() ![]() You can put this solution on YOUR website! Let the radius of the smalled dartboard be t \n" ); document.write( "Then the area of the dartboard will be pi*t^2 \n" ); document.write( "as the area of the circle is pi*r^2\r \n" ); document.write( "\n" ); document.write( "Radius of the bigger dartboard will be (t+3) \n" ); document.write( "so area will be pi*(t+3)^2\r \n" ); document.write( "\n" ); document.write( "Difference in area of two dartbaords will be \n" ); document.write( "pi*(t+3)^2 - pi*t^2 \n" ); document.write( "=> pi(t^2 + 6t + 9 -t^2) \n" ); document.write( "=> pi(6t+9) \n" ); document.write( "=> 3pi(2t+3) \n" ); document.write( " |