document.write( "Question 211738: given the function f(x)= 3 abs(x-6) calculate the following values\r
\n" );
document.write( "\n" );
document.write( "1.) f(x+1)
\n" );
document.write( "2.) f(x^2+2) \n" );
document.write( "
Algebra.Com's Answer #159985 by Theo(13342)![]() ![]() You can put this solution on YOUR website! f(x) = 3*abs(x-6) \n" ); document.write( "----- \n" ); document.write( "f(x+1) = 3*abs((x+1)-6) \n" ); document.write( "This becomes: \n" ); document.write( "f(x+1) = 3*abs(x-5) \n" ); document.write( "----- \n" ); document.write( "f(x^2+2) = 3*abs((x^2+2)-6) \n" ); document.write( "This becomes: \n" ); document.write( "f(x^2+2) = 3*abs(x^2-4) \n" ); document.write( "----- \n" ); document.write( "in the first case, you replaced x with (x+1) in the equation. \n" ); document.write( "in the second case, you replaced x with (x^2+2) in the equation. \n" ); document.write( "----- \n" ); document.write( " \n" ); document.write( " |