Putting the results of a function as text into a plot
How can I put the results of functions into a plot? I can't find any examples.
f(x) = x/33.82
plotEquation = plot(f(x), -1, 70)
equationDifferential = f.diff()(x)
big_image = plotEquation
# big_image = plotEquation + SOME CODE THAT PUTS THE RESULT OF f.diff()(x) in the plot.
big_image.show()