2. Differential Calculus

1. Derivatives and Their Physical Meaning

A derivative represents the rate at which a function changes with respect to a variable. Mathematically, if

y=f(x)y = f(x)

, the derivative

f(x)f'(x)

f(x) or

dydx\frac{dy}{dx}

dxdy measures how

yy

y changes as

xx

x changes.

Physical Interpretations:
  • Slope of a Curve: The derivative gives the slope of the tangent line at any point on a function’s graph.
  • Velocity in Physics: Ifs(t)s(t)s(t) represents position at timettt, thenv(t)=s(t)v(t) = s'(t) is the velocity (rate of change of position).
  • Rate of Growth: In economics and biology, derivatives measure growth rates, such as population increase or profit maximization.

Example:
If

f(x)=x2f(x) = x^2

, then the derivative is

f(x)=2xf'(x) = 2x

. This means at

x=3x = 3

, the slope of the curve is

2(3)=62(3) = 6

.


2. Rules of Differentiation

To compute derivatives efficiently, calculus provides several differentiation rules:

a) Power Rule

If

f(x)=xnf(x) = x^n

, then

f(x)=nxn1f'(x) = n x^{n-1}

Example:

f(x)=x3f(x)=3x2f(x) = x^3 \Rightarrow f'(x) = 3x^2

b) Product Rule

If

f(x)=u(x)v(x)f(x) = u(x) \cdot v(x)

, then

f(x)=uv+uvf'(x) = u'v + uv'

Example:

f(x)=x2sinxf(x) = x^2 \sin x

, then

f(x)=2xsinx+x2cosxf'(x) = 2x \sin x + x^2 \cos x

c) Quotient Rule

If

f(x)=u(x)v(x)f(x) = \frac{u(x)}{v(x)}

, then

f(x)=uvuvv2f'(x) = \frac{u'v - uv'}{v^2}

Example:

f(x)=x2x+1f(x) = \frac{x^2}{x+1}

, then

f(x)=(2x)(x+1)x2(1)(x+1)2f'(x) = \frac{(2x)(x+1) - x^2(1)}{(x+1)^2}

d) Chain Rule

If

f(x)=g(h(x))f(x) = g(h(x))

, then

f(x)=g(h(x))h(x)f'(x) = g'(h(x)) \cdot h'(x)

Example:

f(x)=sin(x2)f(x) = \sin(x^2)

, then

f(x)=cos(x2)2xf'(x) = \cos(x^2) \cdot 2x


3. Applications of Derivatives

a) Tangents and Normals
  • The tangent line to a function atx=ax = a has a slope given byf(a)f'(a)f(a).
  • The normal line is perpendicular to the tangent and has slope1f(a)-\frac{1}{f'(a)}f(a)1.
  • Used in engineering and physics to find slopes of curves.
b) Optimization (Maxima and Minima)
  • Derivatives help determine where a function reaches its highest (maximum) or lowest (minimum) points.
  • Critical Points: Solvef(x)=0f'(x) = 0 to find these points.
  • Second Derivative Test:
    • Iff(x)>0f''(x) > 0, the function has a local minimum.
    • Iff(x)<0f''(x) < 0, the function has a local maximum.

Example: A company’s revenue function is

R(x)=2x2+40xR(x) = -2x^2 + 40x

. To maximize revenue, solve

R(x)=0R'(x) = 0

:

R(x)=4x+40=0x=10R'(x) = -4x + 40 = 0 \Rightarrow x = 10