Compute tangent equations from entered functions confidently. Review slope, intercept, derivative estimate, and plotted curve. Save neat outputs for study, checking, reporting, and reuse.
| Function | x0 | f(x0) | Slope | Tangent line |
|---|---|---|---|---|
| x^2 + 3*x + 1 | 2 | 11 | 7 | y = 7x - 3 |
| sin(x) | 0 | 0 | 1 | y = x |
| x^3 - 2*x + 1 | 2 | 5 | 10 | y = 10x - 15 |
This calculator estimates the derivative numerically with the central difference method:
m ≈ [f(x0 + h) - f(x0 - h)] / (2h)
After finding the slope, it builds the tangent line through the point (x0, f(x0)):
y - f(x0) = m(x - x0)
It also calculates the slope-intercept form using b = f(x0) - m x0.
A tangent line touches a curve at one chosen point and shares the same instantaneous slope there. It gives the best local linear description near that point.
The slope is the derivative value at x0. It shows how fast the function is changing at that exact point and determines the tilt of the tangent line.
The value h sets the tiny step used in the central difference estimate. A small h usually improves the slope estimate, but an extremely small value may increase rounding noise.
Yes. You can use sin, cos, tan, asin, acos, and atan. Angles are interpreted in radians, which matches standard calculus and programming conventions.
If the function or its nearby values are undefined, the calculator will show an error. A tangent line needs a valid point and a usable local slope estimate.
Gaps appear when the function is undefined for some x-values inside the selected range. Common examples include division by zero, square roots of negatives, or invalid logarithms.
The result includes point-slope form, slope-intercept form, standard form, and a linear approximation. These forms help with checking, teaching, and further algebra steps.
The exports include the main tangent line results. The CSV also includes graph sample data, while the PDF captures the summary values and the plotted graph.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.