Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Applying the Power Rule

Lesson ~10 min read

In simple terms: In simple terms, the power rule is a fast shortcut for finding the derivative (the instantaneous rate of change) of functions that have variables raised to a power, like x².

Why this matters

Imagine you're at a high school football game in Dallas. The quarterback, Liam, throws a perfect spiral. For a brief moment, that football's flight path can be modeled by a function. But what if we wanted to know the exact vertical speed of the ball at the very peak of its arc? Not the average speed, but the instantaneous speed at that one moment.

In our last lesson, you learned how to find this using the limit definition of the derivative. It's powerful, but let's be honest, it's a lot of work. You have to set up a limit, expand polynomials, cancel terms... it's a grind.

What if I told you there’s a shortcut? A simple, two-step process that lets you find that instantaneous speed in seconds. That's what the Power Rule is. It’s the first major shortcut in your calculus toolkit, and it’s going to make your life so much easier. Let's learn how to use it.

Concept overview

flowchart TD
    A[Start: Find derivative of a term] --> B{Is it in the form c*x^n?};
    B -- Yes --> C[Apply Power Rule: n*c*x^(n-1)];
    B -- No --> D{Does it have a radical or x in the denominator?};
    D -- Yes --> E[Rewrite using fractional/negative exponents];
    E --> B;
    D -- No --> F[Use a different rule, e.g., for sin(x), e^x];
    C --> G[Done];
    F --> G;
This diagram shows a flowchart for deciding how to find a derivative. It starts by asking if the function is in the form c*x^n. If yes, apply the Power Rule. If no, it asks if it can be rewritten (like a radical or fraction), and if so, directs the user to rewrite it and try again.

Core explanation

Alright, let's get right to it. You’ve put in the work with the limit definition of the derivative. You know, this whole process:

f'(x) = lim(h→0) [f(x+h) - f(x)] / h

It’s the bedrock of derivatives, but it’s like using a hand-cranked drill. It works, but it's slow. The Power Rule is like upgrading to a high-powered electric drill.

The Power Rule Formula

For any real number n, the derivative of the function f(x) = xⁿ is:

*`f'(x) = n xⁿ⁻¹`**

That’s it. That’s the whole rule.

Let's break it down into two simple steps. Think of it as a little dance move for your variable:

  1. 1
    Bring the Power Down
    Take the original exponent and bring it down to the front as a coefficient (a number you multiply by).
  2. 2
    Take One Away
    Subtract 1 from the original exponent to get the new exponent.

Let's see it in action with f(x) = x³.

  1. 1
    Bring the Power Down
    The exponent is 3. We bring it to the front. 3 * x³
  2. 2
    Take One Away
    The old exponent was 3. The new exponent is 3 - 1 = 2. 3 * x²

So, the derivative of is 3x². That's it! Compare that to the half-page of algebra it would take with the limit definition.

What About Constants?

What's the derivative of a constant, like f(x) = 7?

Think about it intuitively first. The graph of y = 7 is a horizontal line. What's the slope of a horizontal line? It's zero. So the derivative must be zero.

The Power Rule confirms this. We can write 7 as 7 * x⁰ (since x⁰ = 1). Now let's apply the rule:

  1. 1
    Bring the Power Down
    The exponent is 0. Bring it to the front. 0 * 7 * x⁰
  2. 2
    Take One Away
    The new exponent is 0 - 1 = -1. 0 * 7 * x⁻¹

But look what happened! We're multiplying the whole thing by zero. So, the result is just 0.

The derivative of any constant is always zero.

The Constant Multiple Rule

What if you have a function like g(x) = 5x⁴?

This is simple. The constant 5 just hangs out and waits. You perform the Power Rule on x⁴ and then multiply the result by 5.

g'(x) = 5 * (derivative of x⁴) g'(x) = 5 * (4x⁴⁻¹) g'(x) = 5 * (4x³) g'(x) = 20x³

The constant multiple just comes along for the ride.

The "Rewrite First" Golden Rule

1. Radicals (Square Roots, Cube Roots, etc.)

You cannot apply the power rule directly to √x. You must first rewrite it using a fractional exponent.

  • √x becomes x¹/²
  • ∛x becomes x¹/³
  • ⁵√x² becomes x²/⁵

Let's find the derivative of f(x) = √x.

  • Step 1: Rewrite
    f(x) = x¹/²
  • Step 2: Apply the Power Rule
    • Bring the power down: (1/2) * x¹/²
    • Take one away: The new exponent is (1/2) - 1 = -1/2.
    • Result: f'(x) = (1/2)x⁻¹/²

On the AP Exam, you'll often need to write this back in radical form. A negative exponent means "move to the denominator," and the 1/2 exponent means "square root."

f'(x) = 1 / (2x¹/²) = 1 / (2√x)

2. Variables in the Denominator

You also cannot apply the power rule directly to 1/x³. You must rewrite it using a negative exponent.

  • 1/x becomes x⁻¹
  • 1/x³ becomes x⁻³
  • 4/x⁵ becomes 4x⁻⁵

Let's find the derivative of g(x) = 1/x³.

  • Step 1: Rewrite
    g(x) = x⁻³
  • Step 2: Apply the Power Rule
    • Bring the power down: -3 * x⁻³
    • Take one away: The new exponent is -3 - 1 = -4.
    • Result: g'(x) = -3x⁻⁴

Rewritten in its original form, this is g'(x) = -3 / x⁴.

Mastering this "rewrite first" step is the key to unlocking the full power of the Power Rule.

Worked examples

Let's walk through a couple of problems you're likely to see. I'll show you not just what to do, but why we're doing it.

Example 1

Differentiating a Polynomial

Problem: Find the derivative of f(x) = 2x³ - 5x² + x - 9.

Solution:

When you have terms added or subtracted, you can take the derivative of each piece separately. It's like painting a house with four walls; you can paint each wall one at a time.

  1. First term: 2x³

    • The 2 is a constant multiple, so it waits.
    • Apply the power rule to : bring the 3 down and subtract 1 from the exponent. This gives 3x².
    • Multiply by the constant: 2 * (3x²) = 6x².
  2. Second term: -5x²

    • The -5 is the constant multiple.
    • Apply the power rule to : bring the 2 down and subtract 1. This gives 2x¹, or just 2x.
    • Multiply by the constant: -5 * (2x) = -10x.
  3. Third term: x

    • This is a classic spot for confusion. Remember that x is the same as .
    • Apply the power rule: bring the 1 down and subtract 1 from the exponent. This gives 1x⁰.
    • Anything to the power of 0 is 1. So we have 1 * 1 = 1.
    • Why this makes sense: The graph of y = x is a straight line with a slope of 1. The derivative is the slope, so this is exactly what we expect!
  4. Fourth term: -9

    • This is a constant. The derivative of any constant is 0.
    • Why this makes sense: The graph of y = -9 is a horizontal line. Its slope is always 0.

Final Answer: Now, just assemble the pieces.

f'(x) = 6x² - 10x + 1 - 0 f'(x) = 6x² - 10x + 1

Example 2

The "Rewrite First" Challenge

Problem: Find dy/dx for y = 4∛x - 7/x².

Solution:

Your alarm bells should be ringing! We see a cube root and a variable in the denominator. We absolutely must rewrite this function before we can take the derivative.

  1. Rewrite the function.

    • The term 4∛x becomes 4x¹/³.
    • The term -7/x² becomes -7x⁻².
    • So, our rewritten function is y = 4x¹/³ - 7x⁻². Now we're ready.
  2. Differentiate the first term: 4x¹/³

    • The 4 waits.
    • Apply the power rule to x¹/³: bring 1/3 down and subtract 1 from the exponent.
    • New exponent: (1/3) - 1 = (1/3) - (3/3) = -2/3.
    • Result for this term: 4 * (1/3)x⁻²/³ = (4/3)x⁻²/³.
  3. Differentiate the second term: -7x⁻²

    • The -7 waits.
    • Apply the power rule to x⁻²: bring -2 down and subtract 1 from the exponent.
    • This is the danger zone! Be careful with your signs.
    • New exponent: -2 - 1 = -3.
    • Result for this term: -7 * (-2)x⁻³ = 14x⁻³.
  4. Assemble the final answer.

    • dy/dx = (4/3)x⁻²/³ + 14x⁻³

This is a perfectly acceptable answer on the AP Exam free-response section. If it were a multiple-choice question, you might need to convert it back to its original form with radicals and fractions:

dy/dx = 4 / (3x²/³) + 14 / x³ = 4 / (3∛x²) + 14 / x³

The most critical step was rewriting the function. Trying to take the derivative of the original form is the #1 mistake students make on this type of problem.

Try it yourself

Time to get your hands dirty. Remember the process: check if you need to rewrite, then apply the rule term by term.

Problem 1: Find the derivative, f'(x), for the function f(x) = -x⁴ + 3x² - 11x + 2.

Hint: You can differentiate this one term by term. What is the derivative of -11x? What about the constant 2?


Problem 2: Find dy/dx for the function y = 2√x + 9/x³.

Hint: Don't even think about taking the derivative until you rewrite this! How do you write √x and 1/x³ using exponents? Watch your signs when you subtract 1 from a negative exponent.