x,y=var("x,y")
x0=-10
y0=-6
punto=point((x0,y0), color="red", size="22")
R=10
campo_vec=plot_slope_field(y,(x,x0-R,x0+R), (y,y0-R,y0+R),headaxislength=3, headlength=3)
f=function("f")(x)
diffeq = diff(f,x)==f
show(diffeq)
f(x)=desolve(diffeq, [f,x], [x0,y0])
show(f(x))
curva_sol=plot(f, (x,x0-R,x0+R), color="blue")
(campo_vec+curva_sol+punto).show(ymin = y0-R, ymax = y0+R)