Unit 3: Differentiation

Composite, Implicit, and Inverse Functions

← Back to Units

📋 Unit Overview

Unit 3 extends your differentiation skills to more complex functions. You'll learn how to:

  • Differentiate composite functions using the chain rule
  • Find derivatives of implicitly defined functions
  • Differentiate inverse functions
  • Apply logarithmic differentiation
  • Use higher-order derivatives
  • Solve related rates problems
💡 Key Insight: This unit builds on the basic differentiation rules from Unit 2, but now you'll work with functions that are "nested" inside other functions, defined implicitly, or are inverses of other functions. These techniques are essential for advanced calculus applications.

🔗 The Chain Rule

Understanding Composite Functions

A composite function is a function within a function: f(g(x)). The chain rule tells us how to differentiate these:

d/dx[f(g(x))] = f'(g(x)) · g'(x)

"Derivative of outside times derivative of inside"

🎯 Key Concept

Think of it as: "What's the derivative of the outside function, evaluated at the inside function, times the derivative of the inside function."

📝 Example 3.1: Basic Chain Rule

Find the derivative of f(x) = (x² + 3x)⁵

Solution:

Let g(x) = x² + 3x (inside function)

Let f(u) = u⁵ (outside function)

g'(x) = 2x + 3

f'(u) = 5u⁴

Using chain rule: f'(x) = f'(g(x)) · g'(x) = 5(x² + 3x)⁴ · (2x + 3)

Multiple Chain Rule Applications

Sometimes you need to apply the chain rule multiple times:

📝 Example 3.2: Multiple Chain Rules

Find the derivative of f(x) = sin(cos(x²))

Solution:

Let u = x², v = cos(u), f(x) = sin(v)

du/dx = 2x

dv/du = -sin(u) = -sin(x²)

df/dv = cos(v) = cos(cos(x²))

Using chain rule: f'(x) = (df/dv)(dv/du)(du/dx)

= cos(cos(x²)) · (-sin(x²)) · 2x

= -2x sin(x²) cos(cos(x²))

🔍 Implicit Differentiation

What is Implicit Differentiation?

When a function is defined implicitly (not solved for y), we use implicit differentiation:

Differentiate both sides with respect to x
Solve for dy/dx

Remember: d/dx[y] = dy/dx

🎯 Key Concept

When you see y in an equation, treat it as a function of x and use the chain rule: d/dx[y²] = 2y · dy/dx

📝 Example 3.3: Basic Implicit Differentiation

Find dy/dx for x² + y² = 25

Solution:

Differentiate both sides with respect to x:

d/dx[x²] + d/dx[y²] = d/dx[25]

2x + 2y · dy/dx = 0

2y · dy/dx = -2x

dy/dx = -x/y

More Complex Implicit Functions

📝 Example 3.4: Complex Implicit Differentiation

Find dy/dx for x³ + y³ = 3xy

Solution:

Differentiate both sides:

3x² + 3y² · dy/dx = 3y + 3x · dy/dx

3y² · dy/dx - 3x · dy/dx = 3y - 3x²

dy/dx(3y² - 3x) = 3y - 3x²

dy/dx = (3y - 3x²)/(3y² - 3x) = (y - x²)/(y² - x)

🔄 Inverse Functions

Derivative of Inverse Functions

If f and g are inverse functions, then:

g'(x) = 1/f'(g(x))

The derivative of an inverse function

🎯 Key Concept

To find the derivative of an inverse function, take the reciprocal of the derivative of the original function, evaluated at the inverse function.

📝 Example 3.5: Derivative of Inverse

If f(x) = x³ + 2x + 1, find (f⁻¹)'(4)

Solution:

First, find f'(x) = 3x² + 2

We need to find f⁻¹(4), which means f(x) = 4

x³ + 2x + 1 = 4 → x³ + 2x - 3 = 0 → x = 1

So f⁻¹(4) = 1

(f⁻¹)'(4) = 1/f'(f⁻¹(4)) = 1/f'(1) = 1/(3(1)² + 2) = 1/5

Common Inverse Function Derivatives

Function Inverse Derivative of Inverse
sin(x) arcsin(x) 1/√(1-x²)
cos(x) arccos(x) -1/√(1-x²)
tan(x) arctan(x) 1/(1+x²)
ln(x) 1/x

📊 Logarithmic Differentiation

Use logarithmic differentiation when you have functions of the form f(x)^(g(x)) or complex products/quotients:

1. Take the natural log of both sides
2. Use log properties to simplify
3. Differentiate implicitly
4. Solve for dy/dx
📝 Example 3.6: Logarithmic Differentiation

Find the derivative of f(x) = x^x

Solution:

Let y = x^x

Take natural log: ln(y) = ln(x^x) = x ln(x)

Differentiate implicitly: (1/y) · dy/dx = ln(x) + x · (1/x) = ln(x) + 1

Solve for dy/dx: dy/dx = y(ln(x) + 1) = x^x(ln(x) + 1)

📈 Higher-Order Derivatives

Higher-order derivatives are derivatives of derivatives:

f''(x) = d²y/dx²

Second derivative

f'''(x) = d³y/dx³

Third derivative

f⁽ⁿ⁾(x) = dⁿy/dxⁿ

nth derivative

📝 Example 3.7: Higher-Order Derivatives

Find f''(x) for f(x) = x⁴ - 3x² + 2x

Solution:

f'(x) = 4x³ - 6x + 2

f''(x) = 12x² - 6

f'''(x) = 24x

f⁽⁴⁾(x) = 24

🧮 Practice Problems

Problem 1

Find the derivative of f(x) = (x² + 1)³(2x - 3)⁴

Solution:

Use product rule with chain rule:

Let u = (x² + 1)³ and v = (2x - 3)⁴

u' = 3(x² + 1)² · 2x = 6x(x² + 1)²

v' = 4(2x - 3)³ · 2 = 8(2x - 3)³

f'(x) = u'v + uv' = 6x(x² + 1)²(2x - 3)⁴ + (x² + 1)³ · 8(2x - 3)³

= 2(x² + 1)²(2x - 3)³[3x(2x - 3) + 4(x² + 1)]

Problem 2

Find dy/dx for x²y + y³ = 6x

Solution:

Differentiate implicitly:

d/dx[x²y] + d/dx[y³] = d/dx[6x]

2xy + x² · dy/dx + 3y² · dy/dx = 6

dy/dx(x² + 3y²) = 6 - 2xy

dy/dx = (6 - 2xy)/(x² + 3y²)

Problem 3

Find the derivative of f(x) = arcsin(2x)

Solution:

Using the derivative of inverse sine with chain rule:

f'(x) = 1/√(1 - (2x)²) · d/dx[2x]

= 1/√(1 - 4x²) · 2

= 2/√(1 - 4x²)

💡 Exam Tips

🎯 Multiple Choice
  • Look for chain rule patterns in composite functions
  • Remember to multiply by dy/dx in implicit differentiation
  • Use logarithmic differentiation for complex functions
  • Check your work by taking derivatives of answers
✍️ Free Response
  • Show all steps clearly
  • State which rule you're using
  • Be careful with implicit differentiation notation
  • Simplify your final answers
⚠️ Common Mistakes:
  • Forgetting to multiply by dy/dx in implicit differentiation
  • Not applying the chain rule correctly
  • Mixing up inverse function derivatives
  • Not simplifying complex expressions

🚀 Ready to Test Your Knowledge?

Take our comprehensive Unit 3 practice test with 15 multiple choice questions and 6 free response problems!

📊
15 MC Questions

Progressive difficulty levels

✍️
6 Free Response

Show your work

⏱️
45 Min Timer

Real exam conditions

🎯 Start Practice Test Now

Get instant feedback and detailed solutions!

➡️ What's Next?

Ready for the next challenge?

In Unit 4, you'll learn about applications of derivatives including optimization and related rates.

Go to Unit 4: Applications of Derivatives →