document.write( "Question 286268: i need to write a function for the following data.
\n" );
document.write( "(0,2)(1,0)(2,0)(3,2)(4,6) \n" );
document.write( "
Algebra.Com's Answer #207633 by oberobic(2304)![]() ![]() ![]() You can put this solution on YOUR website! A good way to start is a scatter plot to see how the data points are distributed. \n" ); document.write( ". \n" ); document.write( " \n" ); document.write( ". \n" ); document.write( "That looks like a parabola, so you're trying to fit a set of points to a quadratic equation. \n" ); document.write( ". \n" ); document.write( "y = x^2 \n" ); document.write( ". \n" ); document.write( "But we can see the graph needs to be shifted to the right by about 3/2 and it needs to drop by about -1/3. \n" ); document.write( ". \n" ); document.write( "So it looks like: \n" ); document.write( ". \n" ); document.write( "y = (x-3/2)^2 - 1/3 \n" ); document.write( ". \n" ); document.write( "Graphing we find. \n" ); document.write( ". \n" ); document.write( " \n" ); document.write( ". \n" ); document.write( "Looks like a pretty good fit to me... \n" ); document.write( ". \n" ); document.write( "Done. \n" ); document.write( " |