Skip to main content

Introduction to Derivatives: Rules That Make Calculus Practical

Learn the Power Rule and basic derivative rules that let you find instantaneous rates of change without computing limits by hand every time.

Lesson 6 of 10 Calculus Foundations Intermediate ⏱ 10 min read
πŸ”₯ Why This Matters

Computing limits from the definition works but is slow. Mathematicians discovered elegant shortcut rules β€” proven from the limit definition β€” that let you differentiate any polynomial in seconds. A civil engineer modeling a bridge deflection curve can find its rate of bend at any point instantly. A data scientist optimizing a machine learning model computes gradients using derivative rules millions of times per second. Understanding derivative rules is the point where calculus becomes a practical tool, not just a concept.

🎯 What You'll Learn
  • Apply the Power Rule to differentiate polynomial terms instantly
  • Use the Constant Rule, Sum Rule, and Constant Multiple Rule
  • Evaluate derivatives at specific points to find instantaneous rates
πŸ“– Key Vocabulary
Derivative \(f'(x)\)A new function giving the slope (instantaneous rate) of \(f\) at every \(x\). Power RuleIf \(f(x) = x^n\), then \(f'(x) = nx^{n-1}\). Constant RuleThe derivative of a constant is 0. \(\frac{d}{dx}[c] = 0\). Sum Rule\(\frac{d}{dx}[f + g] = f' + g'\) β€” differentiate term by term. Constant Multiple Rule\(\frac{d}{dx}[c \cdot f(x)] = c \cdot f'(x)\) β€” pull constants through the derivative. Notation \(\frac{dy}{dx}\)Leibniz notation for derivative β€” "the rate of change of y with respect to x."
Key Concept β€” The Core Rules
\[ \textbf{Power Rule: } \quad \frac{d}{dx}[x^n] = nx^{n-1} \] \[ \frac{d}{dx}[c] = 0 \qquad \frac{d}{dx}[cx^n] = cnx^{n-1} \qquad \frac{d}{dx}[f+g] = f' + g' \]

These three rules (plus the power rule) let you differentiate any polynomial. Every term is differentiated independently; constants multiply through.

Power Rule Quick Reference

\(f(x)\)\(f'(x)\)Meaning
\(x^1\)\(1\)Linear β†’ constant slope
\(x^2\)\(2x\)Parabola β†’ slope grows linearly
\(x^3\)\(3x^2\)Cubic β†’ slope is a parabola
\(x^{-1} = 1/x\)\(-x^{-2}\)Works for negative exponents too
Worked Example 1 β€” Basic: Differentiate a Polynomial

Find \(f'(x)\) for \(f(x) = 4x^3 - 7x^2 + 3x - 9\).

\[ f'(x) = 4 \cdot 3x^2 - 7 \cdot 2x + 3 \cdot 1 - 0 = 12x^2 - 14x + 3 \]
Worked Example 2 β€” Intermediate: Instantaneous Rate at a Point

A manufacturer's cost function is \(C(q) = 0.02q^3 - 1.5q^2 + 80q + 500\). Find the marginal cost when \(q = 30\).

\[ C'(q) = 0.06q^2 - 3q + 80 \] \[ C'(30) = 0.06(900) - 3(30) + 80 = 54 - 90 + 80 = \mathbf{\$44 \text{ per unit}} \]
Worked Example 3 β€” Real World: Physics β€” Velocity & Acceleration

Position: \(s(t) = t^3 - 6t^2 + 9t\). Find velocity and acceleration at \(t = 4\).

\[ v(t) = s'(t) = 3t^2 - 12t + 9 \qquad \Rightarrow \qquad v(4) = 48 - 48 + 9 = \mathbf{9 \text{ m/s}} \] \[ a(t) = v'(t) = 6t - 12 \qquad \Rightarrow \qquad a(4) = 24 - 12 = \mathbf{12 \text{ m/s}^2} \]
✏️ Quick Check
  1. Differentiate \(g(x) = 5x^4 - 2x + 7\).
  2. Find the slope of \(f(x) = x^3 + 3x\) at \(x = 2\).
  3. If \(f'(x) = 6x - 4\), at what \(x\) is the slope zero?
β–Ά Show Answers
  1. \(g'(x) = 20x^3 - 2\).
  2. \(f'(x) = 3x^2 + 3\). At \(x=2\): \(3(4)+3 = \mathbf{15}\).
  3. \(6x - 4 = 0 \Rightarrow x = \mathbf{2/3}\).
⚠️ Common Mistakes
  • Forgetting to bring down the exponent AND reduce it: \(x^5 \to 5x^4\), not \(5x^5\) or \(x^4\).
  • Differentiating constants as if they're variables: \(f(x) = 7 \Rightarrow f'(x) = 0\), not 7.
  • Applying the power rule to \(e^x\) or \(\ln x\): Those require different rules (taught in later courses).
βœ… Key Takeaways
  • Power Rule: \(\frac{d}{dx}[x^n] = nx^{n-1}\) β€” bring down the exponent, reduce by 1.
  • Constants vanish when differentiated; constant multiples survive as factors.
  • Differentiate polynomials term by term using the Sum Rule.
  • Evaluate \(f'(a)\) to get the instantaneous rate at a specific point \(x = a\).
πŸ’Ό Career Connection β€” Economics & Data Science

Economists compute marginal cost, marginal revenue, and marginal profit by differentiating cost/revenue functions β€” the exact skill in Example 2. Data scientists train neural networks using gradient descent: repeatedly computing derivatives of the loss function to update model weights. The Power Rule is the first step in understanding how millions of automated predictions improve over time.

Calculator Connection

The Derivative Calculator and Power Rule Derivative calculator compute derivatives symbolically and evaluate them at any point. Use them to verify your hand-differentiated answers and explore how the slope function behaves.

Try it with the Calculator

Apply what you've learned with these tools.

Derivative Calculator (Detailed)
Calculate derivatives using various rules with step-by-step logic.
Use calculator β†’
Power Rule Derivative
Calculates the derivative of a single term using the Power Rule.
Use calculator β†’
← Previous Lesson
Back to
Instantaneous Rate of Change: The Bridge to Derivatives
Continue Learning
Up Next: Understanding Derivatives: What the Slope Function Tells You
Next Lesson →
Test Your Knowledge

Introduction to Derivatives: Rules That Make Calculus Practical - Quiz

5 questions per attempt  Β·  Intermediate  Β·  Pass at 70%

Start Quiz β†’

More in Calculus Foundations

Functions and Graphs: The Language of Calculus Slopes and Rates of Change Linear vs. Nonlinear Relationships
← All Calculus Foundations lessons