Derivative (mathematics)

From TCS Wiki
Jump to navigation Jump to search
File:Tangent to a curve.svg
A function (black) and a tangent line (red). The derivative at the pinus point is the slope of the line.

In mathematics, the derivative is a way to represent rate of change, that is - the amount by which a function is changing at one given point. For functions that act on the real numbers, it is the slope of the tangent line at a point on a graph. The derivative is often written using "dy over dx" (meaning the difference in y divided by the difference in x. The d's are not variable, and therefore cannot be cancelled out.

[math]\displaystyle{ \frac{dy}{dx} }[/math]

Definition of a derivative

The derivative of y with respect to x is defined as the change in y over the change in x, as the distance between [math]\displaystyle{ x_0 }[/math] and [math]\displaystyle{ x_1 }[/math] becomes infinitely small (infinitesimal). In mathematical terms,

[math]\displaystyle{ f'(a)=\lim_{h\to 0}{\frac{f(a+h)-f(a)}{h}} }[/math]

That is, as the distance between the two x points (h) becomes closer to zero, the slope of the line between them comes closer to resembling a tangent line.

Derivatives of functions

Linear functions

Derivatives of linear functions (functions of the form a x + b with no quadratic or higher terms) are constant. That is, the derivative in one spot on the graph will remain the same on another.

When the dependent variable y directly takes x's value (y=x), the slope of the line is 1 in all places, so [math]\displaystyle{ \frac{d}{dx}(x) = 1 }[/math] regardless of where the position is.

When y modifies x's number by adding or subtracting a constant value, the slope is still one because the change in x and y do not change if the graph is shifted up or down. That is, the slope is still 1 throughout the entire graph, so its derivative is also 1.

Power functions

Power functions (e.g. [math]\displaystyle{ x^a }[/math]) behave differently than linear functions because their slope varies (because they have an exponent).

Power functions, in general, follow the rule that [math]\displaystyle{ \frac{d}{dx}x^a = ax^{a-1} }[/math]. That is, if we give a the number 6, then [math]\displaystyle{ \frac{d}{dx} x^6 = 6x^5 }[/math]

Another possibly not so obvious example is the function [math]\displaystyle{ f(x) = \frac{1}{x} }[/math]. This is essentially the same because 1/x can be simplified to use exponents:

[math]\displaystyle{ f(x) = \frac{1}{x} = x^{-1} }[/math]
[math]\displaystyle{ f'(x) = -1(x^{-2}) }[/math]
[math]\displaystyle{ f'(x) = -\frac{1}{x^2} }[/math]

In addition, roots can be changed to use fractional exponents where their derivative can be found:

[math]\displaystyle{ f(x) = \sqrt[3]{x^2} = x^\frac{2}{3} }[/math]
[math]\displaystyle{ f'(x) = \frac{2}{3}(x^{-\frac{1}{3}}) }[/math]

Exponential functions

An exponential is of the form [math]\displaystyle{ ab^{f\left(x\right)} }[/math] where [math]\displaystyle{ a }[/math] and [math]\displaystyle{ b }[/math] are constants and [math]\displaystyle{ f(x) }[/math] is a function of [math]\displaystyle{ x }[/math]. The difference between an exponential and a polynomial is that in a polynomial [math]\displaystyle{ x }[/math] is raised to some power whereas in an exponential [math]\displaystyle{ x }[/math] is in the power.

Example 1

[math]\displaystyle{ \frac{d}{dx}\left( ab^{ f\left( x \right) } \right) = ab^{f(x)} \cdot f'\left(x \right) \cdot \ln(b) }[/math]

Example 2

Find [math]\displaystyle{ \frac{d}{dx} \left( 3\cdot2^{3{x^2}} \right) }[/math].

[math]\displaystyle{ a = 3 }[/math]

[math]\displaystyle{ b = 2 }[/math]

[math]\displaystyle{ f\left( x \right) = 3x^2 }[/math]

[math]\displaystyle{ f'\left( x \right) = 6x }[/math]

Therefore,

[math]\displaystyle{ \frac{d}{dx} \left(3 \cdot 2^{3x^2} \right) = 3 \cdot 2^{3x^2} \cdot 6x \cdot \ln \left( 2 \right) = \ln \left(2 \right) \cdot 18x \cdot 2^{3x^2} }[/math]

Logarithmic functions

The derivative of logarithms is the reciprocal:

[math]\displaystyle{ \frac{d}{dx}\ln(x) = \frac{1}{x} }[/math].

Take, for example, [math]\displaystyle{ \frac{d}{dx}\ln\left(\frac{5}{x}\right) }[/math]. This can be reduced to (by the properties of logarithms):

[math]\displaystyle{ \frac{d}{dx}(\ln(5)) - \frac{d}{dx}(\ln(x)) }[/math]

The logarithm of 5 is a constant, so its derivative is 0. The derivative of ln(x) is [math]\displaystyle{ \frac{1}{x} }[/math]. So,

[math]\displaystyle{ 0 - \frac{d}{dx} \ln(x) = -\frac{1}{x} }[/math]

For derivatives of logarithms not in base e like [math]\displaystyle{ \frac{d}{dx}(\log_{10}(x)) }[/math], this can be reduced to: [math]\displaystyle{ \frac{d}{dx} \log_{10}(x) = \frac{d}{dx} \frac{\ln{x}}{\ln{10}} = \frac{1}{\ln{10}} \frac{d}{dx} \ln{x} = \frac{1}{x \ln(10)} }[/math]

Trigonometric functions

The cosine function is the derivative of the sine function, while the derivative of cosine is negative sine (provided that x is measured in radians):

[math]\displaystyle{ \frac{d}{dx}\sin(x) = \cos(x) }[/math]
[math]\displaystyle{ \frac{d}{dx}\cos(x) = -\sin(x) }[/math]
[math]\displaystyle{ \frac{d}{dx}\sec(x) = \sec(x)\tan(x) }[/math].

Properties of derivatives

Derivatives can be broken up into smaller parts where they are manageable (as they have only one of the above function characteristics), for example:

[math]\displaystyle{ \frac{d}{dx}(3x^6 + x^2 - 6) }[/math] can be broken up as such:
[math]\displaystyle{ \frac{d}{dx}(3x^6) + \frac{d}{dx}(x^2) - \frac{d}{dx}(6) }[/math]
[math]\displaystyle{ = 6 \cdot 3x^5 + 2x - 0 }[/math]
[math]\displaystyle{ = 18x^5 + 2x\, }[/math]

Uses of derivatives

A function's derivative can be used to search for the maximums and minimums of the function by searching for places where its slope is zero.

Derivatives are used in Newton's method which helps find zeros (roots) of a function.

Related pages

Other websites