First time here? Check out the FAQ!
answered 2015-07-19 22:30:25 +0100
f(x) = (x-2)^2-9 P = [(x0,f(x0)) for x0 in [-2..6]] G = plot(f,-2,6) G += points(P) for p in P: G += text(' (%s,%s)'%(p[0],p[1]),p,horizontal_alignment='left',color='red') G.show()