Question 173840
Choose some x values.
Find the f(x) values.
Plot the points.
Connect the points with a smooth curve.
Let's choose a range from x=-3 to x=3 because the cubic function grows quickly.
{{{f(-3)=(-3)^3=-27}}}
{{{f(-2)=(-2)^3=-8}}}
{{{f(-1)=(-1)^3=-1}}}
{{{f(0)=(0)^3=0}}}
{{{f(1)=(1)^3=1}}}
{{{f(2)=(2)^3=8}}}
{{{f(3)=(3)^3=27}}}
{{{drawing( 300, 300, -4, 4, -40, 40,grid( 1 ),
graph( 300, 300, -4, 4, -40, 40, x^3), 
circle( -3, -27, .1 ),circle( -2, -8, .1 ),
circle( -1, -1, .1 ),
circle( 0, 0, .1 ),
circle( 1, 1, .1 ),
circle( 2, 8, .1 ),
circle( 3, 27, .1 )
)}}}