Derivative Examples- Calculus Problems with Solutions
What Derivatives Actually Are (No Nonsense Explanation)
A derivative measures instantaneous rate of change. That's it. If you have a function f(x), the derivative f'(x) tells you how fast f(x) is changing at any point x.
Think of it this way: if f(x) represents your position, f'(x) is your speed. If f(x) is your bank balance, f'(x) is how quickly money flows in or out.
Most students overcomplicate this. Derivatives are just slopes of tangent lines. You don't need philosophy—you need rules and practice.
The Essential Derivative Rules You Actually Need
Forget memorizing 50 formulas. These are the only rules that matter:
- Power Rule: d/dx[xⁿ] = n·xⁿ⁻¹
- Product Rule: d/dx[f·g] = f'g + fg'
- Quotient Rule: d/dx[f/g] = (f'g - fg')/g²
- Chain Rule: d/dx[f(g(x))] = f'(g(x))·g'(x)
- Trig Derivatives: d/dx[sin x] = cos x, d/dx[cos x] = -sin x
That's the entire toolkit. Everything else is combinations of these.
Derivative Examples with Full Solutions
Example 1: Power Rule Basics
Problem: Find the derivative of f(x) = 3x⁴ + 2x² - 5x + 7
Solution:
Apply the power rule to each term separately:
f'(x) = 3·4x³ + 2·2x¹ - 5·1x⁰ + 0
f'(x) = 12x³ + 4x - 5
That's it. The constant 7 disappears because its derivative is zero. The -5x term becomes just -5 because x⁰ = 1.
Example 2: Product Rule in Action
Problem: Find the derivative of f(x) = x²·sin(x)
Solution:
Here you have two functions multiplied: x² and sin(x).
Let f = x², so f' = 2x
Let g = sin(x), so g' = cos(x)
Apply the product rule: f'g + fg'
f'(x) = 2x·sin(x) + x²·cos(x)
You cannot simplify this further. The answer is the sum of both terms.
Example 3: Quotient Rule (The Ugly One)
Problem: Find the derivative of f(x) = x³/(x + 1)
Solution:
Let f = x³, so f' = 3x²
Let g = x + 1, so g' = 1
Apply the quotient rule: (f'g - fg')/g²
f'(x) = [3x²(x + 1) - x³(1)]/(x + 1)²
Simplify the numerator:
f'(x) = [3x³ + 3x² - x³]/(x + 1)²
f'(x) = [2x³ + 3x²]/(x + 1)²
You can factor out x² if you want: f'(x) = x²(2x + 3)/(x + 1)²
Example 4: Chain Rule (Nested Functions)
Problem: Find the derivative of f(x) = sin(3x² + 2)
Solution:
This is a function inside another function. You need the chain rule.
Outer function: sin(u) where u = 3x² + 2
Inner function: u = 3x² + 2
Derivative of outer: cos(u)
Derivative of inner: 6x
Multiply them together:
f'(x) = cos(3x² + 2) · 6x
f'(x) = 6x·cos(3x² + 2)
Example 5: Mixed Rules (The Real World)
Problem: Find the derivative of f(x) = (2x + 1)³
Solution:
This combines the chain rule with the power rule.
Outer function: u³ where u = 2x + 1
Inner function: u = 2x + 1
Derivative of outer: 3u²
Derivative of inner: 2
f'(x) = 3(2x + 1)² · 2
f'(x) = 6(2x + 1)²
Example 6: Exponential and Logarithmic Functions
Problem: Find the derivative of f(x) = eˣ·ln(x)
Solution:
You need the product rule here, plus the derivatives of eˣ and ln(x).
Remember: d/dx[eˣ] = eˣ and d/dx[ln(x)] = 1/x
Let f = eˣ, so f' = eˣ
Let g = ln(x), so g' = 1/x
f'(x) = eˣ·ln(x) + eˣ·(1/x)
f'(x) = eˣ[ln(x) + 1/x]
Derivative Rules Comparison Table
| Rule | Formula | When to Use |
|---|---|---|
| Power Rule | d/dx[xⁿ] = n·xⁿ⁻¹ | Single term with power |
| Product Rule | f'g + fg' | Two functions multiplied |
| Quotient Rule | (f'g - fg')/g² | One function divided by another |
| Chain Rule | f'(g(x))·g'(x) | Nested functions |
How to Actually Find Derivatives: Step-by-Step
Here's the process that works every time:
- Identify the structure. Is it a single term? A product? A quotient? A nested function?
- Pick the right rule. Don't force the chain rule if simple power rule applies.
- Apply the rule systematically. Write out f, f', g, g' before plugging into the formula.
- Simplify. Combine like terms. Factor if it makes the answer cleaner.
- Check your work. Does the result look reasonable? Test with a simple value.
Common Mistakes That Will Cost You Points
- Forgetting the chain rule on nested functions like sin(x²). You must multiply by the derivative of the inside.
- Messing up the quotient rule by putting terms in the wrong order. Remember: top-derivative times bottom, minus top times bottom-derivative.
- Dropping negative signs when differentiating cos(x). The derivative is -sin(x), not sin(x).
- Not distributing after applying the product or chain rule. The derivative of (2x + 1)³ is 3(2x + 1)² · 2, not just 3(2x + 1)².
Higher-Order Derivatives (Just in Case)
Sometimes you need the second derivative or higher. It's straightforward—just take the derivative of the derivative.
Example: If f(x) = 4x³ + 2x²
f'(x) = 12x² + 4x
f''(x) = 24x + 4
f'''(x) = 24
f⁽⁴⁾(x) = 0
After a few rounds, polynomials eventually become zero. Trigonometric and exponential functions cycle or repeat.
Quick Reference: Derivative of Common Functions
- d/dx[xⁿ] = n·xⁿ⁻¹
- d/dx[eˣ] = eˣ
- d/dx[aˣ] = aˣ·ln(a)
- d/dx[ln(x)] = 1/x
- d/dx[sin(x)] = cos(x)
- d/dx[cos(x)] = -sin(x)
- d/dx[tan(x)] = sec²(x)
- d/dx[constant] = 0
Print this list. Refer to it until these become automatic. You won't always have a formula sheet on exams.
When to Use Which Rule: The Decision Tree
If you see a single variable raised to a power → power rule
If you see two things multiplied → product rule
If you see one thing divided by another → quotient rule
If you see something inside something else → chain rule
Many problems combine multiple rules. In those cases, work from the outside in or identify the outermost operation first.