Derivative Notation

Understanding the different ways to write derivatives

Derivative Notation

There are several ways to write derivatives. They all mean the same thing, but are used in different contexts!

The Main Notations

For a function y=f(x)y = f(x), all of these mean "the derivative":

| Notation | Read as | Context | |----------|---------|---------| | f(x)f'(x) | "f prime of x" | Lagrange notation | | dydx\frac{dy}{dx} | "dy dx" | Leibniz notation | | yy' | "y prime" | When y is the function | | dfdx\frac{df}{dx} | "df dx" | Alternative Leibniz | | Df(x)Df(x) | "D f of x" | Operator notation | | y˙\dot{y} | "y dot" | Physics (time derivative) |

Lagrange Notation: f(x)f'(x)

Prime notation is the most common in calculus.

  • f(x)f'(x): First derivative
  • f(x)f''(x): Second derivative (derivative of the derivative)
  • f(x)f'''(x): Third derivative
  • f(n)(x)f^{(n)}(x): nth derivative

Example: If f(x)=x3f(x) = x^3, then f(x)=3x2f'(x) = 3x^2

Leibniz Notation: dydx\frac{dy}{dx}

This looks like a fraction, and sometimes we can treat it like one!

Parts:

  • dydy: "Infinitesimal change in y"
  • dxdx: "Infinitesimal change in x"
  • dydx\frac{dy}{dx}: "Rate of change of y with respect to x"

Example: If y=x2y = x^2, then dydx=2x\frac{dy}{dx} = 2x

At a Specific Point

To indicate the derivative at a particular value:

Lagrange: f(3) or f(a)f'(3) \text{ or } f'(a)

Leibniz: dydxx=3 or dydxx=a\left.\frac{dy}{dx}\right|_{x=3} \text{ or } \frac{dy}{dx}\bigg|_{x=a}

The vertical bar means "evaluated at".

Higher-Order Derivatives

Second derivative (derivative of the derivative):

| Notation | Meaning | |----------|---------| | f(x)f''(x) | Second derivative | | d2ydx2\frac{d^2y}{dx^2} | Second derivative (Leibniz) | | yy'' | Second derivative |

Third derivative:

  • f(x)f'''(x) or f(3)(x)f^{(3)}(x)
  • d3ydx3\frac{d^3y}{dx^3}

nth derivative:

  • f(n)(x)f^{(n)}(x)
  • dnydxn\frac{d^ny}{dx^n}

Why Different Notations?

Use f(x)f'(x) when:

  • Working with function notation
  • You want clean, simple expressions

Use dydx\frac{dy}{dx} when:

  • Emphasizing the relationship between variables
  • Using the chain rule
  • Doing implicit differentiation
  • Separating variables in differential equations

Use y˙\dot{y} when:

  • Dealing with time derivatives in physics
  • tt is the independent variable

Example Comparison

For y=x3+2xy = x^3 + 2x:

Prime notation: f(x)=3x2+2f'(x) = 3x^2 + 2

Leibniz notation: dydx=3x2+2\frac{dy}{dx} = 3x^2 + 2

At x=1x = 1: f(1)=3(1)2+2=5f'(1) = 3(1)^2 + 2 = 5 dydxx=1=5\left.\frac{dy}{dx}\right|_{x=1} = 5

They all give the same answer!

The "d" Operator

When we write ddx\frac{d}{dx}, we can think of it as an operator:

ddx[x2]=2x\frac{d}{dx}[x^2] = 2x

Read as: "Take the derivative with respect to x of x2x^2"

Partial Derivatives (Preview)

For functions of multiple variables (later in calculus):

fx\frac{\partial f}{\partial x}

The \partial symbol indicates a partial derivative (holding other variables constant).

Practice Tips

  1. Be consistent within a problem
  2. Read the question - match the notation used
  3. f(x)f'(x) is faster for simple work
  4. dydx\frac{dy}{dx} is clearer for chain rule and related rates
  5. Context matters - physics vs. pure math

📚 Practice Problems

1Problem 1easy

Question:

If f(x)=5x23xf(x) = 5x^2 - 3x, write the derivative using three different notations.

💡 Show Solution

First, find the derivative: The derivative of 5x25x^2 is 10x10x, and the derivative of 3x-3x is 3-3.

Three notations:

  1. Lagrange (prime) notation: f(x)=10x3f'(x) = 10x - 3

  2. Leibniz notation (if we call the function y): dydx=10x3\frac{dy}{dx} = 10x - 3

  3. Operator notation: ddx[5x23x]=10x3\frac{d}{dx}[5x^2 - 3x] = 10x - 3

All three express the same derivative!

2Problem 2medium

Question:

What is the difference between f''(x) and d²y/dx²?

💡 Show Solution

There is no difference in meaning!

Both represent the second derivative - the derivative of the derivative.

f''(x) is Lagrange notation (prime notation):

  • Clean and simple
  • Easy to write
  • Common in pure mathematics

d²y/dx² is Leibniz notation:

  • Emphasizes "second derivative with respect to x"
  • The d² on top means "differentiate twice"
  • The dx² on bottom means "with respect to x, twice"
  • More common in physics and applications

Example: If f(x) = x⁴:

  • f'(x) = 4x³ (first derivative)
  • f''(x) = 12x² (second derivative)
  • d²y/dx² = 12x² (same thing!)