Skip to content

Derivatives | CBSE - Wyatt's Notes

sources:

  • text: Standard textbook reference

Derivatives measure the rate of change of a function with respect to its variable. This topic covers basic rules, chain rule, implicit differentiation, and applications.

  • ddx[xn]=nxn1\frac{d}{dx}[x^n] = nx^{n-1} (power rule)
  • ddx[ex]=ex\frac{d}{dx}[e^x] = e^x, ddx[lnx]=1x\frac{d}{dx}[\ln x] = \frac{1}{x}
  • ddx[sinx]=cosx\frac{d}{dx}[\sin x] = \cos x, ddx[cosx]=sinx\frac{d}{dx}[\cos x] = -\sin x
  • ddx[tanx]=sec2x\frac{d}{dx}[\tan x] = \sec^2 x
  • ddx[cscx]=cscxcotx\frac{d}{dx}[\csc x] = -\csc x \cot x, ddx[secx]=secxtanx\frac{d}{dx}[\sec x] = \sec x \tan x
  • ddx[cotx]=csc2x\frac{d}{dx}[\cot x] = -\csc^2 x
  • Product rule: ddx[uv]=udvdx+vdudx\frac{d}{dx}[uv] = u\frac{dv}{dx} + v\frac{du}{dx}
  • Quotient rule: ddx[uv]=vdudxudvdxv2\frac{d}{dx}\left[\frac{u}{v}\right] = \frac{v\frac{du}{dx} - u\frac{dv}{dx}}{v^2}
  • Chain rule: ddx[f(g(x))]=f(g(x))g(x)\frac{d}{dx}[f(g(x))] = f'(g(x)) \cdot g'(x)

Problem: Find ddx[x2sinx]\frac{d}{dx}[x^2 \sin x].

Solution:

Let u=x2u = x^2 and v=sinxv = \sin x. Then dudx=2x\frac{du}{dx} = 2x and dvdx=cosx\frac{dv}{dx} = \cos x.

ddx[x2sinx]=x2cosx+sinx2x=x2cosx+2xsinx\frac{d}{dx}[x^2 \sin x] = x^2 \cos x + \sin x \cdot 2x = x^2 \cos x + 2x \sin x

Common mistake: Forgetting to differentiate one of the factors. Both terms must be present.

Problem: Find ddx[sin(3x2+1)]\frac{d}{dx}[\sin(3x^2 + 1)].

Solution:

Let u=3x2+1u = 3x^2 + 1, so dudx=6x\frac{du}{dx} = 6x.

ddx[sin(3x2+1)]=cos(3x2+1)6x=6xcos(3x2+1)\frac{d}{dx}[\sin(3x^2 + 1)] = \cos(3x^2 + 1) \cdot 6x = 6x \cos(3x^2 + 1)

Common mistake: Forgetting the inner derivative. The answer is not just cos(3x2+1)\cos(3x^2 + 1).

Worked Example 3 — Implicit Differentiation

Section titled “Worked Example 3 — Implicit Differentiation”

Problem: Find dydx\frac{dy}{dx} if x2+y2=25x^2 + y^2 = 25.

Solution:

Differentiate both sides with respect to xx: 2x+2ydydx=02x + 2y\frac{dy}{dx} = 0

Solve for dydx\frac{dy}{dx}: dydx=xy\frac{dy}{dx} = -\frac{x}{y}

Common mistake: Treating yy as a constant when differentiating. Remember that yy is a function of xx, so ddx[y2]=2ydydx\frac{d}{dx}[y^2] = 2y\frac{dy}{dx}.

Problem: Find ddx[xx2+1]\frac{d}{dx}\left[\frac{x}{x^2 + 1}\right].

Solution:

Let u=xu = x and v=x2+1v = x^2 + 1. Then dudx=1\frac{du}{dx} = 1 and dvdx=2x\frac{dv}{dx} = 2x.

ddx[xx2+1]=(x2+1)(1)x(2x)(x2+1)2=x2+12x2(x2+1)2=1x2(x2+1)2\frac{d}{dx}\left[\frac{x}{x^2+1}\right] = \frac{(x^2+1)(1) - x(2x)}{(x^2+1)^2} = \frac{x^2 + 1 - 2x^2}{(x^2+1)^2} = \frac{1 - x^2}{(x^2+1)^2}

Common mistake: Swapping uu and vv in the quotient rule formula. The numerator is vuuvv \cdot u' - u \cdot v', not uvvuu \cdot v' - v \cdot u'.

Worked Example 5 — Higher-Order Derivatives

Section titled “Worked Example 5 — Higher-Order Derivatives”

Problem: If y=e2xy = e^{2x}, find d2ydx2\frac{d^2y}{dx^2}.

Solution:

First derivative: dydx=2e2x\frac{dy}{dx} = 2e^{2x}

Second derivative: d2ydx2=22e2x=4e2x\frac{d^2y}{dx^2} = 2 \cdot 2e^{2x} = 4e^{2x}

Common mistake: Forgetting to apply the chain rule at each differentiation step. Each derivative of e2xe^{2x} brings down a factor of 2.

  1. Find ddx[x3ex]\frac{d}{dx}[x^3 e^x] using the product rule.
  2. Find ddx[ln(sinx)]\frac{d}{dx}[\ln(\sin x)] using the chain rule.
  3. Find dydx\frac{dy}{dx} if xy+y2=10xy + y^2 = 10 using implicit differentiation.
  4. Find ddx[sinx1+cosx]\frac{d}{dx}\left[\frac{\sin x}{1 + \cos x}\right] using the quotient rule.
  5. Find the second derivative of f(x)=xlnxf(x) = x \ln x.
  • Identify which rule to apply before differentiating
  • For chain rule, always differentiate the outer function first, then multiply by derivative of inner function
  • Practice implicit differentiation with equations of circles and ellipses
  • Check answers by substituting back into the original equation when possible
  • Higher-order derivatives require applying the differentiation rule repeatedly
  • When a function is a product of more than two factors, differentiate one pair at a time
  1. Write down uu and vv (or uu and vv for quotient rule) explicitly before computing derivatives.
  2. For chain rule, identify the outermost function and work inward layer by layer.
  3. In implicit differentiation, collect all dydx\frac{dy}{dx} terms on one side and factor.
  4. Simplify your answer by factoring common terms; examiners reward simplified forms.
  5. Verify your derivative by checking dimensions or testing a specific value.

Worked Example 6 — Product of Three Functions

Section titled “Worked Example 6 — Product of Three Functions”

Problem: Find ddx[xexsinx]\frac{d}{dx}[x \cdot e^x \cdot \sin x].

Solution:

Apply the product rule iteratively. Let u=xu = x, v=exsinxv = e^x \sin x.

First, find dvdx\frac{dv}{dx} using the product rule on exsinxe^x \sin x: ddx[exsinx]=exsinx+excosx=ex(sinx+cosx)\frac{d}{dx}[e^x \sin x] = e^x \sin x + e^x \cos x = e^x(\sin x + \cos x)

Now apply the product rule to x(exsinx)x \cdot (e^x \sin x): ddx[xexsinx]=1exsinx+xex(sinx+cosx)\frac{d}{dx}[x \cdot e^x \sin x] = 1 \cdot e^x \sin x + x \cdot e^x(\sin x + \cos x)

Factor: =ex[sinx+xsinx+xcosx]=ex[(1+x)sinx+xcosx]= e^x[\sin x + x\sin x + x\cos x] = e^x[(1 + x)\sin x + x\cos x]

Common mistake: Trying to apply the product rule to three factors at once. Instead, group two factors together and apply the rule iteratively.

Worked Example 7 — Logarithmic Differentiation

Section titled “Worked Example 7 — Logarithmic Differentiation”

Problem: Find dydx\frac{dy}{dx} if y=xxy = x^x for x>0x > 0.

Solution:

Take the natural logarithm of both sides: lny=ln(xx)=xlnx\ln y = \ln(x^x) = x \ln x

Differentiate both sides with respect to xx: 1ydydx=lnx+x1x=lnx+1\frac{1}{y}\frac{dy}{dx} = \ln x + x \cdot \frac{1}{x} = \ln x + 1

Solve for dydx\frac{dy}{dx}: dydx=y(lnx+1)=xx(lnx+1)\frac{dy}{dx} = y(\ln x + 1) = x^x(\ln x + 1)

Common mistake: Treating xxx^x as a power function (nxn1nx^{n-1}) or an exponential function (axlnaa^x \ln a). It is neither — use logarithmic differentiation.

Worked Example 8 — Derivative of an Inverse Function

Section titled “Worked Example 8 — Derivative of an Inverse Function”

Problem: If f(x)=tan1(x1+x2)f(x) = \tan^{-1}\left(\frac{x}{1 + x^2}\right), find f(x)f'(x).

Solution:

Let u=x1+x2u = \frac{x}{1 + x^2}. Then f(x)=tan1(u)f(x) = \tan^{-1}(u) and: f(x)=11+u2dudxf'(x) = \frac{1}{1 + u^2} \cdot \frac{du}{dx}

Compute dudx\frac{du}{dx} using the quotient rule: dudx=(1+x2)(1)x(2x)(1+x2)2=1+x22x2(1+x2)2=1x2(1+x2)2\frac{du}{dx} = \frac{(1 + x^2)(1) - x(2x)}{(1 + x^2)^2} = \frac{1 + x^2 - 2x^2}{(1 + x^2)^2} = \frac{1 - x^2}{(1 + x^2)^2}

Now compute 11+u2\frac{1}{1 + u^2}: 1+u2=1+x2(1+x2)2=(1+x2)2+x2(1+x2)2=1+2x2+x4+x2(1+x2)2=1+3x2+x4(1+x2)21 + u^2 = 1 + \frac{x^2}{(1 + x^2)^2} = \frac{(1 + x^2)^2 + x^2}{(1 + x^2)^2} = \frac{1 + 2x^2 + x^4 + x^2}{(1 + x^2)^2} = \frac{1 + 3x^2 + x^4}{(1 + x^2)^2}

Therefore: f(x)=(1+x2)21+3x2+x41x2(1+x2)2=1x21+3x2+x4f'(x) = \frac{(1 + x^2)^2}{1 + 3x^2 + x^4} \cdot \frac{1 - x^2}{(1 + x^2)^2} = \frac{1 - x^2}{1 + 3x^2 + x^4}

Common mistake: Forgetting the chain rule when differentiating inverse trigonometric functions. The derivative of tan1(u)\tan^{-1}(u) is 11+u2dudx\frac{1}{1 + u^2} \cdot \frac{du}{dx}, not just 11+u2\frac{1}{1 + u^2}.

FunctionDerivativeNotes
xnx^nnxn1nx^{n-1}Power rule
eaxe^{ax}aeaxae^{ax}Chain rule applied
ln(ax)\ln(ax)1x\frac{1}{x}Chain rule gives same result
sin(ax)\sin(ax)acos(ax)a\cos(ax)Chain rule applied
tan1(x)\tan^{-1}(x)11+x2\frac{1}{1 + x^2}Inverse trig derivative
sin1(x)\sin^{-1}(x)11x2\frac{1}{\sqrt{1 - x^2}}Inverse trig derivative
unu^n (chain rule)nun1unu^{n-1} \cdot u'Generalised power rule
  1. For logarithmic differentiation, take ln\ln of both sides first, then differentiate implicitly. This is useful for functions of the form f(x)g(x)f(x)^{g(x)}.
  2. The derivative of lnf(x)\ln|f(x)| is f(x)f(x)\frac{f'(x)}{f(x)} — remember the absolute value for the domain.
  3. When differentiating inverse trigonometric functions, always apply the chain rule: ddx[tan1(u)]=u1+u2\frac{d}{dx}[\tan^{-1}(u)] = \frac{u'}{1 + u^2}.
  4. For piecewise functions, check differentiability at the boundary by verifying that the left and right derivatives are equal.
  5. In CBSE exams, questions often combine multiple rules (product + chain, quotient + chain). Practice identifying which rules to apply in which order.

A derivative measures how fast something changes at a single instant. Think of it as the slope of a tangent line touching a curve — it tells you whether the function is going up, going down, or flat at that point. The power rule is the simplest case: the derivative of x^n is n times x^(n-1), which follows from the pattern of how polynomial rates work. The chain rule handles nested functions: if something depends on something else that depends on x, you multiply their individual rates of change. Implicit differentiation is useful when y is buried inside an equation and you cannot isolate it efficiently.

Confusing the product rule and chain rule. The product rule (uv)’ = u’v + uv’ applies to the product of two functions. The chain rule (f(g(x)))’ = f’(g(x)) * g’(x) applies to composition. Students often apply the product rule to composite functions or the chain rule to products, giving incorrect derivatives.

Forgetting the negative sign in trigonometric derivatives. The derivatives of cos(x), cot(x), csc(x), and their reciprocals all have negative signs. Students frequently forget these negatives, especially for cos(x) -> -sin(x) and csc(x) -> -csc(x)cot(x). This is the most common source of sign errors in differentiation.

Incorrectly applying the chain rule to nested functions. When differentiating sin(x^2), the result is cos(x^2) * 2x, not just cos(x^2). Students often differentiate the outer function but forget to multiply by the derivative of the inner function. The chain rule must be applied at every level of nesting.