Question 366220
How to draw quadratic functions?
Like where to plot the points on a graph. 
Example: y= (x-3)^2
------
Plot a few points and draw a smooth curve thru them:
If x = 1, y = (1-3)^2 = 4
If x = 2, y = (2-3)^2 = 1
If x = 3, y = (3-3)^2 = 0
If x = 4, y = (4-3)^2 = 1
If x = 5, y = (5-3)^2 = 4
-------
{{{graph(400,300,-10,10,-10,10,(x-3)^2)}}}
==============
Cheers,
Stan H.