How can I find the tangent at the point $(2,8)$ to the curve $y=x^2+4$ on Mathematica?
How can I show the tangent of the curve at the point and I need to mark the point where they meet with the word "FunOne"
f[x_] := x^2+4
p = Plot[f[x], {x, 2, 8}, PlotRange -> 50]
Epilog -> Inset["FunOne", {x0, f[x0]}, {-1.2, Center}]– cvgmt Nov 09 '20 at 01:55Epilog -> Inset["FunOne", {x0, f[x0]}, {Automatic, Top}]– cvgmt Nov 09 '20 at 01:57