Power Rule of Derivatives
The power rule of differentiation says that if the given function is of the form , where is any constant, then we can differentiate the function in the following way:
Basics of Differentiation
This section covers key differentiation concepts, rules, and applications.
Rules & Techniques of Differentiation
This section introduces the fundamental rules and methods used to differentiate functions efficiently.
- Rules for Differentiation
- Power Rule
- Product Rule
- Quotient Rule
- Chain Rule
- Formulas for Differentiation
- Implicit Differentiation
- Logarithmic Differentiation
- Parametric Differentiation
Note: The Power Rule is often used alongside the Chain Rule when dealing with composite functions. For a deeper dive into the conditions required for a derivative to exist, see our guide on Differentiability.
This means that in such a case the differentiation is equal to the variable raised to 1 less than the original power and multiplied by the original power. Or, simply the power will be dropped in front of the variable (i.e. in this case) and the power is reduced by one.
Example: Differentiate the function with respect to .
Given:

Standard Derivative Rules Table
| Function | Derivative |
|---|---|
| (constant) | |
Example 2: Complex Polynomial
Find the derivative of .
Solution:
# Check with Python SymPy import sympy as sp x = sp.Symbol('x') g = 4*x**3 - 2*x**2 + 5*x - 7 print(sp.diff(g, x))
Output:
12*x**2 - 4*x + 5