Derivatives Explained: Key Rules, Examples and Applications

In mathematics, particularly in calculus, the derivative is a fundamental concept that measures how a function’s output value changes with respect to a change in its input value.

At its core, the derivative tells you the instantaneous rate of change of a function at a specific point. Think of it like the speed of a car at a particular moment: your speedometer shows your instantaneous speed, which is the rate of change of distance with respect to time at that instant.

.

How is it formally defined? (The Limit Definition)

The derivative of a function f(x) with respect to x, denoted as f'(x) or \frac{dy}{dx}, is defined using a concept called a limit. It’s the limit of the average rate of change of the function over an infinitesimally small interval.

The formula is:
f'(x) = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}

Let’s break down this formula:

  • f(x): The original function.
  • h: A very small change in the input x.
  • f(x+h): The value of the function at x+h.
  • f(x+h) - f(x): The change in the function’s output (often called \Delta y).
  • \frac{f(x+h) - f(x)}{h}: This is the slope of a secant line passing through two points on the curve: (x, f(x)) and (x+h, f(x+h)). It represents the average rate of change over the interval h.
  • \lim_{h \to 0}: This means we are looking at what happens to this slope as the interval h (the distance between the two points) gets closer and closer to zero. As h approaches zero, the secant line becomes the tangent line at the point x.

Common Notations for the Derivative:

If y = f(x), the derivative can be denoted in several ways:

  • Lagrange’s notation: f'(x) (read as “f prime of x”) or y' (read as “y prime”)
  • Leibniz’s notation: \frac{dy}{dx} (read as “dee y by dee x” or “the derivative of y with respect to x”), or \frac{df}{dx}, or \frac{d}{dx}f(x)
  • Newton’s notation (often used in physics for derivatives with respect to time): \dot{y} (read as “y dot”)

Why are derivatives important? What are they used for?

Derivatives are a cornerstone of calculus and have vast applications across many fields:

  • Physics: Calculating velocity and acceleration, understanding rates of decay (e.g., radioactive decay), modeling forces.
  • Engineering: Optimizing designs, analyzing rates of change in systems (e.g., fluid flow, heat transfer).
  • Economics: Finding marginal cost and marginal revenue, optimizing profit.
  • Geometry: Finding the slope of tangent lines, locating maximum and minimum values of functions (which is crucial for optimization problems), determining concavity and points of inflection of curves.
  • Biology: Modeling population growth rates, studying rates of chemical reactions.
  • Computer Science: In machine learning for optimization algorithms (like gradient descent).

In essence, the derivative provides a powerful tool to analyze and understand how things change. The process of finding a derivative is called differentiation

Differentiability implies Continuity:
* If a function f(x) has a derivative at a point x=c (i.e., it’s differentiable at c), then it must be continuous at x=c.
* Reasoning: For a tangent line (whose slope is the derivative) to exist at a point, the function must approach that point without a break or jump.
* Example: If you can find the slope of f(x)=x^2 at x=1 (which is f'(1)=2), then f(x)=x^2 is definitely continuous at x=1.

Continuity does NOT imply Differentiability:
* A function can be continuous at a point but not differentiable there.
* Classic Example: The absolute value function f(x) = |x|.
* It is continuous at x=0 (you can draw it without lifting your pen).
* However, it is not differentiable at x=0 because there’s a sharp corner. The slope to the left of x=0 is -1, and the slope to the right is +1. There’s no single, well-defined tangent (and thus no derivative) exactly at x=0.

The Constant Rule
The derivative of any constant number is 0. This is because a constant function represents a horizontal line, and its slope (rate of change) is always zero.
*Rule:If c is a constant, then \frac{d}{dx}(c) = 0
*Examples:*
If f(x) = 5, then f'(x) = 0
If g(x) = -100, then g'(x) = 0
If h(x) = \pi, then h'(x) = 0

The Constant Multiple Rule
The derivative of a constant multiplied by a function is the constant multiplied by the derivative of the function.
*Rule:\frac{d}{dx}[c \cdot f(x)] = c \cdot f'(x)
*Examples:*
If f(x) = 3x^5, then f'(x) = 3 \cdot \frac{d}{dx}(x^5) = 3 \cdot (5x^4) = 15x^4
If g(x) = \frac{x^2}{4}, rewrite as g(x) = \frac{1}{4}x^2. Then g'(x) = \frac{1}{4} \cdot \frac{d}{dx}(x^2) = \frac{1}{4} \cdot (2x) = \frac{1}{2}x

The Sum Rule
The derivative of a sum of functions is the sum of their derivatives.
*Rule:\frac{d}{dx}[f(x) + g(x)] = f'(x) + g'(x)
*Examples:*
If h(x) = x^3 + 4x^2, then h'(x) = \frac{d}{dx}(x^3) + \frac{d}{dx}(4x^2) = 3x^2 + 8x
If k(x) = 5x + 7, then k'(x) = \frac{d}{dx}(5x) + \frac{d}{dx}(7) = 5 + 0 = 5

The Difference Rule
The derivative of a difference of functions is the difference of their derivatives.
*Rule:\frac{d}{dx}[f(x) - g(x)] = f'(x) - g'(x)
*Examples:*
If h(x) = x^4 - 2x^3, then h'(x) = \frac{d}{dx}(x^4) - \frac{d}{dx}(2x^3) = 4x^3 - 6x^2
If k(x) = 6x^2 - 9, then k'(x) = \frac{d}{dx}(6x^2) - \frac{d}{dx}(9) = 12x - 0 = 12x

The Product Rule
Used when you have a function that is the product of two other functions.
*Rule:If h(x) = f(x)g(x), then h'(x) = f'(x)g(x) + f(x)g'(x)
(Derivative of the first times the second, plus the first times the derivative of the second)
*Examples:*
If h(x) = x^2 \sin(x):
Let f(x) = x^2 \implies f'(x) = 2x
Let g(x) = \sin(x) \implies g'(x) = \cos(x)
h'(x) = (2x)(\sin x) + (x^2)(\cos x) = 2x\sin x + x^2\cos x
If k(x) = (3x+2)(x^2-1):
Let f(x) = 3x+2 \implies f'(x) = 3
Let g(x) = x^2-1 \implies g'(x) = 2x
k'(x) = (3)(x^2-1) + (3x+2)(2x) = 3x^2 - 3 + 6x^2 + 4x = 9x^2 + 4x - 3

The Quotient Rule
Used when you have a function that is the quotient (division) of two other functions.
*Rule:If h(x) = \frac{f(x)}{g(x)}, then h'(x) = \frac{f'(x)g(x) - f(x)g'(x)}{[g(x)]^2}
(Derivative of the numerator times the denominator, minus the numerator times the derivative of the denominator, all divided by the square of the denominator. A common mnemonic is “Low D-High minus High D-Low, square the bottom and away we go!”)
Examples:
If h(x) = \frac{x^3}{x^2+1}:
Let f(x) = x^3 \implies f'(x) = 3x^2
Let g(x) = x^2+1 \implies g'(x) = 2x
h'(x) = \frac{(3x^2)(x^2+1) - (x^3)(2x)}{(x^2+1)^2} = \frac{3x^4+3x^2 - 2x^4}{(x^2+1)^2} = \frac{x^4+3x^2}{(x^2+1)^2}
If k(x) = \frac{\cos x}{x}:
Let f(x) = \cos x \implies f'(x) = -\sin x
Let g(x) = x \implies g'(x) = 1
k'(x) = \frac{(-\sin x)(x) - (\cos x)(1)}{x^2} = \frac{-x\sin x - \cos x}{x^2}

The Chain Rule
Used for composite functions (a function within another function).
Rule:If y = f(g(x)), then \frac{dy}{dx} = f'(g(x)) \cdot g'(x)
(Derivative of the outer function, leaving the inner function alone, multiplied by the derivative of the inner function.)
*Examples:*
If h(x) = (x^3+4x)^5:
Outer function f(u) = u^5 \implies f'(u) = 5u^4
Inner function g(x) = x^3+4x \implies g'(x) = 3x^2+4
h'(x) = 5(x^3+4x)^4 \cdot (3x^2+4)
If k(x) = \sin(x^2):
Outer function f(u) = \sin u \implies f'(u) = \cos u
Inner function g(x) = x^2 \implies g'(x) = 2x
k'(x) = \cos(x^2) \cdot (2x) = 2x\cos(x^2)
If m(x) = e^{3x}:
Outer function f(u) = e^u \implies f'(u) = e^u
Inner function g(x) = 3x \implies g'(x) = 3
m'(x) = e^{3x} \cdot 3 = 3e^{3x}


    Discover more from Science Comics

    Subscribe to get the latest posts sent to your email.

    Leave a Reply

    error: Content is protected !!