Tangent and Normal to a Curve — How to Find Equations Step by Step

medium CBSE JEE-MAIN 3 min read

Question

Given a curve y=f(x)y = f(x) and a point on it, how do we find the equations of the tangent and the normal?


Solution — Step by Step

The slope of the tangent at any point (x0,y0)(x_0, y_0) on the curve y=f(x)y = f(x) is:

mtangent=dydxx=x0m_{\text{tangent}} = \left.\frac{dy}{dx}\right|_{x = x_0}

Differentiate f(x)f(x), then substitute x=x0x = x_0 to get the numerical slope.

Example: For y=x33x+2y = x^3 - 3x + 2 at x=1x = 1:

dydx=3x23\frac{dy}{dx} = 3x^2 - 3 mtangent=3(1)23=0m_{\text{tangent}} = 3(1)^2 - 3 = 0

The normal is perpendicular to the tangent. For perpendicular lines:

mnormal=1mtangentm_{\text{normal}} = -\frac{1}{m_{\text{tangent}}}

If mtangent=0m_{\text{tangent}} = 0 (horizontal tangent), the normal is vertical: x=x0x = x_0.

If mtangentm_{\text{tangent}} is undefined (vertical tangent), the normal is horizontal: y=y0y = y_0.

With slope mm and point (x0,y0)(x_0, y_0):

Tangent: yy0=mtangent(xx0)y - y_0 = m_{\text{tangent}}(x - x_0)

Normal: yy0=mnormal(xx0)y - y_0 = m_{\text{normal}}(x - x_0)

For our example: y0=133(1)+2=0y_0 = 1^3 - 3(1) + 2 = 0, mtangent=0m_{\text{tangent}} = 0.

Tangent: y0=0(x1)    y=0y - 0 = 0(x - 1) \implies y = 0

Normal: x=1x = 1 (vertical line, since tangent is horizontal).

graph TD
    A[Given curve y = f x and point x0] --> B[Find y0 = f of x0]
    B --> C[Differentiate: dy/dx = f prime x]
    C --> D[Evaluate m = f prime at x0]
    D --> E{Is m finite and nonzero?}
    E -->|Yes| F[Tangent: y - y0 = m times x - x0]
    E -->|m = 0| G[Tangent: y = y0, Normal: x = x0]
    E -->|m undefined| H[Tangent: x = x0, Normal: y = y0]
    F --> I[Normal: y - y0 = -1/m times x - x0]

Why This Works

The derivative dydx\frac{dy}{dx} at a point gives the instantaneous rate of change — which is geometrically the slope of the tangent line at that point. This is the fundamental connection between calculus and coordinate geometry.

The normal being perpendicular means their slopes multiply to 1-1 (the perpendicularity condition from coordinate geometry).

For CBSE 12 boards, tangent-normal problems carry 4-5 marks. The marking scheme gives marks for: finding the derivative (1 mark), evaluating at the point (1 mark), writing tangent equation (1 mark), and writing normal equation (1 mark). Show every step clearly.


Alternative Method

If the curve is given in implicit form F(x,y)=0F(x, y) = 0, use implicit differentiation:

dydx=F/xF/y\frac{dy}{dx} = -\frac{\partial F/\partial x}{\partial F/\partial y}

For example, x2+y2=25x^2 + y^2 = 25 at (3,4)(3, 4):

dydx=2x2y=34\frac{dy}{dx} = -\frac{2x}{2y} = -\frac{3}{4}

Tangent: y4=34(x3)    3x+4y=25y - 4 = -\frac{3}{4}(x - 3) \implies 3x + 4y = 25.


Common Mistake

Students sometimes find the slope at x=x0x = x_0 but forget to compute y0=f(x0)y_0 = f(x_0) and use the wrong yy-coordinate. For example, if the question says “find the tangent at x=2x = 2,” you must compute y=f(2)y = f(2) first. Using the given xx but guessing yy (or using y=2y = 2) gives the wrong tangent line.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next