📚 Comprehensive Calculus Study Guide

Derivatives, Differentiation Rules, and Function Analysis

Modules 2, 3, & 4 - Complete Reference

📋 Study Guide Overview

Table of Contents

  • Module 2: Derivatives and Differentiation Rules
    • Basic Derivative Concepts & Limit Definition
    • Derivative as a Function
    • Basic Differentiation Rules (Power, Constant, Sum, Difference)
    • Product Rule & Quotient Rule
    • Chain Rule & Composite Functions
    • Derivatives of Trigonometric Functions
  • Module 3: Advanced Applications
    • Implicit Differentiation
    • Related Rates Problems
    • Linear Approximations & Differentials
    • Tangent Line Equations
  • Module 4: Advanced Functions
    • Exponential Functions & Properties
    • Logarithmic Functions & Derivatives
    • Inverse Functions & Their Derivatives
    • Inverse Trigonometric Functions
    • Logarithmic Differentiation

🎯 Study Strategy

This guide contains every rule, formula, and technique you need for calculus derivatives. Each section builds upon the previous one, so master the fundamentals before moving to advanced topics.

📐 Module 2: Derivatives and Differentiation Rules

🎯 Fundamental Concept: The Derivative

Definition of Derivative

The derivative of a function $f(x)$ at point $x = a$ is:

$$f'(a) = \lim_{h \to 0} \frac{f(a+h) - f(a)}{h}$$

Alternatively:

$$f'(a) = \lim_{x \to a} \frac{f(x) - f(a)}{x - a}$$

Geometric Interpretation

The derivative represents the instantaneous rate of change or the slope of the tangent line to the curve at a given point.

⚙️ Basic Differentiation Rules

1. Constant Rule

If $f(x) = c$ (constant), then: $$\frac{d}{dx}(c) = 0$$

Memory tip: The slope of a horizontal line is zero.

2. Power Rule

If $f(x) = x^n$, then: $$\frac{d}{dx}(x^n) = nx^{n-1}$$

Process: Bring down the power, subtract 1 from the exponent.

3. Constant Multiple Rule

If $f(x) = c \cdot g(x)$, then: $$\frac{d}{dx}[c \cdot g(x)] = c \cdot \frac{d}{dx}[g(x)]$$

Rule: Constants "factor out" of derivatives.

4. Sum/Difference Rule

$$\frac{d}{dx}[f(x) \pm g(x)] = \frac{d}{dx}[f(x)] \pm \frac{d}{dx}[g(x)]$$

Rule: Derivative of a sum equals sum of derivatives.

🔀 Product Rule & Quotient Rule

Product Rule

If $h(x) = f(x) \cdot g(x)$, then: $$h'(x) = f'(x)g(x) + f(x)g'(x)$$
Memory Device: "First times derivative of second, plus second times derivative of first"

Example:

Find $\frac{d}{dx}[(x^2 + 1)(3x - 2)]$

Solution:

$f(x) = x^2 + 1$, so $f'(x) = 2x$

$g(x) = 3x - 2$, so $g'(x) = 3$

Result: $2x(3x - 2) + (x^2 + 1)(3) = 6x^2 - 4x + 3x^2 + 3 = 9x^2 - 4x + 3$

Quotient Rule

If $h(x) = \frac{f(x)}{g(x)}$, then: $$h'(x) = \frac{f'(x)g(x) - f(x)g'(x)}{[g(x)]^2}$$
Memory Device: "Low D-High minus High D-Low, over Low squared"

Example:

Find $\frac{d}{dx}\left[\frac{x^2}{x+1}\right]$

Solution:

$f(x) = x^2$, so $f'(x) = 2x$

$g(x) = x+1$, so $g'(x) = 1$

Result: $\frac{2x(x+1) - x^2(1)}{(x+1)^2} = \frac{2x^2 + 2x - x^2}{(x+1)^2} = \frac{x^2 + 2x}{(x+1)^2}$

🔗 Chain Rule

Chain Rule Formula

If $h(x) = f(g(x))$, then:

$$h'(x) = f'(g(x)) \cdot g'(x)$$

Alternative notation: If $y = f(u)$ and $u = g(x)$, then:

$$\frac{dy}{dx} = \frac{dy}{du} \cdot \frac{du}{dx}$$

Chain Rule Process:

  1. Identify the outer function $f$ and inner function $g$
  2. Find the derivative of the outer function
  3. Evaluate the outer derivative at the inner function
  4. Multiply by the derivative of the inner function

Chain Rule Examples:

Example 1: $\frac{d}{dx}[(x^2 + 3x)^5]$

Outer: $u^5$, Inner: $x^2 + 3x$

Result: $5(x^2 + 3x)^4 \cdot (2x + 3)$

Example 2: $\frac{d}{dx}[\sin(3x^2)]$

Outer: $\sin(u)$, Inner: $3x^2$

Result: $\cos(3x^2) \cdot 6x$

📊 Derivatives of Trigonometric Functions

Standard Trigonometric Derivatives

$$\frac{d}{dx}[\sin x] = \cos x$$ $$\frac{d}{dx}[\cos x] = -\sin x$$ $$\frac{d}{dx}[\tan x] = \sec^2 x$$
$$\frac{d}{dx}[\csc x] = -\csc x \cot x$$ $$\frac{d}{dx}[\sec x] = \sec x \tan x$$ $$\frac{d}{dx}[\cot x] = -\csc^2 x$$

🔗 Module 3: Advanced Applications

🔄 Implicit Differentiation

When to Use Implicit Differentiation

Use when the equation cannot be easily solved for $y$ in terms of $x$, or when both variables are mixed together.

Implicit Differentiation Process:

  1. Differentiate both sides of the equation with respect to $x$
  2. Use the chain rule: when differentiating $y$ terms, multiply by $\frac{dy}{dx}$
  3. Collect all terms with $\frac{dy}{dx}$ on one side
  4. Factor out $\frac{dy}{dx}$ and solve

Example: Find $\frac{dy}{dx}$ if $x^2 + y^2 = 25$

Step 1: Differentiate both sides

$\frac{d}{dx}[x^2 + y^2] = \frac{d}{dx}[25]$

Step 2: Apply differentiation rules

$2x + 2y\frac{dy}{dx} = 0$

Step 3: Solve for $\frac{dy}{dx}$

$2y\frac{dy}{dx} = -2x$

$\frac{dy}{dx} = -\frac{x}{y}$

Complex Example: $x^3 + x^2y + 4y^2 = 27$

Differentiate: $3x^2 + 2xy + x^2\frac{dy}{dx} + 8y\frac{dy}{dx} = 0$

Factor: $3x^2 + 2xy + \frac{dy}{dx}(x^2 + 8y) = 0$

Solve: $\frac{dy}{dx} = -\frac{3x^2 + 2xy}{x^2 + 8y}$

⏱️ Related Rates

Related Rates Strategy

Problems where you know the rate of change of one quantity and need to find the rate of change of a related quantity.

Related Rates Process:

  1. Draw a diagram (if possible)
  2. Assign symbols for functions of time
  3. Write given information (known rates)
  4. Find an equation relating the quantities
  5. Differentiate with respect to time using chain rule
  6. Substitute known values and solve

Example: Balloon Problem

Problem: A spherical balloon is being inflated at 10 cm³/s. When radius = 8 cm, find the rate at which radius is increasing.

Given: $\frac{dV}{dt} = 10$ cm³/s, find $\frac{dr}{dt}$ when $r = 8$ cm

Equation: $V = \frac{4}{3}\pi r^3$

Differentiate: $\frac{dV}{dt} = 4\pi r^2 \frac{dr}{dt}$

Substitute: $10 = 4\pi(8)^2 \frac{dr}{dt} = 256\pi \frac{dr}{dt}$

Solve: $\frac{dr}{dt} = \frac{10}{256\pi} = \frac{5}{128\pi}$ cm/s

Example: Ladder Problem

Problem: An 18-foot ladder leans against a wall. The base moves away from the wall at 5 ft/s. When the base is 4 feet from the wall, how fast is the top sliding down?

Setup: Let $x$ = distance from wall to base, $y$ = height of top

Given: $\frac{dx}{dt} = 5$ ft/s, find $\frac{dy}{dt}$ when $x = 4$

Equation: $x^2 + y^2 = 18^2 = 324$

When $x = 4$: $16 + y^2 = 324$, so $y = \sqrt{308} = 2\sqrt{77}$

Differentiate: $2x\frac{dx}{dt} + 2y\frac{dy}{dt} = 0$

Substitute: $2(4)(5) + 2(2\sqrt{77})\frac{dy}{dt} = 0$

Solve: $\frac{dy}{dt} = -\frac{40}{4\sqrt{77}} = -\frac{10}{\sqrt{77}}$ ft/s

📏 Linear Approximations & Differentials

Linear Approximation Formula

The linear approximation of $f(x)$ near $x = a$ is:

$$L(x) = f(a) + f'(a)(x - a)$$

This gives the equation of the tangent line at $(a, f(a))$.

When to Use Linear Approximations

Use when you need to estimate function values near a point where you know both $f(a)$ and $f'(a)$, especially when exact computation is difficult.

Example: Approximate $\sqrt{7.95}$

Setup: Use $f(x) = \sqrt{x}$ near $a = 8$

$f(8) = \sqrt{8} = 2\sqrt{2} \approx 2.828$

$f'(x) = \frac{1}{2\sqrt{x}}$, so $f'(8) = \frac{1}{2\sqrt{8}} = \frac{1}{4\sqrt{2}}$

Linear approximation:

$L(x) = 2\sqrt{2} + \frac{1}{4\sqrt{2}}(x - 8)$

Estimate: $L(7.95) = 2\sqrt{2} + \frac{1}{4\sqrt{2}}(-0.05) \approx 2.819$

Differential Notation

For small changes, we write:

$$dy = f'(x) dx$$

This approximates the change in $y$ when $x$ changes by $dx$.

📐 Tangent Line Equations

Finding Tangent Line Equations:

  1. Find the point of tangency $(a, f(a))$
  2. Find the slope $m = f'(a)$
  3. Use point-slope form: $y - f(a) = f'(a)(x - a)$

Example: Tangent to $f(x) = x^3 - 4x$ at $x = 2$

Point: $(2, f(2)) = (2, 8 - 8) = (2, 0)$

Slope: $f'(x) = 3x^2 - 4$, so $f'(2) = 12 - 4 = 8$

Equation: $y - 0 = 8(x - 2)$, so $y = 8x - 16$

📈 Module 4: Advanced Functions

📊 Exponential Functions

Exponential Function Properties

For $f(x) = b^x$ where $b > 0, b \neq 1$:

  • Domain: $(-\infty, \infty)$
  • Range: $(0, \infty)$
  • If $b > 1$: increasing function
  • If $0 < b < 1$: decreasing function

The Natural Exponential Function

$f(x) = e^x$ where $e \approx 2.71828...$

Key Property: $\frac{d}{dx}[e^x] = e^x$

The function $e^x$ is its own derivative!

General Exponential Derivative

$$\frac{d}{dx}[b^x] = b^x \ln b$$

Exponential Chain Rule

$$\frac{d}{dx}[e^{u(x)}] = e^{u(x)} \cdot u'(x)$$

Exponential Function Examples:

Example 1: $\frac{d}{dx}[e^{3x^2}] = e^{3x^2} \cdot 6x$

Example 2: $\frac{d}{dx}[2^x] = 2^x \ln 2$

Example 3: $\frac{d}{dx}[e^{\sin x}] = e^{\sin x} \cdot \cos x$

📈 Logarithmic Functions

Logarithm-Exponential Relationship

$y = \log_a x$ if and only if $a^y = x$

Natural Logarithm: $\ln x = \log_e x$

Key Relationships:

  • $\ln(e^x) = x$ for all $x \in \mathbb{R}$
  • $e^{\ln x} = x$ for all $x > 0$

Logarithm Properties

For $x, y > 0$:

$$\log_a(xy) = \log_a x + \log_a y$$ $$\log_a\left(\frac{x}{y}\right) = \log_a x - \log_a y$$ $$\log_a(x^r) = r\log_a x$$

Natural Log Derivative

$$\frac{d}{dx}[\ln x] = \frac{1}{x}$$

General Log Derivative

$$\frac{d}{dx}[\log_a x] = \frac{1}{x \ln a}$$

Log Chain Rule

$$\frac{d}{dx}[\ln u(x)] = \frac{u'(x)}{u(x)}$$

Logarithmic Differentiation

If $y = f(x)$, then: $$\frac{y'}{y} = \frac{d}{dx}[\ln f(x)]$$

Logarithmic Differentiation Example:

Problem: Find $\frac{dy}{dx}$ if $y = x^x$

Step 1: Take natural log of both sides

$\ln y = \ln(x^x) = x \ln x$

Step 2: Differentiate both sides

$\frac{1}{y} \frac{dy}{dx} = \ln x + x \cdot \frac{1}{x} = \ln x + 1$

Step 3: Solve for $\frac{dy}{dx}$

$\frac{dy}{dx} = y(\ln x + 1) = x^x(\ln x + 1)$

🔄 Inverse Functions

Inverse Function Theorem

If $f$ is continuous and one-to-one on an interval, and differentiable at $a$ with $f'(a) \neq 0$, then $f^{-1}$ is differentiable at $b = f(a)$ and:

$$(f^{-1})'(b) = \frac{1}{f'(f^{-1}(b))} = \frac{1}{f'(a)}$$

Finding Inverse Functions:

  1. Write $y = f(x)$
  2. Interchange $x$ and $y$
  3. Solve for $y$
  4. Replace $y$ with $f^{-1}(x)$

Example: Find inverse of $f(x) = \sqrt{x-2}$

Step 1: $y = \sqrt{x-2}$

Step 2: $x = \sqrt{y-2}$

Step 3: $x^2 = y-2$, so $y = x^2 + 2$

Step 4: $f^{-1}(x) = x^2 + 2$ for $x \geq 0$

🔺 Inverse Trigonometric Functions

Inverse Trig Derivatives

$$\frac{d}{dx}[\sin^{-1} x] = \frac{1}{\sqrt{1-x^2}}$$ $$\frac{d}{dx}[\cos^{-1} x] = -\frac{1}{\sqrt{1-x^2}}$$ $$\frac{d}{dx}[\tan^{-1} x] = \frac{1}{1+x^2}$$
$$\frac{d}{dx}[\cot^{-1} x] = -\frac{1}{1+x^2}$$ $$\frac{d}{dx}[\sec^{-1} x] = \frac{1}{|x|\sqrt{x^2-1}}$$ $$\frac{d}{dx}[\csc^{-1} x] = -\frac{1}{|x|\sqrt{x^2-1}}$$

Inverse Trig Examples:

Example 1: $\frac{d}{dx}[\sin^{-1}(3x)] = \frac{3}{\sqrt{1-(3x)^2}} = \frac{3}{\sqrt{1-9x^2}}$

Example 2: $\frac{d}{dx}[\tan^{-1}(x^2)] = \frac{2x}{1+(x^2)^2} = \frac{2x}{1+x^4}$

📝 Complete Formula Reference Sheet

⚙️ Basic Differentiation Rules

Power & Constant Rules

$$\frac{d}{dx}[c] = 0$$ $$\frac{d}{dx}[x^n] = nx^{n-1}$$ $$\frac{d}{dx}[cf(x)] = c \cdot f'(x)$$

Sum & Product Rules

$$\frac{d}{dx}[f \pm g] = f' \pm g'$$ $$\frac{d}{dx}[fg] = f'g + fg'$$ $$\frac{d}{dx}\left[\frac{f}{g}\right] = \frac{f'g - fg'}{g^2}$$

🔗 Chain Rule & Trigonometric Functions

Chain Rule

$$\frac{d}{dx}[f(g(x))] = f'(g(x)) \cdot g'(x)$$

Trigonometric Derivatives

$$\frac{d}{dx}[\sin x] = \cos x$$ $$\frac{d}{dx}[\cos x] = -\sin x$$ $$\frac{d}{dx}[\tan x] = \sec^2 x$$

📈 Exponential & Logarithmic Functions

Exponential Functions

$$\frac{d}{dx}[e^x] = e^x$$ $$\frac{d}{dx}[b^x] = b^x \ln b$$ $$\frac{d}{dx}[e^{u(x)}] = e^{u(x)} \cdot u'(x)$$

Logarithmic Functions

$$\frac{d}{dx}[\ln x] = \frac{1}{x}$$ $$\frac{d}{dx}[\log_a x] = \frac{1}{x \ln a}$$ $$\frac{d}{dx}[\ln u(x)] = \frac{u'(x)}{u(x)}$$

🔄 Inverse Functions

Inverse Function Rule

$$(f^{-1})'(a) = \frac{1}{f'(f^{-1}(a))}$$

Inverse Trigonometric

$$\frac{d}{dx}[\sin^{-1} x] = \frac{1}{\sqrt{1-x^2}}$$ $$\frac{d}{dx}[\tan^{-1} x] = \frac{1}{1+x^2}$$

🎯 Problem-Solving Strategies

Implicit Differentiation Steps

  1. Differentiate both sides w.r.t. $x$
  2. Use chain rule for $y$ terms
  3. Collect $\frac{dy}{dx}$ terms
  4. Factor and solve

Related Rates Steps

  1. Draw diagram
  2. Assign variables
  3. Write known rates
  4. Find relating equation
  5. Differentiate w.r.t. time
  6. Substitute and solve

Linear Approximation

Formula:

$$L(x) = f(a) + f'(a)(x-a)$$

Use when estimating function values near known points.

Logarithmic Differentiation

  1. Take $\ln$ of both sides
  2. Use log properties to simplify
  3. Differentiate both sides
  4. Solve for $y'$

🧠 Memory Tips & Common Mistakes

  • Product Rule: "First times derivative of second, plus second times derivative of first"
  • Quotient Rule: "Low D-High minus High D-Low, all over Low squared"
  • Chain Rule: Always multiply by the derivative of the "inside function"
  • Implicit Differentiation: Don't forget to multiply by $\frac{dy}{dx}$ when differentiating $y$ terms
  • Related Rates: Always differentiate with respect to time, not the variable
  • Inverse Trig: Remember the domain restrictions