document.write( "Question 1143327: John is doing a push-up challenge. On day one he does three pushups. Each day after the first John will do 10 push-ups per day. Write a function p(d) for the number of pushups John will do on day d. \n" ); document.write( "
Algebra.Com's Answer #764121 by Theo(13342)![]() ![]() You can put this solution on YOUR website! on day 1, he does 3 pushups. \n" ); document.write( "on every day after day 1, he does 10 pushups. \n" ); document.write( "the general form of the linear equation for this is y = mx + b \n" ); document.write( "when x = 1, y = 3 \n" ); document.write( "when x = 2, y = 13 \n" ); document.write( "the slope of the equation is equal to m which is equal to (13 - 3) / (2 - 1) = 10 / 1 = 10 \n" ); document.write( "the equation becomes y = 10x + b \n" ); document.write( "to find the value of b, use one of the points on the line. \n" ); document.write( "the point i used is the point equal to (1,3). \n" ); document.write( "the equation becomes 3 = 10 * 1 + b \n" ); document.write( "solve for b to get b = -7. \n" ); document.write( "the equation becomes y = 10x - 7. \n" ); document.write( "when x = 1, y = 3 \n" ); document.write( "when x = 2, y = 13 \n" ); document.write( "when x = 3, y = 23 \n" ); document.write( "the equation satisfies the requirements when x represents the number of days that the pushups are done.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "you could also look at this as an arithmetic progression problem. \n" ); document.write( "when viewed that way, you get \n" ); document.write( "A1 = 3 \n" ); document.write( "An = 3 + (n-1) * d \n" ); document.write( "d = 10 \n" ); document.write( "formula becomes An = 3 + (n-1) * d \n" ); document.write( "when n = 1, A1 = 3 + 0 * 10 = 3 \n" ); document.write( "when n = 2, A2 = 3 + 1 * 10 = 13 \n" ); document.write( "when n = 3, A3 = 3 + 2 * 10 = 23 \n" ); document.write( "etc.\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( " |