Writing a derivative equation typically involves understanding the concept of differentiation in calculus, which is used to measure how a function changes as its input changes. Let's break this down step by step, starting with some basics.
### 1. **Understanding the Derivative**
In mathematics, the **derivative** of a function represents the rate of change of the function with respect to one of its variables. In simpler terms, it's the slope of the function at any given point.
If we have a function \( f(x) \), its derivative is usually written as \( f'(x) \) or \( \frac{d}{dx} f(x) \), which means "the derivative of \( f(x) \) with respect to \( x \)."
### 2. **Derivative Notations**
There are different ways to write the derivative of a function. Common notations include:
- **Leibniz notation**: \( \frac{dy}{dx} \), where \( y = f(x) \), meaning "the derivative of \( y \) with respect to \( x \)."
- **Lagrange notation**: \( f'(x) \), which reads as "f prime of x."
- **Euler notation**: \( D_x f(x) \), meaning "the derivative of \( f(x) \) with respect to \( x \)."
These notations can be used interchangeably, but it depends on the context or preference.
### 3. **Basic Derivative Rules**
Before jumping into examples, it's helpful to understand the basic rules that govern differentiation:
- **Constant Rule**: The derivative of a constant is zero.
\[
\frac{d}{dx} [C] = 0, \text{ where } C \text{ is a constant}.
\]
- **Power Rule**: The derivative of \( x^n \) is \( nx^{n-1} \).
\[
\frac{d}{dx} [x^n] = nx^{n-1}.
\]
- **Sum Rule**: The derivative of a sum of functions is the sum of their derivatives.
\[
\frac{d}{dx} [f(x) + g(x)] = f'(x) + g'(x).
\]
- **Product Rule**: The derivative of a product of two functions is:
\[
\frac{d}{dx} [f(x)g(x)] = f'(x)g(x) + f(x)g'(x).
\]
- **Quotient Rule**: The derivative of a quotient of two functions is:
\[
\frac{d}{dx} \left[\frac{f(x)}{g(x)}\right] = \frac{f'(x)g(x) - f(x)g'(x)}{[g(x)]^2}.
\]
- **Chain Rule**: If a function \( y = f(g(x)) \) is a composition of two functions, the derivative is:
\[
\frac{dy}{dx} = f'(g(x)) \cdot g'(x).
\]
### 4. **Writing a Derivative Equation: Examples**
#### Example 1: Basic Polynomial
Let’s start with a simple polynomial function:
\[
f(x) = 3x^2 + 2x + 5.
\]
To write the derivative equation, we apply the **power rule** to each term:
- The derivative of \( 3x^2 \) is \( 2 \times 3x^{2-1} = 6x \).
- The derivative of \( 2x \) is \( 1 \times 2x^{1-1} = 2 \).
- The derivative of the constant 5 is 0.
Thus, the derivative equation is:
\[
f'(x) = 6x + 2.
\]
#### Example 2: Exponential Function
Consider the function:
\[
f(x) = e^x + x^3.
\]
Here, the derivative of \( e^x \) is just \( e^x \), and the derivative of \( x^3 \) is \( 3x^2 \) using the power rule.
So, the derivative equation is:
\[
f'(x) = e^x + 3x^2.
\]
#### Example 3: Applying the Product Rule
Suppose we have:
\[
f(x) = x^2 \cdot \sin(x).
\]
To differentiate this, we apply the **product rule**:
\[
\frac{d}{dx} [x^2 \cdot \sin(x)] = \frac{d}{dx}[x^2] \cdot \sin(x) + x^2 \cdot \frac{d}{dx}[\sin(x)].
\]
- The derivative of \( x^2 \) is \( 2x \).
- The derivative of \( \sin(x) \) is \( \cos(x) \).
Thus, the derivative equation becomes:
\[
f'(x) = 2x \cdot \sin(x) + x^2 \cdot \cos(x).
\]
#### Example 4: Applying the Chain Rule
Now, let's take a composition of functions:
\[
f(x) = \sin(x^2).
\]
Here, we use the **chain rule**. Let \( g(x) = x^2 \) and \( h(g(x)) = \sin(g(x)) \). Then:
- The derivative of \( h(g(x)) \) is \( \cos(g(x)) \cdot g'(x) \).
- The derivative of \( g(x) = x^2 \) is \( 2x \).
Thus, the derivative equation is:
\[
f'(x) = \cos(x^2) \cdot 2x.
\]
### 5. **Higher-Order Derivatives**
Sometimes you may need to compute the second derivative, which is the derivative of the derivative. This is written as \( f''(x) \) or \( \frac{d^2y}{dx^2} \).
For example, if \( f'(x) = 6x + 2 \), then the second derivative \( f''(x) = 6 \) (since the derivative of \( 6x \) is 6 and the derivative of 2 is 0).
### 6. **Application Example: Physics**
In physics, derivatives are used to describe quantities like velocity and acceleration. For instance, if the position of an object is given by \( s(t) = 5t^2 + 2t \), where \( t \) is time, the velocity is the derivative of position with respect to time:
\[
v(t) = \frac{ds}{dt} = 10t + 2.
\]
The acceleration is the derivative of velocity:
\[
a(t) = \frac{dv}{dt} = 10.
\]
### Conclusion
Writing a derivative equation requires understanding the function you are differentiating and applying the appropriate rules (power rule, product rule, chain rule, etc.). Once you've identified the function and the rule to apply, the process is straightforward, yielding an equation that represents the rate of change of the original function.