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 super-fast shortcut to find the derivative (or slope) of functions like x-squared or x-cubed, without using the long limit process.

Why this matters

Imagine you're designing a new video game. Your main character, Priya, has a special jump move. The path of her jump follows the curve h(t) = -16t^2 + 40t, where h is her height and t is time in seconds. To make the animation look realistic, you need to know her exact vertical speed at any given moment. Is she moving up or down, and how fast?

That instantaneous speed is a derivative. In the last lesson, you learned how to find it using the long, tedious limit definition. It works, but it's like calculating a baseball player's batting average by hand for every single game. What if there were a shortcut? A simple pattern that works for all these polynomial-type functions? There is. It's called the Power Rule, and it's one of the most important tools you'll learn in calculus.

Concept overview

flowchart TD
    A[Start: Find derivative of f(x)] --> B{Is f(x) in the form x^n?};
    B -- Yes --> C[Apply Power Rule: n * x^(n-1)];
    B -- No --> D{Can it be rewritten as x^n?};
    D -- Yes --> E[Rewrite roots or fractions];
    E --> C;
    C --> F[Simplify the result];
    F --> G[End];
    D -- No --> H[Use a different rule (e.g., for e^x, sin(x))];
    H --> G;
This diagram is a flowchart that shows the decision-making process for applying the Power Rule. It begins by asking if a function is in the form x^n. If yes, it directs to apply the rule. If no, it asks if the function can be rewritten, guiding the user to do so before applying the rule, or to use a different rule if it cannot be rewritten.

Core explanation

Alright, let's get into it. You've spent some time wrestling with the limit definition of the derivative:

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

It's the formal foundation of derivatives, and it’s crucial for understanding what a derivative is: the instantaneous rate of change. But for actually calculating derivatives, it’s a bit of a workout.

Let’s use it one last time on a familiar function, f(x) = x^2. f'(x) = lim (h→0) of [(x + h)^2 - x^2] / h = lim (h→0) of [x^2 + 2xh + h^2 - x^2] / h = lim (h→0) of [2xh + h^2] / h = lim (h→0) of h(2x + h) / h = lim (h→0) of (2x + h) = 2x

So, the derivative of x^2 is 2x.

Now, what about f(x) = x^3? If you did the algebra (which involves expanding (x+h)^3), you'd find the derivative is 3x^2.

What about f(x) = x^4? You'd find the derivative is 4x^3.

Do you see the pattern here?

  • For x^2, the derivative is 2x^1.
  • For x^3, the derivative is 3x^2.
  • For x^4, the derivative is 4x^3.

It looks like the original exponent moves to the front as a multiplier, and the new exponent is just one less than the old one. This, my friends, is the Power Rule.

The Power Rule Defined

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

*`f'(x) = n x^(n-1)`**

Think of it as a simple, two-step recipe:

  1. 1
    Bring the exponent down
    Multiply the term by its original exponent.
  2. 2
    Subtract one from the exponent
    The new exponent is one less than the original.

That's it. That's the whole rule. It's a beautiful shortcut that saves us from that messy limit definition for a huge class of functions.

Expanding the Power Rule: Beyond Simple Integers

This rule isn't just for nice, positive integers like 2, 3, or 4. It works for any real number n: positive, negative, or fractional. This is where the Power Rule really shows its strength, but it's also where most students get stuck.

The key is this: Before you can apply the Power Rule, you must rewrite your function so it looks exactly like x^n.

Let's look at a couple of cases.

Case 1: Radical Functions (like square roots)

What's the derivative of f(x) = √x?

At first glance, it doesn't look like x^n. But we know from algebra that we can rewrite roots as fractional exponents.

√x is the same as x^(1/2).

Now it's in the right form! Let's apply the rule where n = 1/2.

  1. 1
    Bring the exponent down
    (1/2) * x^(1/2)
  2. 2
    Subtract one from the exponent
    The new exponent is (1/2) - 1 = -1/2.

So, f'(x) = (1/2)x^(-1/2).

We can clean this up by rewriting the negative exponent back into a fraction and the fractional exponent back into a root: f'(x) = 1 / (2 * x^(1/2)) = 1 / (2√x)

Case 2: Rational Functions (like fractions with x in the denominator)

What's the derivative of g(x) = 1/x^3?

Again, we need to rewrite it first. Using our exponent rules, we know that 1/x^3 is the same as x^(-3).

Perfect. Now it's in x^n form, where n = -3. Let's apply the rule.

  1. 1
    Bring the exponent down
    -3 * x^(-3)
  2. 2
    Subtract one from the exponent
    The new exponent is -3 - 1 = -4. This is a huge trip-up spot. Be careful with your signs! Subtracting one from a negative number makes it more negative.

So, g'(x) = -3x^(-4).

To write it without negative exponents, we can move the x^(-4) back to the denominator: g'(x) = -3 / x^4

The Power Rule is your first major shortcut in calculus. Master the rewrites for roots and fractions, and you'll be able to find derivatives for a whole new world of functions in seconds.

Worked examples

Let's walk through a few examples together. The process is always the same: rewrite, apply the rule, simplify.

Example 1

A Simple Integer Power

Problem: Find the derivative of f(x) = x^9.

Solution:

  1. 1
    Check the form
    The function is already in the form x^n, where n = 9. We don't need to do any rewriting.
  2. 2
    Apply the Power Rule
    The rule is d/dx(x^n) = n * x^(n-1).
    • Bring the exponent 9 down as a multiplier.
    • Subtract 1 from the exponent: 9 - 1 = 8.
  3. 3
    Write the result
    f'(x) = 9x^8

Example 2

A Function with a Root

Problem: Find the derivative of g(t) = ⁴√t.

Solution:

  1. 1
    Check the form
    This is not in the form t^n. Our first and most important step is to rewrite it.
    • Why: The Power Rule only works on the (variable)^(number) structure. A radical sign is just another way of writing a fractional exponent.
    • The fourth root of t is the same as t raised to the 1/4 power. So, g(t) = t^(1/4).
  2. 2
    Apply the Power Rule
    Now we can use the rule with n = 1/4.
    • Bring the exponent 1/4 down: (1/4) * t^(1/4)
    • Subtract 1 from the exponent: 1/4 - 1 = 1/4 - 4/4 = -3/4.
  3. 3
    Write the result
    g'(t) = (1/4)t^(-3/4)

A note on simplifying: While the above answer is technically correct, your teacher or the AP exam might expect you to write it without negative exponents. g'(t) = 1 / (4 * t^(3/4)) You could even write it back in radical form: g'(t) = 1 / (4 * ⁴√t³)


Example 3

A Function with a Variable in the Denominator

Problem: Find dy/dx for y = 1/√x.

Solution:

  1. 1
    Check the form
    This requires a two-step rewrite.
    • Why: We have both a root and a fraction. We handle them one at a time. First, let's rewrite the root in the denominator: y = 1 / x^(1/2).
    • Now, we bring the term up from the denominator by making the exponent negative: y = x^(-1/2). Now it's finally in the x^n form we need.
  2. 2
    Apply the Power Rule
    We use the rule with n = -1/2.
    • Bring the exponent -1/2 down: (-1/2) * x^(-1/2)
    • Subtract 1 from the exponent: -1/2 - 1 = -1/2 - 2/2 = -3/2.
  3. 3
    Write the result
    dy/dx = (-1/2)x^(-3/2)

Simplifying for the final answer: dy/dx = -1 / (2 * x^(3/2))

Try it yourself

Ready to try a couple on your own? Remember the process: rewrite if necessary, then apply the rule.

Problem 1: Find the derivative of f(x) = x^200.

Hint: Don't be intimidated by the large number. The rule works exactly the same.


Problem 2: Find dy/dx if y = 1 / (x * √x).

Hint: This one requires some algebra first. How can you write `x √xas a single term with one exponent? Remember thatx = x^1and√x = x^(1/2)`. When you multiply powers with the same base, you add the exponents.*