Calculus

1

Review of Functions

1.1 Review of Functions

🧭 Overview

🧠 One-sentence thesis

Functions are special relations that assign each input exactly one output, and understanding their notation, domain, range, graphical representation, and algebraic properties is essential for studying calculus.

📌 Key points (3–5)

  • What a function is: A relation where each input from the domain maps to exactly one output in the range.
  • How to represent functions: Functions can be described using tables, graphs, or algebraic formulas, and each representation reveals different aspects of the function's behavior.
  • Domain and range: The domain is the set of all valid inputs; the range is the set of all possible outputs.
  • Common confusion: Domain vs. natural domain—when no domain is specified, the natural domain includes all real numbers for which the function produces a real output.
  • Combining and composing functions: New functions can be created by adding, subtracting, multiplying, dividing, or composing existing functions, and the order of composition matters.

📐 What is a function?

📐 Definition and terminology

Function: A function f consists of a set of inputs (the domain), a set of outputs (the range), and a rule for assigning each input to exactly one output.

  • The input is also called the independent variable (often denoted x).
  • The output is also called the dependent variable (often denoted y), because it depends on x.
  • Function notation: We write y = f(x), read as "y equals f of x."

Example: For the squaring function f(x) = x squared, the input x = 3 is assigned to the output 9. Every nonnegative real number is in the range, but negative numbers are not (since no real number squared gives a negative result).

🔍 How functions differ from general relations

Relation: A set of ordered pairs (x, y) where x is from set A and y is from set B.

  • A function is a special type of relation: each element of the first set is related to exactly one element of the second set.
  • Don't confuse: A relation can map one input to multiple outputs, but a function cannot.

🗂️ Domain and range

🗂️ Finding the domain

  • The domain is the set of all inputs for which the function is defined.
  • When a function is given by a formula with no specified domain, the natural domain is the set of all real numbers for which the formula produces a real output.

Example:

  • For f(x) = x squared, the domain is all real numbers (negative infinity to positive infinity).
  • For f(x) = square root of x, the domain is all nonnegative real numbers, because the square root of a negative number is not real.

🗂️ Finding the range

  • The range is the set of all possible outputs.
  • To find the range, determine which values y can be achieved by some input x in the domain.

Example: For f(x) = (x − 4) squared + 5, since (x − 4) squared is always greater than or equal to 0, the range is all y greater than or equal to 5.

🗂️ Set-builder and interval notation

Notation typeExampleMeaning
Set-builder{x | 1 < x < 5}The set of all x such that x is greater than 1 and less than 5
Interval (open)(1, 5)All numbers between 1 and 5, not including the endpoints
Interval (closed)[1, 5]All numbers between 1 and 5, including both endpoints
Half-open[0, positive infinity)All nonnegative real numbers; positive infinity is symbolic, not a real number

📊 Representing functions

📊 Tables of values

  • Functions can be described by listing input-output pairs in a table.
  • Example: Temperature as a function of time—record temperature every hour and list the pairs (time, temperature).
  • Tables are useful for real-world data but do not show the full picture without graphing.

📊 Graphs

Graph of a function: The set of all points (x, f(x)*) in the coordinate plane where x is in the domain.

  • Graphing reveals the overall behavior of the function (increasing, decreasing, constant).
  • Connecting the dots in a graph can help visualize patterns, though this assumes the function behaves similarly between recorded points.

Vertical line test:

  • A set of points represents a function if and only if every vertical line intersects the graph at most once.
  • If any vertical line intersects more than once, the relation is not a function.

📊 Algebraic formulas

  • Functions are often given by explicit formulas, such as A(r) = pi times r squared (area of a circle).
  • Formulas allow precise calculation of function values and are often graphed to visualize behavior.

🔢 Evaluating and analyzing functions

🔢 Evaluating functions

  • To evaluate f(x) at a specific input, substitute the input into the formula.

Example: For f(x) = 3x squared + 2x − 1:

  • f(−2) = 3 times (−2) squared + 2 times (−2) − 1 = 12 − 4 − 1 = 7
  • f(a + h) = 3(a + h) squared + 2(a + h) − 1 (expand and simplify)

🔢 Zeros and intercepts

Zeros of a function: Values of x where f(x) = 0; these are the x-intercepts of the graph.

y-intercept: The point (0, f(0)), where the graph crosses the y-axis (if x = 0 is in the domain).

  • A function has at most one y-intercept (since each input maps to exactly one output).
  • A function may have zero, one, or many x-intercepts.

Example: For f(x) = −4x + 2:

  • Zero: Solve −4x + 2 = 0 → x = 1/2
  • y-intercept: (0, 2)

🔢 Increasing and decreasing functions

Increasing on interval I: For all x₁, x₂ in I, if x₁ < x₂, then f(x₁) ≤ f(x₂).

Decreasing on interval I: For all x₁, x₂ in I, if x₁ < x₂, then f(x₁) ≥ f(x₂).

  • A function can be increasing on some intervals and decreasing on others.

Example: The temperature function may decrease from midnight to 4 a.m., increase from 4 a.m. to 2 p.m., then decrease again from 2 p.m. to 11 p.m.

🔗 Combining functions

🔗 Arithmetic operations on functions

Given two functions f and g, we can define:

OperationFormulaDomain restriction
Sum(f + g)(x) = f(x) + g(x)Domain is the intersection of the domains of f and g
Difference(fg)(x) = f(x) − g(x)Domain is the intersection of the domains of f and g
Product(f · g)(x) = f(x) · g(x)Domain is the intersection of the domains of f and g
Quotient(f / g)(x) = f(x) / g(x)Domain excludes points where g(x) = 0

Example: For f(x) = 2x − 3 and g(x) = x squared − 1:

  • (f + g)(x) = x squared + 2x − 4, domain: all real numbers
  • (f / g)(x) = (2x − 3) / (x squared − 1), domain: all x except x = ±1

🔗 Function composition

Composite function (gf)(x): The function defined by (gf)(x) = g(f(x)).

  • First apply f to x, then apply g to the result.
  • The domain of gf is the set of all x in the domain of f such that f(x) is in the domain of g.
  • Order matters: In general, (fg)(x) ≠ (gf)(x).

Example: For f(x) = x squared + 1 and g(x) = 1/x:

  • (gf)(x) = g(f(x)) = 1/(x squared + 1), domain: all real numbers
  • (fg)(x) = f(g(x)) = (1/x) squared + 1, domain: all x ≠ 0

Don't confuse: Composition is not the same as multiplication; (gf)(x) means "g of f of x," not "g times f."

🔄 Symmetry properties

🔄 Even functions

Even function: A function f is even if f(−x) = f(x) for all x in the domain.

  • Even functions are symmetric about the y-axis.
  • If the point (x, y) is on the graph, then (−x, y) is also on the graph.

Example: f(x) = x squared is even because f(−x) = (−x) squared = x squared = f(x).

🔄 Odd functions

Odd function: A function f is odd if f(−x) = −f(x) for all x in the domain.

  • Odd functions are symmetric about the origin.
  • If the point (x, y) is on the graph, then (−x, −y) is also on the graph.

Example: f(x) = x cubed is odd because f(−x) = (−x) cubed = −x cubed = −f(x).

🔄 Neither even nor odd

  • Many functions are neither even nor odd.

Example: f(x) = 2x to the fifth − 4x + 5 is neither even nor odd, because f(−x) ≠ f(x) and f(−x) ≠ −f(x).

🔄 Absolute value function

Absolute value function: f(x) = |x| = { −x if x < 0; x if x ≥ 0 }

  • The absolute value function makes all nonzero inputs positive; |0| = 0.
  • It is symmetric about the y-axis, so it is an even function.
  • Domain: all real numbers; Range: all y ≥ 0.

Example: For f(x) = 2|x − 3| + 4:

  • Domain: all real numbers
  • Range: all y ≥ 4 (since |x − 3| ≥ 0, the minimum value is 4)

🧮 Piecewise-defined functions

🧮 What they are

Piecewise-defined function: A function defined by different formulas on different parts of its domain.

Example: f(x) = { 3x + 1 if x ≥ 2; x squared if x < 2 }

  • For x ≥ 2, use the formula 3x + 1.
  • For x < 2, use the formula x squared.

🧮 Evaluating piecewise functions

  • Determine which piece of the domain the input belongs to, then use the corresponding formula.

Example: For the function above:

  • f(5) = 3(5) + 1 = 16 (since 5 ≥ 2)
  • f(−1) = (−1) squared = 1 (since −1 < 2)
2

Basic Classes of Functions

1.2 Basic Classes of Functions

🧭 Overview

🧠 One-sentence thesis

Understanding the properties and behaviors of different function classes—linear, polynomial, algebraic, and transcendental—enables us to model real-world phenomena and predict outcomes through mathematical relationships.

📌 Key points (3–5)

  • Linear functions have constant slope and describe straight-line relationships; the slope indicates direction (increasing/decreasing) and steepness.
  • Polynomial functions include linear, quadratic, and higher-degree functions; their degree and leading coefficient determine end behavior.
  • Common confusion: horizontal vs. vertical shifts—adding/subtracting inside the function argument f(x ± c) shifts horizontally (opposite direction), while adding/subtracting outside f(x) ± c shifts vertically (same direction).
  • Algebraic vs. transcendental: algebraic functions use basic operations and rational powers; transcendental functions (trigonometric, exponential, logarithmic) go beyond algebra.
  • Transformations follow order: horizontal shift → horizontal scaling → vertical scaling → vertical shift when graphing transformed functions.

📏 Linear Functions and Slope

📐 What defines a linear function

Linear function: a function of the form f(x) = ax + b, where a and b are constants.

  • The graph is always a straight line
  • The constant a is the slope
  • The constant b is the y-intercept
  • If a > 0, the function is increasing on the entire domain
  • If a < 0, the function is decreasing on the entire domain
  • If a = 0, the line is horizontal

📊 Understanding slope

Slope: the change in y for each unit change in x, calculated as m = (y₂ - y₁)/(x₂ - x₁).

  • Slope measures both steepness and direction
  • Positive slope → line points upward (left to right)
  • Negative slope → line points downward (left to right)
  • Zero slope → horizontal line
  • The slope is independent of which two points you choose on the line

Example: A runner covers 9 miles in 78 minutes. The slope m = 9/78 = 3/26 ≈ 0.115 represents the distance in miles per minute (average velocity).

📝 Three forms of linear equations

FormEquationWhen to use
Slope-intercepty = mx + bWhen you know slope m and y-intercept b
Point-slopey - y₁ = m(x - x₁)When you know slope m and one point (x₁, y₁)
Standard formax + by = cMost general; allows vertical lines (x = k)

Don't confuse: Slope-intercept and point-slope forms cannot represent vertical lines, but standard form can.

🔢 Polynomial Functions

🎯 General polynomial structure

Polynomial function: any function of the form f(x) = aₙxⁿ + aₙ₋₁xⁿ⁻¹ + ... + a₁x + a₀, where n ≥ 0 is an integer and aₙ ≠ 0.

  • The value n is the degree of the polynomial
  • The constant aₙ is the leading coefficient
  • Degree 0: constant function
  • Degree 1: linear function (if a ≠ 0)
  • Degree 2: quadratic function
  • Degree 3: cubic function

🔄 End behavior patterns

The leading term determines what happens as x approaches positive or negative infinity:

Quadratic functions (f(x) = ax² + bx + c):

  • If a > 0: f(x) → ∞ as x → ±∞ (parabola opens upward)
  • If a < 0: f(x) → -∞ as x → ±∞ (parabola opens downward)

Cubic functions (f(x) = ax³ + bx² + cx + d):

  • If a > 0: f(x) → ∞ as x → ∞ and f(x) → -∞ as x → -∞
  • If a < 0: f(x) → -∞ as x → ∞ and f(x) → ∞ as x → -∞

🎯 Finding zeros (x-intercepts)

To find where a polynomial crosses the x-axis, solve f(x) = 0.

For quadratic equations ax² + bx + c = 0:

Quadratic formula: x = (-b ± √(b² - 4ac))/(2a)

The discriminant b² - 4ac tells us:

  • If b² - 4ac > 0: two real solutions
  • If b² - 4ac = 0: one real solution
  • If b² - 4ac < 0: no real solutions

Example: For f(x) = x³ - 3x² - 4x, factor out x to get x(x² - 3x - 4) = x(x - 4)(x + 1), so zeros are x = 0, 4, -1.

⚡ Power functions

Power function: any function of the form f(x) = axᵇ, where a and b are real numbers.

When the exponent is a positive integer:

  • If n is even: f(x) = axⁿ is an even function (symmetric about y-axis)
  • If n is odd: f(x) = axⁿ is an odd function (symmetric about origin)

🧮 Algebraic and Transcendental Functions

🔧 Algebraic functions

Algebraic function: a function involving addition, subtraction, multiplication, division, rational powers, and roots.

Two important types:

Rational functions:

Rational function: any function of the form f(x) = p(x)/q(x), where p(x) and q(x) are polynomials.

Example: f(x) = (3x - 1)/(5x + 2)

Root functions:

Root function: a power function of the form f(x) = x^(1/n), where n is a positive integer greater than one.

  • Square root: f(x) = x^(1/2) = √x
  • Cube root: f(x) = x^(1/3) = ∛x
  • For even n ≥ 2: domain is [0, ∞)
  • For odd n ≥ 1: domain is all real numbers

🌟 Transcendental functions

Transcendental functions: functions that "transcend" or go beyond basic algebra.

Three main types:

  • Trigonometric: sin x, cos x, tan x, cot x, sec x, csc x
  • Exponential: f(x) = bˣ where b > 0, b ≠ 1
  • Logarithmic: f(x) = log_b(x) where b > 0, b ≠ 1

Don't confuse: Algebraic functions can only have rational number powers; exponential functions like 2^(x²) are transcendental because the variable is in the exponent.

🔍 Finding domains for algebraic functions

Key restrictions:

  • Cannot divide by zero
  • Cannot take even roots of negative numbers
  • Odd roots work for all real numbers

Example: For f(x) = √(4 - 3x), need 4 - 3x ≥ 0, so x ≤ 4/3. Domain is {x | x ≤ 4/3}.

📐 Piecewise-Defined Functions

🧩 What makes a function piecewise

Piecewise-defined function: a function defined by different formulas on different parts of its domain.

  • Different rules apply to different intervals
  • Use open circles (○) for points not included
  • Use closed circles (●) for points included

Example: The absolute value function is piecewise: f(x) = -x if x < 0; f(x) = x if x ≥ 0

🚗 Real-world piecewise example

Parking garage charges: $10 for first hour, $2 for each additional hour, maximum $30 per day.

This creates a step function where:

  • C(x) = 10 for 0 < x ≤ 1
  • C(x) = 12 for 1 < x ≤ 2
  • C(x) = 14 for 2 < x ≤ 3
  • And so on...

The graph consists of horizontal line segments (steps).

🔄 Transformations of Functions

↕️ Vertical transformations

Vertical shifts (adding/subtracting outside):

  • f(x) + c: shift up c units (c > 0)
  • f(x) - c: shift down c units (c > 0)

Vertical scaling (multiplying the function):

  • c·f(x) where c > 1: stretch vertically
  • c·f(x) where 0 < c < 1: compress vertically
  • -f(x): reflect about x-axis

↔️ Horizontal transformations

Horizontal shifts (adding/subtracting inside):

  • f(x + c): shift left c units (c > 0) ← opposite direction!
  • f(x - c): shift right c units (c > 0)

Horizontal scaling (multiplying the input):

  • f(cx) where c > 1: compress horizontally
  • f(cx) where 0 < c < 1: stretch horizontally
  • f(-x): reflect about y-axis

Common confusion: Adding inside the function shifts left (opposite of what you might expect), because f(x + 3) reaches the same output 3 units earlier.

📋 Order of transformations

To graph y = c·f(a(x + b)) + d, apply in this order:

  1. Horizontal shift by b
  2. Horizontal scaling by factor |a| (reflect about y-axis if a < 0)
  3. Vertical scaling by factor |c| (reflect about x-axis if c < 0)
  4. Vertical shift by d

Example: For f(x) = -|x + 2| - 3, start with y = |x|, shift left 2, reflect about x-axis, shift down 3.

📊 Mathematical Modeling Applications

💼 Revenue modeling example

A company collects data on units sold (n) versus price (p). The data shows a roughly linear relationship: n = -1.04p + 26 (in thousands).

Revenue = price × quantity, so: R(p) = p·(-1.04p + 26) = -1.04p² + 26p

This quadratic function:

  • Opens downward (a = -1.04 < 0)
  • Has zeros at p = 0 and p = 25
  • Is symmetric about p = 12.5
  • Maximum revenue occurs at p = $12.50, giving R = $162,500

Why modeling matters: Models help predict future outcomes and optimize decisions (like finding the price that maximizes revenue).

🏢 Linear depreciation example

Equipment purchased for $20,500 depreciates linearly to $12,300 after 3 years.

Slope = (12,300 - 20,500)/(3 - 0) = -2,733.33 per year

The function V(t) = -2,733.33t + 20,500 models value over time, where the slope represents the annual depreciation rate.

3

Basic Classes of Functions

1.3 Trigonometric Functions

🧭 Overview

🧠 One-sentence thesis

Linear, polynomial, and algebraic functions form a hierarchy of function classes, each with characteristic behaviors at infinity, zeros, and graphical features that enable mathematical modeling of real-world phenomena.

📌 Key points (3–5)

  • Linear functions have constant slope that determines whether the function increases, decreases, or stays horizontal across all real numbers.
  • Polynomial degree and leading coefficient control end behavior: even-degree polynomials approach the same direction at both infinities, while odd-degree polynomials approach opposite directions.
  • Zeros and intercepts can be found algebraically for quadratics (via the quadratic formula) and some higher polynomials (via factoring), revealing where graphs cross axes.
  • Common confusion: slope vs. y-intercept—slope measures steepness and direction (change in y per unit x), while the y-intercept is simply where the line crosses the y-axis.
  • Mathematical models use functions (especially quadratic revenue models) to predict real-world outcomes like sales and revenue based on observed data patterns.

📏 Linear functions and slope

📐 What defines a linear function

Linear function: a function of the form f(x) = ax + b, where a and b are constants.

  • The graph is always a straight line.
  • If a > 0, the function increases on the entire real line.
  • If a < 0, the function decreases on the entire real line.
  • If a = 0, the line is horizontal (constant function).

📊 Understanding slope

Slope: the change in y for each unit change in x, calculated as m = (y₂ − y₁)/(x₂ − x₁) for any two points on the line.

  • Slope measures both steepness and direction.
  • Positive slope → line points upward left to right.
  • Negative slope → line points downward left to right.
  • Zero slope → horizontal line.
  • The slope is independent of which two points you choose on the line.

🔢 Three forms of linear equations

FormEquationWhen to use
Slope-intercepty = mx + bWhen you know slope m and y-intercept (0, b)
Point-slopey − y₁ = m(x − x₁)When you know slope m and one point (x₁, y₁)
Standard formax + by = cMost general; allows vertical lines (x = k)

Don't confuse: In f(x) = ax + b, the coefficient a is the slope, and b is the y-coordinate of the y-intercept—not the slope.

Example: A line through (11, −4) and (−4, 5) has slope m = [5−(−4)]/[−4−11] = 9/(−15) = −3/5.

🔺 Polynomial functions

🧮 Definition and degree

Polynomial function: any function of the form f(x) = aₙxⁿ + aₙ₋₁xⁿ⁻¹ + … + a₁x + a₀ for some integer n ≥ 0 and constants, where aₙ ≠ 0.

  • Degree n: the highest power of x.
  • Leading coefficient aₙ: the coefficient of the highest-power term.
  • Special cases:
    • Degree 0: constant function
    • Degree 1: linear function (if m ≠ 0)
    • Degree 2: quadratic function
    • Degree 3: cubic function

⚡ Power functions and symmetry

Power function: any function of the form f(x) = axᵇ, where a and b are real numbers.

When the exponent is a positive integer:

  • Even exponent (n even): f(x) = axⁿ is an even function because f(−x) = f(x). Graph is symmetric about the y-axis.
  • Odd exponent (n odd): f(x) = axⁿ is an odd function because f(−x) = −f(x). Graph has origin symmetry.

♾️ End behavior

End behavior: what happens to f(x) values as x → ∞ and x → −∞.

For quadratic functions f(x) = ax² + bx + c:

  • If a > 0: f(x) → ∞ as x → ±∞ (parabola opens upward)
  • If a < 0: f(x) → −∞ as x → ±∞ (parabola opens downward)

For cubic functions f(x) = ax³ + bx² + cx + d:

  • If a > 0: f(x) → ∞ as x → ∞ and f(x) → −∞ as x → −∞
  • If a < 0: f(x) → −∞ as x → ∞ and f(x) → ∞ as x → −∞

Key insight: The leading term determines end behavior for all polynomials.

🎯 Finding zeros

🔍 What are zeros

Zeros (or x-intercepts) are values of x where f(x) = 0, i.e., where the graph crosses the x-axis.

🧪 The quadratic formula

For the quadratic equation ax² + bx + c = 0 (where a ≠ 0), the solutions are x = [−b ± √(b² − 4ac)]/(2a).

The discriminant b² − 4ac determines the number of real solutions:

  • If b² − 4ac > 0: two distinct real solutions
  • If b² − 4ac = 0: exactly one real solution
  • If b² − 4ac < 0: no real solutions

🔨 Factoring higher-degree polynomials

For polynomials of degree 3 or higher, try factoring:

Example: f(x) = x³ − 3x² − 4x

  1. Factor out common x: f(x) = x(x² − 3x − 4)
  2. Factor the quadratic: f(x) = x(x − 4)(x + 1)
  3. Zeros are x = 0, 4, −1

Don't confuse: Finding zeros means solving f(x) = 0, not evaluating f(0).

📈 Mathematical models

🏢 Revenue modeling example

Real-world situations can be described using mathematical models—equations that simulate behavior and predict outcomes.

Example scenario: A company collects data on units sold n (in thousands) versus price p (in dollars). The data suggest a linear relationship: n = −1.04p + 26 for 0 ≤ p ≤ 25.

Revenue function:

  • Revenue R = price × quantity = p · n
  • Substituting: R(p) = p(−1.04p + 26) = −1.04p² + 26p
  • This is a quadratic function (parabola opening downward because leading coefficient is negative).

🎯 Maximizing revenue

To find maximum revenue:

  1. Find zeros: solve −1.04p² + 26p = 0 → p(−1.04p + 26) = 0 → p = 0 or p = 25
  2. The parabola is symmetric about the midpoint: p = (0 + 25)/2 = 12.5
  3. Maximum occurs at p = $12.50
  4. Maximum revenue: R(12.5) = −1.04(12.5)² + 26(12.5) = $162,500

Interpretation of zeros:

  • At p = 0: revenue is zero (giving items away free)
  • At p = 25: revenue is zero (price too high, no sales)

🧬 Algebraic functions

🔀 Broader function classes

Algebraic function: any function involving addition, subtraction, multiplication, division, rational powers, and roots.

Two important types:

Rational functions:

Rational function: any function of the form f(x) = p(x)/q(x), where p(x) and q(x) are polynomials.

Example: f(x) = (3x − 1)/(5x + 2)

Root functions:

Root function: a power function of the form f(x) = x^(1/n), where n is a positive integer greater than one.

Examples:

  • f(x) = x^(1/2) = √x (square-root function)
  • g(x) = x^(1/3) = ∛x (cube-root function)

🎯 Domain and range for algebraic functions

For rational functions, exclude values that make the denominator zero.

Example: f(x) = (3x − 1)/(5x + 2)

  • Domain: all real numbers except x = −2/5 (where denominator = 0)
  • Range: found by solving y = (3x − 1)/(5x + 2) for x, revealing which y-values are possible

For root functions with even roots, the radicand must be non-negative.

Example: f(x) = √(4 − x²)

  • Domain: values where 4 − x² ≥ 0
4

Algebraic and Transcendental Functions

1.4 Inverse Functions

🧭 Overview

🧠 One-sentence thesis

Functions can be classified into algebraic (built from basic operations and roots) and transcendental (going beyond algebra), and understanding their domains, ranges, and transformations is essential for graphing and analysis.

📌 Key points (3–5)

  • Algebraic functions are built from addition, subtraction, multiplication, division, rational powers, and roots; they include rational functions (quotients of polynomials) and root functions (power functions with fractional exponents).
  • Transcendental functions cannot be described by basic algebraic operations alone; they include trigonometric, exponential, and logarithmic functions.
  • Domain restrictions arise from division by zero (for rational functions) and from requiring non-negative values under even roots.
  • Common confusion: horizontal shifts work opposite to intuition—adding a constant inside the function shifts the graph left, subtracting shifts it right.
  • Transformations follow a specific order: horizontal shift, horizontal scaling/reflection, vertical scaling/reflection, then vertical shift.

📐 Algebraic functions

📐 What makes a function algebraic

Algebraic function: a function that involves addition, subtraction, multiplication, division, rational powers, and roots.

  • These are functions you can build using the basic operations taught in algebra.
  • They extend polynomial functions by allowing quotients and fractional powers.

🔢 Rational functions

Rational function: any function of the form f(x) = p(x)/q(x), where p(x) and q(x) are polynomials.

  • Just as rational numbers are quotients of integers, rational functions are quotients of polynomials.
  • Example: f(x) = (3x - 1)/(5x + 2) and g(x) = 4/(x² + 1)
  • Domain restriction: cannot divide by zero, so exclude any x values that make the denominator zero.

🌱 Root functions

Root function: a power function of the form f(x) = x^(1/n), where n is a positive integer greater than one.

  • Examples: f(x) = x^(1/2) = √x (square root) and g(x) = x^(1/3) = ∛x (cube root)
  • Key distinction by parity:
    • Even n: domain is [0, ∞) because even roots of negative numbers are not real
    • Odd n: domain is all real numbers; the function is also an odd function (symmetric about the origin)

🔍 Finding domains for algebraic functions

For rational functions: exclude values where the denominator equals zero.

  • Example: f(x) = 3/(x² - 1) has domain {x | x ≠ ±1}

For even root functions: require the expression under the root to be non-negative.

  • Example: f(x) = √(4 - 3x) requires 4 - 3x ≥ 0, so domain is {x | x ≤ 4/3}

For odd root functions: all real numbers are allowed.

  • Example: f(x) = ∛(2x - 1) has domain (-∞, ∞)

Don't confuse: A denominator that is always positive (like 3x² + 4 ≥ 4 for all x) means no domain restrictions from that denominator.

🌊 Transcendental functions

🌊 What makes a function transcendental

Transcendental functions: functions that "transcend" or go beyond algebra; they cannot be described by basic algebraic operations.

  • These are fundamentally different from algebraic functions.
  • The most common types are trigonometric, exponential, and logarithmic functions.

📊 Three main types

TypeFormExamples
TrigonometricRatios of sides of right trianglessin x, cos x, tan x, cot x, sec x, csc x
Exponentialf(x) = b^x where b > 0, b ≠ 12^x, e^x
Logarithmicf(x) = log_b(x) where b > 0, b ≠ 1log_b(x) = y if and only if b^y = x

🔍 How to classify

Algebraic: uses only basic operations and rational powers.

  • Example: f(x) = (x³ + 1)/(4x + 2) is algebraic

Transcendental: cannot be written with basic operations only; powers must be rational for algebraic functions.

  • Example: f(x) = 2^(x²) is transcendental (exponential with variable exponent)
  • Example: f(x) = sin(2x) is transcendental (trigonometric)

Don't confuse: f(x) = x/2 is algebraic (just multiplication by 1/2), not transcendental.

🧩 Piecewise-defined functions

🧩 What they are

Piecewise-defined function: a function defined by different formulas on different parts of its domain.

  • The formula changes depending on which part of the domain the input falls into.
  • The absolute value function is a classic example: f(x) = -x for x < 0, and f(x) = x for x ≥ 0.

📈 Graphing piecewise functions

  • Graph each piece in its respective domain on the same coordinate system.
  • Pay special attention to boundary points where the formula changes.
  • Closed circle: use when the point is included (≤ or ≥)
  • Open circle: use when the point is excluded (< or >)

Example: For f(x) = x + 3 when x < 1, and f(x) = (x - 2)² when x ≥ 1:

  • At x = 1, the function value is given by (x - 2)², so f(1) = 1 → closed circle at (1, 1)
  • The formula x + 3 applies for all x < 1 but not at x = 1 → open circle at (1, 4)

🅿️ Real-world example: parking fees

Example: Parking costs $10 for the first hour or part thereof, then $2 for each additional hour up to $30 maximum.

  • This creates a step function with horizontal segments.
  • Domain: {x | 0 < x ≤ 18} (garage open 18 hours)
  • The function jumps at each hour boundary.

🔄 Transformations of functions

↕️ Vertical shifts

Vertical shift: adding or subtracting a constant to each output y.

  • For c > 0:
    • f(x) + c shifts the graph up c units
    • f(x) - c shifts the graph down c units
  • Example: f(x) = x³ + 4 is y = x³ shifted up 4 units

↔️ Horizontal shifts

Horizontal shift: adding or subtracting a constant to each input x.

  • For c > 0:
    • f(x + c) shifts the graph left c units
    • f(x - c) shifts the graph right c units

Common confusion: The direction is opposite to what you might expect!

  • Adding inside the function shifts left; subtracting shifts right.
  • Why? Because f(x + 3) reaches the same output value at x - 3 that f(x) reaches at x.
  • Example: f(x) = |x + 3| is y = |x| shifted left 3 units

📏 Vertical scaling

Vertical scaling: multiplying all outputs y by the same positive constant.

  • For c > 0, the function c·f(x) scales vertically by factor c:
    • If c > 1: vertical stretch (outputs are larger)
    • If 0 < c < 1: vertical compression (outputs are smaller)
  • Example: f(x) = 3x² is y = x² stretched vertically by factor 3

📐 Horizontal scaling

Horizontal scaling: multiplying all inputs x by the same positive constant.

  • For c > 0, the function f(cx) scales horizontally:
    • If c > 1: horizontal compression (graph is squeezed)
    • If 0 < c < 1: horizontal stretch (graph is widened)
  • Example: f(x) = √(2x) is y = √x compressed horizontally

🪞 Reflections

About the x-axis: multiply the entire function by -1

  • y = -f(x) flips the graph upside down
  • Example: f(x) = -(x³ + 1) is y = x³ + 1 reflected about the x-axis

About the y-axis: multiply the input by -1

  • y = f(-x) flips the graph left-to-right
  • Example: f(x) = (-x)³ + 1 is y = x³ + 1 reflected about the y-axis

🔢 Order of transformations

For y = c·f(a(x + b)) + d, apply transformations in this order:

  1. Horizontal shift: by b (left if b > 0, right if b < 0)
  2. Horizontal scaling: by factor |a|; if a < 0, also reflect about y-axis
  3. Vertical scaling: by factor |c|; if c < 0, also reflect about x-axis
  4. Vertical shift: by d (up if d > 0, down if d < 0)

Don't confuse: The order matters! Shifting before scaling gives different results than scaling before shifting.

Example: f(x) = -(x + 1)² - 4 starting from y = x²:

  • Shift left 1 unit → (x + 1)²
  • Reflect about x-axis → -(x + 1)²
  • Shift down 4 units → -(x + 1)² - 4
5

Exponential and Logarithmic Functions

1.5 Exponential and Logarithmic Functions

🧭 Overview

🧠 One-sentence thesis

Exponential and logarithmic functions are inverse operations that model growth, decay, and scaling phenomena across science and engineering, with the natural base e playing a central role due to its unique mathematical properties.

📌 Key points (3–5)

  • Exponential functions have the form f(x) = b^x (constant base, variable exponent) and grow or decay at rates proportional to their current value.
  • Logarithmic functions are inverses of exponential functions, answering "what exponent gives this result?" and compressing wide-ranging values into manageable scales.
  • The number e (approximately 2.718282) arises naturally from continuous compounding and is the only base whose exponential function has a tangent slope of 1 at x = 0.
  • Common confusion: Distinguish x^b (power function, variable base) from b^x (exponential function, variable exponent)—exponential functions eventually grow faster than any power function.
  • Hyperbolic functions (cosh, sinh, tanh) combine exponentials and appear in physics applications like hanging cables; they satisfy identities analogous to trigonometric functions.

📈 Exponential functions: definition and behavior

📐 What makes a function exponential

Exponential function: A function of the form f(x) = b^x where b > 0, b ≠ 1, with constant base b and variable exponent x.

  • Domain: all real numbers; range: (0, ∞).
  • The base determines growth (b > 1) or decay (0 < b < 1).
  • Not the same as power functions: x^2 is a power function (variable base); 2^x is exponential (variable exponent).

🔍 Exponential vs. power functions

AspectPower x^2Exponential 2^x
As x → ∞Both → ∞, but 2^x grows fasterEventually dominates
As x → −∞x^2 → ∞2^x → 0 (horizontal asymptote at y = 0)
BehaviorPolynomial growthExponential growth
  • Example: At x = 6, x^2 = 36 but 2^x = 64; the gap widens rapidly.
  • Don't confuse: Exponential functions have a horizontal asymptote; power functions do not.

🧮 Laws of exponents

For any a, b > 0 and all real x, y:

  1. b^x · b^y = b^(x+y)
  2. b^x / b^y = b^(x−y)
  3. (b^x)^y = b^(xy)
  4. (ab)^x = a^x · b^x
  5. a^x / b^x = (a/b)^x
  • These rules allow simplification of exponential expressions.
  • Example: (2x^(2/3))^3 · (4x^(−1/3))^2 = 8x^2 / (16x^(−2/3)) = x^(8/3) / 2.

🦠 Application: population growth

  • A population growing at rate r per year starting from P₀ follows P(t) = P₀(1 + r)^t.
  • Bacteria doubling every 4 hours: n(t) = 1000 · 2^(t/4).
  • Example: After 6 hours, n(6) = 1000 · 2^(6/4) ≈ 2828 bacteria.

🌟 The special number e

🎯 Where e comes from

  • Consider continuous compounding of interest: investing P dollars at annual rate r, compounded n times per year, yields A(t) = P(1 + r/n)^(nt).
  • As n → ∞ (continuous compounding), (1 + 1/m)^m approaches a limit as m → ∞.
  • This limit is defined as e ≈ 2.718282.

🔑 Why e is special

Natural exponential function: f(x) = e^x is the only exponential function whose tangent line at x = 0 has slope exactly 1.

  • Continuous compounding formula: A(t) = Pe^(rt).
  • Example: $500 at 5.5% continuously compounded for 10 years: A(10) = 500e^(0.55) ≈ $866.63.
  • The simplicity of e^x in calculus (its derivative equals itself) makes it the most natural choice for modeling.

📊 Logarithmic functions: inverses of exponentials

🔄 Definition and relationship

Logarithmic function: For b > 0, b ≠ 1, log_b(x) = y if and only if b^y = x.

  • Domain: (0, ∞); range: all real numbers.
  • The logarithm answers: "What power of b gives x?"
  • Inverse property: log_b(b^x) = x and b^(log_b(x)) = x.

🌲 The natural logarithm

Natural logarithm: ln(x) = log_e(x), the logarithm with base e.

  • ln(e) = 1, ln(e^3) = 3, ln(1) = 0.
  • Inverse relationship: ln(e^x) = x and e^(ln x) = x.
  • Graphs of y = e^x and y = ln(x) are symmetric about the line y = x.

🧰 Properties of logarithms

For a, b, c > 0, b ≠ 1, and any real r:

  1. Product: log_b(ac) = log_b(a) + log_b(c)
  2. Quotient: log_b(a/c) = log_b(a) − log_b(c)
  3. Power: log_b(a^r) = r · log_b(a)
  • These properties allow rewriting and solving logarithmic equations.
  • Example: ln(2x) − 3ln(x^2) = ln(2x) − ln(x^6) = ln(2/x^5).

🔀 Change of base

Change-of-base formula: log_a(x) = ln(x) / ln(a) (or using any other base b: log_b(x) / log_b(a)).

  • Allows evaluation of any logarithm using a calculator's ln or log₁₀ buttons.
  • Example: log₃(7) = ln(7) / ln(3) ≈ 1.77124.

🌍 Application: Richter scale

  • Earthquake magnitude R relates to amplitude A by: R₁ − R₂ = log₁₀(A₁/A₂).
  • A magnitude 8 earthquake vs. magnitude 7: log₁₀(A₁/A₂) = 1, so A₁ = 10A₂ (10 times as intense).
  • Magnitude 9 vs. 7.3: A₁/A₂ = 10^1.7 ≈ 50 (50 times as intense).

🧮 Solving exponential and logarithmic equations

⚡ Solving exponential equations

  • Strategy: Apply logarithms to both sides to bring down the exponent.
  • Example: 5^x = 2ln(5^x) = ln(2)x·ln(5) = ln(2)x = ln(2)/ln(5).
  • For e^x + 6e^(−x) = 5, multiply by e^x to get a quadratic in e^x: (e^x)^2 − 5e^x + 6 = 0e^x = 3 or e^x = 2x = ln(3) or ln(2).

🔍 Solving logarithmic equations

  • Strategy: Use logarithm properties to consolidate, then exponentiate.
  • Example: ln(1/x) = 4e^4 = 1/xx = 1/e^4.
  • Example: log₁₀(√x) + log₁₀(√x) = 2(3/2)log₁₀(x) = 2log₁₀(x) = 4/3x = 10^(4/3).
  • Always check for extraneous solutions introduced during algebraic manipulation.

🌊 Hyperbolic functions

🧬 Definitions

Hyperbolic functions: Combinations of e^x and e^(−x) that arise in physics and engineering.

  • Hyperbolic cosine: cosh(x) = (e^x + e^(−x))/2
  • Hyperbolic sine: sinh(x) = (e^x − e^(−x))/2
  • Hyperbolic tangent: tanh(x) = sinh(x)/cosh(x) = (e^x − e^(−x))/(e^x + e^(−x))
  • Also defined: csch(x) = 1/sinh(x), sech(x) = 1/cosh(x), coth(x) = cosh(x)/sinh(x).

🕸️ Why "hyperbolic"?

  • The identity cosh²(t) − sinh²(t) = 1 is analogous to cos²(t) + sin²(t) = 1.
  • Points (cosh(t), sinh(t)) lie on the unit hyperbola x² − y² = 1, not the unit circle.
  • Application: A hanging chain (catenary) has height h(x) = a·cosh(x/a) + c.

🔗 Key identities

  1. cosh(−x) = cosh(x) (even function)
  2. sinh(−x) = −sinh(x) (odd function)
  3. cosh(x) + sinh(x) = e^x
  4. cosh(x) − sinh(x) = e^(−x)
  5. cosh²(x) − sinh²(x) = 1
  6. 1 − tanh²(x) = sech²(x)
  7. Addition formulas: sinh(x ± y) = sinh(x)cosh(y) ± cosh(x)sinh(y)

🔄 Inverse hyperbolic functions

Inverse hyperbolic sine: sinh⁻¹(x) = ln(x + √(x² + 1)).

  • All hyperbolic functions except cosh and sech are one-to-one on their natural domains.
  • Restricting cosh to [0, ∞) makes it one-to-one.
  • Example: sinh⁻¹(2) = ln(2 + √5) ≈ 1.4436.
  • Example: tanh⁻¹(1/4) = (1/2)ln((1 + 1/4)/(1 − 1/4)) = (1/2)ln(5/3) ≈ 0.2554.
6

Trigonometric Equations, Identities, and Functions

2.1 A Preview of Calculus

🧭 Overview

🧠 One-sentence thesis

Solving trigonometric equations requires careful factoring (not dividing by terms that might be zero), and understanding transformations of trigonometric functions enables modeling of periodic real-world phenomena like daylight hours.

📌 Key points (3–5)

  • Solving technique: Factor expressions instead of dividing by trigonometric terms, because those terms might equal zero and you would lose solutions.
  • Checking for extraneous solutions: When multiplying both sides by a trigonometric expression to clear denominators, verify that all solutions satisfy the original equation.
  • Transformations of sine/cosine: The general form f(x) = A sin(B(x - α)) + C has amplitude |A|, period 2π/|B|, phase shift α, and vertical shift C.
  • Common confusion: Dividing by cos θ or sin θ seems simpler, but you must factor instead to avoid missing solutions where those terms equal zero.
  • Real-world application: Shifted sine curves naturally model periodic phenomena such as hours of daylight throughout the year.

🔧 Solving trigonometric equations

🔧 The factoring principle

When solving equations like 2cos²θ - cos θ = 0:

  • Do not divide both sides by cos θ
  • Do factor the left side: cos θ(2cos θ - 1) = 0
  • Why: cos θ might equal zero, and dividing by zero is undefined; you would miss those solutions

Example: For 1 + cos(2θ) = cos θ, use the double-angle formula to rewrite as 2cos²θ - cos θ = 0, then factor as cos θ(2cos θ - 1) = 0. Solutions come from both cos θ = 0 and 2cos θ - 1 = 0.

⚠️ Extraneous solutions warning

When you multiply both sides by a trigonometric expression:

  • You may introduce solutions that don't satisfy the original equation
  • Always check your final answers in the original equation
  • Example: Solving 2sin θ cos θ = sin θ / cos θ by multiplying both sides by cos θ gives 2sin θ cos²θ - sin θ = 0, but you must verify that cos θ ≠ 0 for the original equation to be defined

📝 Solution format

Solutions are typically written with a parameter n representing all integers:

  • θ = π/2 + nπ means π/2, π/2 ± π, π/2 ± 2π, …
  • θ = π/3 + 2nπ means π/3, π/3 ± 2π, π/3 ± 4π, …
  • The form depends on the period of the pattern

🔄 Trigonometric identities

🔄 Proving identities

A trigonometric identity is an equation involving trigonometric functions that is true for all values in the domain.

To prove 1 + tan²θ = sec²θ:

  1. Start with sin²θ + cos²θ = 1
  2. Divide both sides by cos²θ
  3. Obtain (sin²θ)/(cos²θ) + 1 = 1/(cos²θ)
  4. Recognize sin θ / cos θ = tan θ and 1 / cos θ = sec θ
  5. Conclude tan²θ + 1 = sec²θ

🧮 Simplification strategy

When simplifying expressions:

  • Write everything in terms of sine and cosine first
  • Look for opportunities to use fundamental identities
  • Factor or combine fractions as needed
  • The final answer doesn't have to be only sine and cosine

📊 Graphs and periods of trigonometric functions

📊 Periodicity

The period of a function f is the smallest positive value p such that f(x + p) = f(x) for all x in the domain.

FunctionPeriod
sin, cos, sec, csc
tan, cotπ
  • Why periodic: As you travel around the unit circle, the same point P corresponds to angles θ and θ + 2π, so function values repeat
  • Don't confuse: tangent and cotangent repeat every π (not 2π) because of their symmetry properties

🎢 Transformations of sine and cosine

The general form f(x) = A sin(B(x - α)) + C has four parameters:

ParameterEffectMeasurement
AVertical stretchAmplitude = |A|
BHorizontal compression/stretchPeriod = 2π/|B|
αHorizontal shiftPhase shift α units
CVertical shiftMoves graph up/down C units

🌅 Real-world modeling example

Hours of daylight as a function of day of the year:

  • Model: h(t) = 3.7 sin((2π/365)(t - 80.5)) + 12
  • Amplitude 3.7: daylight varies by ±3.7 hours from the average
  • Period 365: the pattern repeats every 365 days (one year)
  • Phase shift 80.5: shifts the peak to around June 21 (longest day)
  • Vertical shift 12: average daylight is 12 hours
  • The city reports 15.7 hours on June 21 (12 + 3.7) and 8.3 hours on December 21 (12 - 3.7)

🔗 Relationship between sine and cosine

  • cos x = sin(x + π/2): cosine is sine shifted left by π/2
  • sin x = cos(x - π/2): sine is cosine shifted right by π/2
  • This relationship is visible in their graphs
7

Inverse Functions

2.2 The Limit of a Function

🧭 Overview

🧠 One-sentence thesis

An inverse function undoes the operation of the original function, but it can only exist when the original function is one-to-one, meaning each output comes from exactly one input.

📌 Key points (3–5)

  • What an inverse function does: reverses the operation of the original function—whatever the function does, the inverse undoes it.
  • Condition for existence: a function must be one-to-one (each input maps to a different output) to have an inverse.
  • How to test one-to-one: use the horizontal line test—if any horizontal line intersects the graph more than once, the function is not one-to-one.
  • Common confusion: the horizontal line test vs the vertical line test—vertical determines whether a graph is a function at all; horizontal determines whether a function is one-to-one.
  • Restricted domains: even if a function is not one-to-one on its entire domain, you can restrict the domain to a subset where it becomes one-to-one and then define an inverse on that subset.

🔄 What inverse functions are

🔄 The undoing property

Inverse function: Given a function f with domain D and range R, its inverse function (if it exists) is the function f inverse with domain R and range D such that f inverse of y equals x if f of x equals y.

  • In plain language: if f takes x to y, then f inverse takes y back to x.
  • The notation f inverse is read as "f inverse"; the negative-one is not an exponent and does not mean one divided by f of x.
  • The relationship works both ways:
    • f inverse of (f of x) equals x for all x in D
    • f of (f inverse of y) equals y for all y in R
  • Domain and range swap: the range of f becomes the domain of f inverse, and the domain of f becomes the range of f inverse.

🧪 Example: a function with an inverse

  • Consider f of x equals x cubed plus 4.
  • Any output y equals x cubed plus 4, so solve for x: x equals the cube root of (y minus 4).
  • This defines x as a function of y; call it f inverse of y equals the cube root of (y minus 4).
  • Check: f inverse of (f of x) equals f inverse of (x cubed plus 4) equals the cube root of ((x cubed plus 4) minus 4) equals x.
  • This new function "undid" what the original function did.

❌ Example: a function without an inverse

  • Try to find the inverse of f of x equals x squared.
  • Solve y equals x squared for x: x equals plus or minus the square root of y.
  • This equation does not describe x as a function of y because there are two solutions for every y greater than zero.
  • The problem: two inputs are sent to the same output for each output y greater than zero.
  • This violates the requirement for an inverse to exist.

🎯 One-to-one functions

🎯 Definition and importance

One-to-one function: A function f is one-to-one if f of x₁ does not equal f of x₂ when x₁ does not equal x₂.

  • In other words: different inputs must produce different outputs.
  • Why it matters: only one-to-one functions have inverses.
  • If a function sends two different inputs to the same output, you cannot uniquely "undo" the operation—you wouldn't know which input to return to.

📏 The horizontal line test

Horizontal line test: A function f is one-to-one if and only if every horizontal line intersects the graph of f no more than once.

  • How to use it: draw horizontal lines anywhere in the xy-plane; if any line crosses the graph more than once, the function is not one-to-one.
  • Don't confuse with the vertical line test:
    • Vertical line test: determines whether a graph represents a function at all.
    • Horizontal line test: determines whether a function is one-to-one (and thus has an inverse).

🔍 Testing examples

Example A: A step-function-like graph

  • For any integer n greater than or equal to zero, the horizontal line y equals n intersects the graph more than once.
  • Conclusion: not one-to-one.

Example B: A strictly increasing curve

  • Every horizontal line intersects the graph at most once.
  • Conclusion: one-to-one.

🛠️ Finding an inverse function

🛠️ Step-by-step strategy

  1. Solve the equation y equals f of x for x.
  2. Interchange the variables x and y and write y equals f inverse of x.
  • Why interchange variables: we typically use x for the independent variable and y for the dependent variable; this convention makes graphing easier later.

📝 Worked example

Find the inverse of f of x equals 3x minus 4.

Step 1: Solve for x

  • If y equals 3x minus 4, then 3x equals y plus 4, so x equals (one-third)y plus four-thirds.

Step 2: Interchange variables

  • Rewrite as y equals (one-third)x plus four-thirds.
  • Let y equal f inverse of x, so f inverse of x equals (one-third)x plus four-thirds.

Domain and range:

  • Since the domain of f is all real numbers, the range of f inverse is all real numbers.
  • Since the range of f is all real numbers, the domain of f inverse is all real numbers.

Verification:

  • Check that f inverse of (f of x) equals x:
  • f inverse of (3x minus 4) equals (one-third)(3x minus 4) plus four-thirds equals x minus four-thirds plus four-thirds equals x.
  • Note: for f inverse to truly be the inverse of f, both f inverse of (f of x) equals x and f of (f inverse of x) equals x must hold for all x in the domain of the inside function.

📊 Graphing inverse functions

📊 The reflection property

  • Key relationship: the graph of f inverse is a reflection of the graph of f about the line y equals x.
  • Why: if the point (a, b) is on the graph of f, then b equals f of a, so f inverse of b equals a.
  • Therefore, the point (b, a) is on the graph of f inverse.
  • This swapping of coordinates corresponds to reflection across the line y equals x.

🎨 Sketching strategy

To sketch the graph of f inverse from the graph of f:

  1. Draw the line y equals x.
  2. Reflect the graph of f across this line using symmetry.
  3. Identify the domain and range of f inverse (they are swapped from f).

Example: For a function f with domain [0, infinity) and range [negative 2, infinity):

  • The domain of f inverse is [0, infinity).
  • The range of f inverse is [negative 2, infinity).
  • If f inverse of x equals x squared minus 2, you can verify this matches the reflected graph.

🔒 Restricting domains

🔒 Why restrict domains

  • Some functions like f of x equals x squared are not one-to-one on their entire domain.
  • However, we can choose a subset of the domain (a restricted domain) where the function is one-to-one.
  • On this restricted domain, we can define a new function g such that g of x equals f of x for all x in the restricted domain.
  • Then g has an inverse function on that domain.

🧩 Multiple possible restrictions

For f of x equals x squared:

Restricted domainNew functionInverse function
[0, infinity)g of x equals x squaredg inverse of x equals the square root of x
(negative infinity, 0]h of x equals x squaredh inverse of x equals negative the square root of x
  • Both g and h are one-to-one on their respective domains.
  • Each has a different inverse because the restriction is different.
  • Example: on [0, infinity), the inverse "undoes" squaring by taking the positive square root; on (negative infinity, 0], it takes the negative square root.

⚠️ Important note

  • The same formula (like x squared) can have different inverses depending on which domain restriction you choose.
  • You must specify the restricted domain to uniquely determine the inverse.
8

Inverse Functions and Restricted Domains

2.3 The Limit Laws

🧭 Overview

🧠 One-sentence thesis

By restricting the domain of a non-one-to-one function to an interval where it is one-to-one, we can define an inverse function that "undoes" the original function on that restricted domain.

📌 Key points (3–5)

  • Restricting domains: A function that is not one-to-one overall can become one-to-one on a carefully chosen subset of its domain.
  • Inverse trigonometric functions: Standard trigonometric functions are periodic and not one-to-one, but restricting their domains allows us to define inverse functions.
  • Composition behavior: The composition of a function with its inverse returns the input only when the input lies within the restricted domain.
  • Common confusion: The inverse sine of sine of x equals x only when x is in the restricted domain (between negative pi/2 and pi/2), not for all x values.
  • Practical importance: Inverse functions help us find which angle produces a given trigonometric value within a specified interval.

🔄 Restricting domains to create inverses

🔄 Why restriction is necessary

  • A function must be one-to-one to have an inverse.
  • Many important functions (like x squared) are not one-to-one on their natural domains.
  • The horizontal line test shows when a function fails to be one-to-one: if any horizontal line crosses the graph more than once, the function is not one-to-one.

📐 How to restrict a domain

Restricted domain: A subset of a function's domain chosen so that the function is one-to-one on that subset.

  • Choose an interval where the function passes the horizontal line test.
  • Define a new function g with the restricted domain where g(x) equals f(x) for all x in the restricted domain.
  • The new function g is one-to-one and therefore has an inverse.

Example: The function f(x) = x squared is not one-to-one overall, but it is one-to-one on the interval from 0 to infinity. On this restricted domain, the inverse is the square root function.

🔀 Multiple possible restrictions

  • The same function can be restricted in different ways.
  • For f(x) = x squared:
    • Restricting to [0, infinity) gives inverse g inverse (x) = square root of x
    • Restricting to (negative infinity, 0] gives inverse h inverse (x) = negative square root of x
  • Both are valid inverses for their respective restricted domains.

📐 Inverse trigonometric functions

📐 Standard domain restrictions

The six trigonometric functions require specific domain restrictions to define their inverses:

FunctionRestricted DomainInverse DomainInverse Range
sine[negative pi/2, pi/2][negative 1, 1][negative pi/2, pi/2]
cosine[0, pi][negative 1, 1][0, pi]
tangent(negative pi/2, pi/2)all real numbers(negative pi/2, pi/2)
cotangent(0, pi)all real numbers(0, pi)
secant[0, pi], y not equal to pi/2absolute value of x at least 1[0, pi], y not equal to pi/2
cosecant[negative pi/2, pi/2], y not equal to 0absolute value of x at least 1[negative pi/2, pi/2], y not equal to 0

🎯 What inverse trig functions tell us

Inverse sine function (written as sin inverse or arcsin): tells us which angle theta in the interval [negative pi/2, pi/2] satisfies sin(theta) = x.

  • The output of an inverse trigonometric function is always an angle.
  • The angle must lie in the specified restricted range.
  • Example: To evaluate cosine inverse of (1/2), find the angle theta where cosine of theta equals 1/2 AND theta is between 0 and pi. The answer is pi/3.

📊 Graphing inverse trig functions

  • The graph of each inverse trigonometric function is a reflection of the corresponding restricted trigonometric function about the line y = x.
  • This reflection property holds for all inverse functions.

⚠️ Composition with restricted domains

⚠️ When composition works perfectly

For sine and its inverse:

  • sin(sin inverse of y) = y if and only if negative 1 ≤ y ≤ 1
  • This works because y is in the domain of sin inverse

For cosine and its inverse:

  • cos(cos inverse of y) = y if and only if negative 1 ≤ y ≤ 1

⚠️ When composition requires care

For sine and its inverse:

  • sin inverse (sin of x) = x if and only if negative pi/2 ≤ x ≤ pi/2
  • Outside this interval, the equation does not hold even though the expression is defined

Don't confuse: The inverse function only "undoes" the original function when the input is within the restricted domain.

Example from the excerpt:

  • sin inverse (sin of (pi/4)) = pi/4 (works because pi/4 is in [negative pi/2, pi/2])
  • sin inverse (sin of pi) = 0, NOT pi (fails because pi is outside the restricted domain; sin of pi equals 0, and sin inverse of 0 equals 0)

🔍 Why the restriction matters

  • The inverse sine function is the inverse of the restricted sine function, not the unrestricted one.
  • For x outside the restricted interval, sin inverse (sin of x) simplifies to a different value that lies within the restricted range.
  • The function still "undoes" the sine in the sense that it finds an angle with the same sine value, but it returns the angle within the standard interval.

🧮 Evaluating inverse trigonometric expressions

🧮 Direct evaluation

To evaluate an inverse trigonometric function:

  1. Identify what value you need (e.g., sin inverse of negative square root of 3 over 2)
  2. Find the angle theta that produces that trigonometric value
  3. Verify the angle lies in the correct restricted range
  4. That angle is your answer

Example: sin inverse of (negative square root of 3 over 2) equals negative pi/3, because sine of (negative pi/3) equals negative square root of 3 over 2, and negative pi/3 is in [negative pi/2, pi/2].

🧮 Compositions requiring multiple steps

When evaluating compositions like cos inverse (cos of (5 pi over 4)):

  1. First evaluate the inner function: cos of (5 pi over 4) = negative square root of 2 over 2
  2. Then find the angle in the restricted range: cos inverse of (negative square root of 2 over 2) = 3 pi over 4
  3. The answer is 3 pi over 4, not 5 pi over 4, because 5 pi over 4 is outside [0, pi]

🧮 Mixed trigonometric functions

For expressions like sin inverse (cos of (2 pi over 3)):

  1. Evaluate the inner function: cos of (2 pi over 3) = negative 1/2
  2. Then evaluate the outer function: sin inverse of (negative 1/2) = negative pi/6
  3. Find the angle in sine inverse's range where sine equals negative 1/2
9

Continuity

2.4 Continuity

🧭 Overview

🧠 One-sentence thesis

Continuity is a fundamental limit concept that determines whether a function behaves smoothly at a given point, and understanding it is essential for applying calculus techniques.

📌 Key points (3–5)

  • What continuity addresses: whether a function has breaks, jumps, or gaps at particular points.
  • Connection to limits: continuity depends on whether the limit of a function at a point matches the function's actual value there.
  • Why it matters: many calculus operations (like differentiation and integration) require functions to be continuous.
  • Common confusion: not all functions have limits at all points; a function may exist at a point but still fail to be continuous there.
  • Chapter context: continuity builds on the limit concepts introduced earlier (limit of a function, limit laws) and precedes the precise definition of a limit.

🔗 Relationship to limits

🔗 Continuity depends on limits

  • The excerpt places continuity (section 2.4) after "The Limit of a Function" (2.2) and "The Limit Laws" (2.3).
  • The chapter introduction states: "Not all functions have limits at all points, and we discuss what this means and how we can tell if a function does or does not have a limit at a particular value."
  • Continuity is the property that connects three things at a point: the function's value, the limit as you approach the point, and whether they match.

🧩 What "no limit" means

  • A function may fail to have a limit at a point for several reasons (e.g., jumps, infinite behavior, oscillation).
  • The excerpt emphasizes: "we discuss what this means and how we can tell if a function does or does not have a limit."
  • Don't confuse: a function can be defined at a point (i.e., f(a) exists) but still not have a limit there, or have a limit that doesn't equal f(a).

🎯 Why continuity is central to calculus

🎯 Continuity enables calculus operations

  • The chapter introduction states: "The idea of a limit is central to all of calculus."
  • Continuity is a specific application of limits that determines where calculus tools can be applied.
  • Example: if a function has a break or jump at a point, you cannot meaningfully compute a derivative (rate of change) there.

🔍 Informal vs. precise approaches

  • The excerpt notes: "This chapter has been created in an informal, intuitive fashion, but this is not always enough if we need to prove a mathematical statement involving limits."
  • Section 2.5 ("The Precise Definition of a Limit") follows continuity and "presents the more precise definition of a limit and shows how to prove whether a function has a limit."
  • Continuity can be understood intuitively (no breaks or jumps) but also has a rigorous mathematical definition based on limits.

🧭 Chapter structure and context

🧭 Where continuity fits

The chapter "Limits" is organized as follows:

SectionTopicRole
2.1A Preview of CalculusMotivates limits (e.g., tangent problem, derivative idea)
2.2The Limit of a FunctionDefines what a limit is and how to find it
2.3The Limit LawsProvides rules for computing limits algebraically
2.4ContinuityApplies limits to determine smooth behavior
2.5The Precise Definition of a LimitFormalizes limits for rigorous proofs
  • Continuity synthesizes earlier limit concepts and prepares for formal proofs.
  • It addresses the practical question: "At which points can we safely use calculus techniques?"

🚀 Motivating example: speed limit

  • The chapter opens with a science-fiction scenario: spacecraft traveling to distant galaxies.
  • Einstein's equation shows that mass increases with speed: m = m₀ divided by the square root of (1 minus v² over c²), where m₀ is rest mass, v is speed, and c is the speed of light.
  • The question "What is this speed limit?" illustrates a limit problem: as v approaches c, the denominator approaches zero, and mass grows without bound.
  • This real-world example underscores why limits (and by extension, continuity) matter: they describe boundaries and behavior near critical points.
10

The Precise Definition of a Limit

2.5 The Precise Definition of a Limit

🧭 Overview

🧠 One-sentence thesis

The precise definition of a limit provides the rigorous mathematical foundation needed to prove statements about limits, moving beyond the informal, intuitive approach used earlier in the chapter.

📌 Key points (3–5)

  • Why precision matters: informal, intuitive descriptions are not always sufficient when proving mathematical statements involving limits.
  • What this section does: presents the more precise definition of a limit and demonstrates how to prove whether a function has a limit.
  • Contrast with earlier approach: the chapter begins with an informal, intuitive fashion but concludes with formal rigor.
  • Common confusion: intuition vs proof—understanding a limit intuitively is different from being able to prove a limit exists mathematically.

📐 From intuition to rigor

📐 Why informal methods fall short

  • The chapter acknowledges that the earlier informal, intuitive approach has limitations.
  • When you need to prove a mathematical statement involving limits, intuition alone is not always enough.
  • The excerpt emphasizes the distinction between describing limits and proving statements about them.

🎯 The role of the precise definition

The precise definition of a limit: a formal mathematical statement that allows rigorous proofs about limits.

  • This definition serves as the foundation for proving whether a function has a limit at a particular value.
  • It moves from "understanding what a limit means" to "being able to demonstrate mathematically that a limit exists or does not exist."

🔍 What the section covers

🔍 Proving limit existence

  • The section shows how to prove whether a function has a limit.
  • This is distinct from simply finding or calculating a limit value.
  • Example scenario: given a function and a point, use the precise definition to demonstrate rigorously that the limit exists (or does not exist) at that point.

🔍 The formal framework

  • The precise definition provides the tools needed for mathematical proof.
  • It allows you to move beyond checking values or graphing to formal verification.
  • Don't confuse: the precise definition does not replace intuition; it provides the rigorous backing for intuitive understanding.

🧩 Context within the chapter

🧩 Chapter structure

The excerpt describes the overall flow of the chapter on limits:

StageApproachPurpose
Beginning sectionsInformal, intuitiveBuild understanding of what limits are and how to find them
Middle sectionsExamining when limits existDiscuss what it means when functions do or don't have limits
Final section (2.5)Precise definitionEnable rigorous proofs of limit statements

🧩 Building on earlier material

  • Earlier sections examine "why limits are so important" and "how to find the limit of a function at a given point."
  • The chapter discusses "what this means" when functions do not have limits at all points and "how we can tell" if a limit exists.
  • Section 2.5 completes this progression by providing the formal tools to prove these observations.
11

Trigonometric Functions

3.1 Defining the Derivative

🧭 Overview

🧠 One-sentence thesis

Trigonometric functions model cyclical phenomena by defining relationships between angles and coordinates on the unit circle, and these functions satisfy key identities that help solve equations involving angles.

📌 Key points (3–5)

  • What trigonometric functions measure: relationships between angles (in radians or degrees) and coordinates on a circle, or ratios of side lengths in right triangles.
  • Radian measure is natural: radians relate directly to arc length on the unit circle, where an angle has radian measure 1 when its arc length is 1.
  • Six basic functions: sine, cosine, tangent, cosecant, secant, and cotangent are defined from coordinates on the unit circle or side ratios in right triangles.
  • Trigonometric identities: equations like the Pythagorean identities and double-angle formulas hold for all valid angles and simplify solving equations.
  • Common confusion: when solving trigonometric equations, dividing by a trigonometric function (e.g., cos θ) can lose solutions where that function equals zero; always factor instead.

📐 Angle measurement

📏 Radian measure definition

The radian measure of an angle θ is the arc length s of the corresponding arc on the unit circle.

  • A unit circle has radius 1.
  • An angle corresponding to an arc of length 1 has radian measure 1.
  • Why radians are natural: they connect angle size directly to arc length without extra conversion factors.

🔄 Converting between degrees and radians

  • Key conversion: 180° equals π radians, so 360° equals 2π radians.
  • Use the conversion factor: 1 = (π rad)/(180°) or 1 = (180°)/(π rad).
DegreesRadiansDegreesRadians
001202π/3
30π/61353π/4
45π/41505π/6
60π/3180π
90π/2

Example: To express 225° in radians, multiply 225° · (π/180°) = 5π/4 rad. To express 5π/3 rad in degrees, multiply (5π/3) · (180°/π) = 300°.

🧭 Standard position

An angle is in standard position when its initial side lies along the positive x-axis and its terminal side is the line segment from the origin to a point on the circle.

  • This setup allows consistent definition of trigonometric functions from coordinates.

🔢 The six basic trigonometric functions

🔢 Unit circle definitions

Let P = (x, y) be a point on the unit circle centered at the origin. Let θ be an angle in standard position with terminal side OP. The trigonometric functions are:

  • sin θ = y
  • cos θ = x
  • tan θ = y/x
  • csc θ = 1/y
  • sec θ = 1/x
  • cot θ = x/y
  • When functions are undefined: sec θ and tan θ are undefined if x = 0; cot θ and csc θ are undefined if y = 0.
  • The excerpt emphasizes that these definitions work for any angle, not just acute angles.

📏 Circle of radius r

  • For a point P = (x, y) on a circle of radius r (not necessarily 1):
    • x = r cos θ
    • y = r sin θ
  • The other trigonometric functions can be expressed in terms of x, y, and r.

📐 Right triangle interpretation

  • For an acute angle θ in a right triangle:
    • Let A = length of the adjacent leg, O = length of the opposite leg, H = length of the hypotenuse.
    • sin θ = O/H, cos θ = A/H, tan θ = O/A
    • csc θ = H/O, sec θ = H/A, cot θ = A/O
  • How this connects to the circle: inscribe the triangle into a circle of radius H; the definitions match the unit circle definitions scaled by r.

Example: A ramp is to be built with one end on the ground and the other at the top of a 4 ft staircase, with a 10° angle between the ground and the ramp. To find the ramp length x, use sin(10°) = 4/x, so x = 4/sin(10°) ≈ 23.035 ft.

🔍 Evaluating at major angles

  • The excerpt provides a table of sine and cosine values at major angles in the first quadrant (0, π/6, π/4, π/3, π/2).
  • For angles in other quadrants, use the coordinates of the corresponding point on the unit circle.

Example: sin(2π/3) corresponds to the point (−1/2, √3/2) on the unit circle, so sin(2π/3) = √3/2.

🧮 Trigonometric identities

🧮 What identities are

A trigonometric identity is an equation involving trigonometric functions that is true for all angles θ for which the functions are defined.

  • Why they matter: identities help solve or simplify equations.

🔑 Key identity families

Reciprocal identities:

  • tan θ = (sin θ)/(cos θ)
  • cot θ = (cos θ)/(sin θ)
  • csc θ = 1/(sin θ)
  • sec θ = 1/(cos θ)

Pythagorean identities:

  • (sin θ)² + (cos θ)² = 1
  • 1 + (tan θ)² = (sec θ)²
  • 1 + (cot θ)² = (csc θ)²

Addition and subtraction formulas:

  • sin(α ± β) = sin α cos β ± cos α sin β
  • cos(α ± β) = cos α cos β ∓ sin α sin β

Double-angle formulas:

  • sin(2θ) = 2 sin θ cos θ
  • cos(2θ) = 2(cos θ)² − 1 = 1 − 2(sin θ)² = (cos θ)² − (sin θ)²

⚠️ Solving equations: avoiding lost solutions

  • Don't divide by a trigonometric function: if you divide both sides by (e.g.) cos θ, you lose solutions where cos θ = 0.
  • Do factor instead: rewrite the equation so you can factor out the trigonometric function and solve each factor separately.

Example: To solve 1 + cos(2θ) = cos θ, use the double-angle formula to get 1 + 2(cos θ)² − 1 = cos θ, which simplifies to 2(cos θ)² − cos θ = 0. Factor: cos θ (2 cos θ − 1) = 0. Solutions are cos θ = 0 (giving θ = π/2 + nπ) and cos θ = 1/2 (giving θ = π/3 + 2nπ or θ = −π/3 + 2nπ), where n is any integer.

🔍 Checking for extraneous solutions

  • When you multiply both sides of an equation by a trigonometric function to clear a denominator, you may introduce extraneous solutions.
  • Always check: after solving, verify that your solutions satisfy the original equation (i.e., that you can actually divide by the function in question).

Example: To solve sin(2θ) = tan θ, rewrite as 2 sin θ cos θ = (sin θ)/(cos θ). Multiplying by cos θ gives 2 sin θ (cos θ)² − sin θ = 0. However, this step assumes cos θ ≠ 0; if cos θ = 0, the original equation is undefined. So check that final solutions do not make cos θ = 0.

12

Trigonometric Equations, Identities, and Functions

3.2 The Derivative as a Function

🧭 Overview

🧠 One-sentence thesis

Solving trigonometric equations requires careful factoring (not dividing by terms that might be zero), and understanding transformations of sine and cosine functions allows us to model periodic phenomena like daylight hours.

📌 Key points (3–5)

  • Factoring vs. dividing: When solving trigonometric equations, factor out common terms instead of dividing by them to avoid missing solutions where those terms equal zero.
  • Checking for extraneous solutions: Multiplying both sides by an expression (like cos θ) may introduce solutions that don't satisfy the original equation.
  • Periodic nature: Sine, cosine, secant, and cosecant repeat every 2π; tangent and cotangent repeat every π.
  • Transformations: The general form f(x) = A sin(B(x - α)) + C involves amplitude (A), period (2π/|B|), phase shift (α), and vertical shift (C).
  • Common confusion: Don't divide by trigonometric expressions that might be zero; always factor and solve each factor separately.

🔧 Solving trigonometric equations safely

🔧 The factoring principle

When solving equations like 2cos²θ - cos θ = 0, you must factor the left side rather than divide both sides by cos θ.

Why this matters:

  • Dividing by cos θ assumes cos θ ≠ 0
  • If cos θ = 0 is actually a solution, dividing eliminates it from your answer
  • Factoring preserves all solutions: cos θ(2cos θ - 1) = 0 gives both cos θ = 0 and cos θ = 1/2

Example: For 1 + cos(2θ) = cos θ, use the double-angle formula to get 2cos²θ - cos θ = 0, then factor to find θ = π/2 + nπ, θ = π/3 + 2nπ, and θ = -π/3 + 2nπ.

⚠️ Extraneous solutions

When you multiply both sides of an equation by an expression to clear denominators, you may create solutions that don't work in the original equation.

The process:

  • Solve the transformed equation completely
  • Check each solution in the original equation
  • Discard any that make a denominator zero or otherwise fail

Example: For sin(2θ) = tan θ, multiplying by cos θ gives 2sin θ cos²θ - sin θ = 0. After factoring and solving, verify that solutions don't make cos θ = 0 in the original equation's denominator.

🔄 Periodicity of trigonometric functions

🔄 What periodic means

The period of a function f is the smallest positive value p such that f(x + p) = f(x) for all x in the domain.

The six functions:

FunctionPeriodWhy
sin, cos, sec, cscComplete one trip around the unit circle
tan, cotπRepeat on intervals of length π
  • Because angle θ and angle θ + 2π correspond to the same point on the unit circle, sine and cosine values repeat every 2π
  • Tangent and cotangent have shorter periods because their patterns repeat more quickly

🔄 Phase relationships

The excerpt notes that cos x is just sin x shifted left by π/2 units:

  • cos x = sin(x + π/2)
  • sin x = cos(x - π/2)

Don't confuse: these are the same wave shape, just starting at different positions.

📐 Transformations of sine and cosine

📐 The general transformed sine function

f(x) = A sin(B(x - α)) + C

Each parameter's role:

ParameterEffectHow to interpret
AVertical stretch|A| is the amplitude (height from center to peak)
BChanges periodNew period = 2π/|B| (larger B → shorter period)
αHorizontal/phase shiftShifts the graph left (if negative) or right (if positive)
CVertical shiftMoves the entire graph up or down

📐 Real-world application: daylight hours

The excerpt gives a concrete model for hours of daylight in a city:

  • h(t) = 3.7 sin((2π/365)(x - 80.5)) + 12
  • The amplitude 3.7 represents the variation above and below average
  • The period 365 matches the yearly cycle
  • The phase shift 80.5 aligns the peak with the longest day (June 21)
  • The vertical shift 12 represents average daylight hours

Example: To model temperature over 24 hours, T = 50 + 10 sin((π/12)(t - 8)) has amplitude 10° (variation), period 24 hours, and peaks 8 hours after midnight.

✅ Proving trigonometric identities

✅ Standard technique

Start with a known identity and manipulate it algebraically to reach the target identity.

The excerpt's example:

  • Start: sin²θ + cos²θ = 1
  • Divide both sides by cos²θ: (sin²θ/cos²θ) + 1 = 1/cos²θ
  • Substitute definitions: tan²θ + 1 = sec²θ

Key principle: Use reciprocal and quotient identities (sin θ/cos θ = tan θ, 1/cos θ = sec θ, etc.) to rewrite expressions in equivalent forms.

✅ Simplification strategy

When simplifying expressions like (tan²x)/(sec²x):

  • Convert everything to sines and cosines first
  • Simplify the resulting fractions
  • Convert back to other functions if needed (though the excerpt notes "the final answer does not have to be in terms of sine and cosine only")
13

Inverse Functions

3.3 Differentiation Rules

🧭 Overview

🧠 One-sentence thesis

An inverse function reverses the operation of the original function, but such an inverse exists only when the function is one-to-one (passes the horizontal line test), and restricting the domain can make a non-one-to-one function invertible.

📌 Key points (3–5)

  • What an inverse function does: it "undoes" the original function, mapping outputs back to their corresponding inputs.
  • Condition for existence: a function must be one-to-one (different inputs produce different outputs) to have an inverse.
  • How to test: use the horizontal line test—if any horizontal line intersects the graph more than once, the function is not one-to-one.
  • Common confusion: the horizontal line test vs. the vertical line test—vertical determines if a graph is a function at all; horizontal determines if it is one-to-one.
  • Domain restriction: even if a function is not one-to-one on its entire domain, restricting the domain to a subset where it is one-to-one allows us to define an inverse.

🔄 What inverse functions are

🔄 Definition and basic idea

Inverse function: Given a function f with domain D and range R, its inverse function (if it exists) is the function f⁻¹ with domain R and range D such that f⁻¹(y) = x if f(x) = y.

  • In plain language: whatever the original function does, the inverse undoes.
  • The notation f⁻¹ is read as "f inverse"; the −1 is not an exponent, so f⁻¹(x) does not mean 1 divided by f(x).
  • Example: For f(x) = x³ + 4, solving y = x³ + 4 for x gives x = cube root of (y − 4). This defines the inverse function f⁻¹(y) = cube root of (y − 4).

🔁 The undoing property

The excerpt states two key equations:

  • f⁻¹(f(x)) = x for all x in the domain of f
  • f(f⁻¹(y)) = y for all y in the range of f

Why this matters: applying the function and then its inverse (or vice versa) returns the original value.

Domain and range swap: the range of f becomes the domain of f⁻¹, and the domain of f becomes the range of f⁻¹.

🎯 When an inverse exists: one-to-one functions

🎯 The one-to-one requirement

One-to-one function: A function f is one-to-one if f(x₁) ≠ f(x₂) when x₁ ≠ x₂.

  • In other words: each input is sent to a different output.
  • Why this is necessary: to define an inverse, we need to map each output back to exactly one input. If two different inputs produce the same output, we cannot uniquely reverse the mapping.
  • Example from the excerpt: f(x) = x² is not one-to-one because solving y = x² gives x = ±√y, meaning two inputs (positive and negative square roots) map to the same output for every y > 0.

📏 The horizontal line test

Horizontal line test: A function f is one-to-one if and only if every horizontal line intersects the graph of f no more than once.

  • This is a visual test: draw horizontal lines across the graph. If any line crosses the graph more than once, the function is not one-to-one.
  • Don't confuse with the vertical line test:
    • Vertical line test checks if a graph represents a function at all (each input has exactly one output).
    • Horizontal line test checks if a function is one-to-one (each output comes from exactly one input).
TestPurposeWhat it checks
Vertical line testIs it a function?Each x maps to exactly one y
Horizontal line testIs it one-to-one?Each y comes from exactly one x

📊 Examples from the excerpt

  • f(x) = x² fails the horizontal line test (e.g., the line y = 4 intersects the graph at both x = 2 and x = −2), so it is not one-to-one.
  • f(x) = x³ passes the horizontal line test (every horizontal line intersects at most once), so it is one-to-one.

🔧 How to find an inverse function

🔧 Step-by-step procedure

The excerpt gives a two-step strategy:

  1. Solve the equation y = f(x) for x: express x as a function of y.
  2. Interchange the variables x and y: rewrite the result as y = f⁻¹(x).

🧮 Worked example

The excerpt finds the inverse of f(x) = 3x − 4:

Step 1: Start with y = 3x − 4. Solve for x:

  • 3x = y + 4
  • x = (1/3)y + 4/3

Step 2: Interchange x and y:

  • y = (1/3)x + 4/3
  • So f⁻¹(x) = (1/3)x + 4/3

Domain and range: Since f has domain (−∞, ∞) and range (−∞, ∞), the inverse f⁻¹ has domain (−∞, ∞) and range (−∞, ∞).

Verification: Check that f⁻¹(f(x)) = x:

  • f⁻¹(f(x)) = f⁻¹(3x − 4) = (1/3)(3x − 4) + 4/3 = x − 4/3 + 4/3 = x ✓

Important note: For f⁻¹ to be the true inverse, both f⁻¹(f(x)) = x and f(f⁻¹(x)) = x must hold for all x in the domain of the inside function.

📈 Graphing inverse functions

📈 The reflection property

The excerpt explains a geometric relationship:

  • If the point (a, b) is on the graph of f, then the point (b, a) is on the graph of f⁻¹.
  • Why: since b = f(a), we have f⁻¹(b) = a, so (b, a) satisfies the inverse function.
  • Result: the graph of f⁻¹ is a reflection of the graph of f about the line y = x.

🎨 Sketching strategy

To sketch the graph of f⁻¹ from the graph of f:

  1. Draw the line y = x.
  2. Reflect every point on the graph of f across this line.

Example from the excerpt: For a function f with domain [0, ∞) and range [−2, ∞), the inverse f⁻¹ has domain [−2, ∞) and range [0, ∞). The graph of f⁻¹ is the mirror image of f across y = x.

🔒 Restricting domains

🔒 Why restrict the domain

Restricted domain: A subset of the original domain chosen so that the function becomes one-to-one on that subset.

  • Even if a function is not one-to-one on its entire domain, we can define a new function g by restricting to a subset where it is one-to-one.
  • On this restricted domain, g(x) = f(x) for all x in the new domain, and g has an inverse.

🔒 Example: f(x) = x²

The excerpt shows two ways to restrict the domain of f(x) = x²:

RestrictionNew functionDomainInverse function
Restrict to [0, ∞)g(x) = x²[0, ∞)g⁻¹(x) = √x
Restrict to (−∞, 0]h(x) = x²(−∞, 0]h⁻¹(x) = −√x
  • Both g and h are one-to-one on their restricted domains, so both have inverses.
  • Don't confuse: the same formula f(x) = x² can yield different inverse functions depending on which domain restriction you choose.

🔒 How it works

  • On [0, ∞), x² is increasing and passes the horizontal line test, so g⁻¹(x) = √x (the positive square root).
  • On (−∞, 0], x² is decreasing and also passes the horizontal line test, so h⁻¹(x) = −√x (the negative square root).
14

Inverse Functions and Restricted Domains

3.4 Derivatives as Rates of Change

🧭 Overview

🧠 One-sentence thesis

By restricting the domain of a non-one-to-one function to an interval where it becomes one-to-one, we can define an inverse function that "undoes" the original function on that restricted domain.

📌 Key points (3–5)

  • Why restrict domains: Functions like x squared are not one-to-one over all real numbers, but become one-to-one when we limit the domain to a specific interval.
  • How restriction works: Choose a subset of the original domain where the function passes the horizontal line test, then define the inverse only for that subset.
  • Inverse trigonometric functions: Sine, cosine, and other trig functions are periodic (not one-to-one), so standard conventions restrict their domains to specific intervals to define inverses.
  • Common confusion: The composition of a trig function and its inverse does not always return the original input—it only works when the input lies within the restricted domain.
  • Domain and range swap: The domain of the inverse function equals the range of the original function, and vice versa.

🔄 Why domain restriction is necessary

🔄 The one-to-one requirement

A function must be one-to-one to have an inverse function.

  • Many common functions fail the horizontal line test over their full domain.
  • Example: f(x) = x squared has the same output for both positive and negative inputs (e.g., both 2 and -2 give 4).
  • Without being one-to-one, we cannot uniquely "reverse" the function.

✂️ Creating a restricted domain

  • What it means: Select a subset of the original domain where the function is one-to-one.
  • How to do it: Define a new function g with the restricted domain, where g(x) = f(x) for all x in that subset.
  • The new function g is one-to-one on this restricted domain, so it has an inverse.

📐 Example: Squaring function with two restrictions

📐 Restricting to non-negative numbers

  • For f(x) = x squared, restrict the domain to [0, infinity).
  • Define g with domain [0, infinity) where g(x) = x squared.
  • The inverse is g inverse (x) = square root of x (the positive square root).

📐 Restricting to non-positive numbers

  • Alternatively, restrict f(x) = x squared to the domain (negative infinity, 0].
  • Define h with domain (negative infinity, 0] where h(x) = x squared.
  • The inverse is h inverse (x) = negative square root of x.
  • Key point: The same formula (x squared) can have different inverses depending on which domain restriction you choose.

📐 Finding the inverse on a restricted domain

The excerpt shows the process for f(x) = (x + 1) squared restricted to [-1, infinity):

  • The function is one-to-one on this interval.
  • Domain of f inverse = range of f = [0, infinity).
  • Range of f inverse = domain of f = [-1, infinity).
  • To find the formula: solve y = (x + 1) squared for x, getting x = -1 plus or minus square root of y.
  • Since x must be greater than or equal to -1, choose the positive square root: x = -1 + square root of y.
  • Swap x and y to get f inverse (x) = -1 + square root of x.

🌊 Inverse trigonometric functions

🌊 Why trig functions need restriction

  • All six basic trigonometric functions are periodic, repeating their values infinitely.
  • This makes them not one-to-one over their natural domains.
  • Standard conventions restrict each trig function to a specific interval where it is one-to-one.

🌊 Standard restricted domains

Trig functionRestricted domainInverse notationInverse domain
sine[-π/2, π/2]sin inverse or arcsin[-1, 1]
cosine[0, π]cos inverse or arccos[-1, 1]
tangent(-π/2, π/2)tan inverse or arctanall real numbers
cotangent(0, π)cot inverse or arccotall real numbers
secant[0, π], y ≠ π/2sec inverse or arcsecabsolute value of x ≥ 1
cosecant[-π/2, π/2], y ≠ 0csc inverse or arccscabsolute value of x ≥ 1

🌊 What inverse trig functions tell us

Inverse trigonometric functions tell us which angle in a certain interval has a specified trigonometric value.

  • Example: cos inverse (1/2) asks "which angle θ in [0, π] satisfies cos(θ) = 1/2?"
  • Answer: θ = π/3.
  • The output is always an angle within the restricted domain.

⚠️ Compositions and common confusions

⚠️ When compositions work perfectly

  • sin(sin inverse (y)) = y if and only if -1 ≤ y ≤ 1 (the domain of sin inverse).
  • cos(cos inverse (y)) = y if and only if -1 ≤ y ≤ 1.
  • The outer function undoes the inner function when the input is in the correct range.

⚠️ When compositions have restrictions

  • sin inverse (sin(x)) = x only if -π/2 ≤ x ≤ π/2 (the restricted domain).
  • cos inverse (cos(x)) = x only if 0 ≤ x ≤ π.
  • Don't confuse: If x is outside the restricted domain, the composition does not return x.
  • Example from the excerpt: sin inverse (sin(π)) = sin inverse (0) = 0, not π, because π is outside [-π/2, π/2].

⚠️ Why this happens

  • The inverse sine function is the inverse of the restricted sine function, not the unrestricted one.
  • For x outside the restricted interval, sin inverse will return a different angle in the restricted interval that has the same sine value.
  • The inverse function "undoes" the original function only within the chosen domain restriction.

⚠️ Evaluating complex expressions

Example: cos inverse (cos(5π/4))

  • First find cos(5π/4) = -√2/2.
  • Then find the angle θ in [0, π] such that cos(θ) = -√2/2.
  • That angle is 3π/4.
  • So cos inverse (cos(5π/4)) = 3π/4, not 5π/4.
15

Derivatives of Trigonometric Functions

3.5 Derivatives of Trigonometric Functions

🧭 Overview

🧠 One-sentence thesis

The excerpt does not contain substantive content on derivatives of trigonometric functions; instead, it presents exercises on graphing trigonometric combinations, inverse functions, and introduces exponential and logarithmic functions.

📌 Key points (3–5)

  • What the excerpt covers: graphing exercises for combinations of sine and cosine, inverse function exercises, and an introduction to exponential and logarithmic functions.
  • Exponential vs power functions: exponential functions have constant bases and variable exponents (e.g., 2 to the power of x), while power functions have variable bases and constant exponents (e.g., x squared).
  • Growth comparison: exponential functions like 2 to the power of x eventually grow faster than power functions like x squared as x approaches infinity.
  • Common confusion: distinguishing between exponential functions (form b to the power of x) and power functions (form x to the power of b).
  • Inverse trigonometric functions: the excerpt includes exercises on evaluating inverse trig functions and using composition to verify inverse pairs.

📊 Exponential vs Power Functions

📊 What distinguishes them

Exponential function: any function of the form f(x) = b to the power of x, where b > 0 and b ≠ 1, with base b and exponent x.

Power function: a function of the form f(x) = x to the power of b for some constant b.

  • The key difference is which part is variable:
    • Exponential: the exponent is the variable (x is in the exponent position).
    • Power: the base is the variable (x is in the base position).
  • Example: y = 2 to the power of x is exponential; y = x squared is a power function.

📈 How their growth differs

FunctionAs x → ∞As x → −∞Long-term behavior
2 to the power of xApproaches infinityApproaches 0Eventually grows faster than x squared
x squaredApproaches infinityApproaches infinityGrows more slowly than 2 to the power of x
  • The excerpt provides a table showing that both functions approach infinity as x increases, but 2 to the power of x eventually becomes larger and grows more rapidly.
  • For negative x: x squared still goes to infinity, but 2 to the power of x approaches zero (the line y = 0 is a horizontal asymptote).
  • Don't confuse: both can grow without bound, but exponential functions outpace power functions in the long run.

🔢 Evaluating Exponential Functions

🔢 Exponent properties recap

The excerpt reviews how to evaluate b to the power of x for different types of x:

  • Positive integer x: b to the power of x means b multiplied by itself x times.
  • Negative integer x: if x = −y for positive integer y, then b to the power of x = 1 divided by (b to the power of y).
  • Zero exponent: b to the power of 0 is defined to be 1.
  • Rational exponent: if x = p/q (p and q integers), then b to the power of x equals the q-th root of (b to the power of p).
    • Example: 9 to the power of (3/2) equals the square root of (9 cubed), which is 27.

🧮 Irrational exponents

  • The excerpt raises the question: how do we define b to the power of x when x is irrational (e.g., 2 to the power of the square root of 2)?
  • Approach: choose rational numbers that get closer and closer to the irrational number; the values of b to the power of x approach some number L, which we define as the result.
  • Example: the excerpt lists rational approximations to the square root of 2 (1.4, 1.41, 1.414, etc.) and shows that 2 to the power of x approaches approximately 2.665143.
  • The excerpt notes this is "too complex a question for us to answer fully right now," indicating a simplified treatment.

🧬 Application Example

🧬 Bacterial growth

The excerpt provides a concrete scenario:

  • A bacterial population doubles every 4 hours.
  • Starting population: 1000 bacteria.
  • After 4 hours: n(4) = 1000 times 2.
  • After 8 hours: n(8) = 1000 times 2 squared.
  • General pattern: after 4m hours, n(4m) = 1000 times 2 to the power of m.

This illustrates exponential growth: the exponent (m) is the variable, and the base (2) is constant.

🔄 Inverse Functions and Trigonometry

🔄 Inverse function exercises

The excerpt includes exercises on:

  • Using the horizontal line test to determine if a graph is one-to-one.
  • Finding the inverse function and its domain and range.
  • Using composition to verify that two functions are inverses of each other.

🔺 Inverse trigonometric functions

The excerpt lists exercises for evaluating inverse trig functions:

  • Examples: inverse tangent of (square root of 3 divided by 3), inverse cosine of (negative square root of 2 divided by 2), inverse cotangent of 1, inverse sine of (−1).
  • Compositions: sine of (inverse cosine of something), inverse sine of (sine of something).
  • Don't confuse: inverse sine of (sine of x) does not always equal x; the result depends on the range of the inverse function.

🌀 Graphing Trigonometric Combinations

🌀 Exploring y = A sin x + B cos x

The excerpt begins with a graphing exploration (not a formal lesson):

  • Students are asked to graph y = A sin x + B cos x for various values of A and B.
  • Tasks include estimating the x- and y-values of the maximum point (expressing x as a multiple of π).
  • The excerpt provides a table with different (A, B) pairs and asks students to find formulas for the x- and y-values of the maximum.
  • Hints suggest considering inverse trigonometric functions for the x-value formula.
  • The final task is to verify that the x-value and y-value formulas work together by substitution.

This section is exploratory and does not present formal definitions or theorems.

16

Exponential and Logarithmic Functions

3.6 The Chain Rule

🧭 Overview

🧠 One-sentence thesis

Exponential functions grow (or decay) at rates proportional to their current value, and logarithmic functions serve as their inverses, allowing us to solve for exponents and model phenomena that span wide ranges of values.

📌 Key points (3–5)

  • Exponential functions: defined as f(x) = b^x for base b > 0, b ≠ 1; domain is all real numbers, range is (0, ∞).
  • The special number e: approximately 2.718282, arises naturally from continuous compounding and has unique calculus properties (tangent line slope of 1 at x = 0).
  • Logarithmic functions: the inverse of exponential functions; log_b(x) = y means b^y = x; domain is (0, ∞), range is all real numbers.
  • Common confusion: distinguishing between different bases—log (common logarithm, base 10), ln (natural logarithm, base e), and log_b (arbitrary base b).
  • Change-of-base formulas: allow conversion between different bases, essential for calculator evaluation and simplifying expressions.

📈 Exponential function behavior and properties

📊 Growth patterns depend on base size

  • If b > 1: the function b^x is increasing on (−∞, ∞).
    • As x → ∞, b^x → ∞ (grows without bound).
    • As x → −∞, b^x → 0 (approaches zero).
  • If 0 < b < 1: the function b^x is decreasing on (−∞, ∞).
    • As x → ∞, b^x → 0 (decays to zero).
    • As x → −∞, b^x → ∞ (grows without bound).
  • Example: 2^x grows rapidly as x increases, while (1/2)^x decays rapidly.

🔢 Defining b^x for irrational exponents

  • For rational x = p/q, b^(p/q) is defined as the q-th root of b^p.
  • For irrational x (e.g., √2), we approximate by choosing rational numbers closer and closer to x; the values of b^x approach a limiting number L, which we define as b^(irrational).
  • Example from the excerpt: 2^(√2) is approximated by evaluating 2^1.4, 2^1.41, 2^1.414, ..., which approach approximately 2.665143.

🧮 Laws of exponents

The excerpt lists five fundamental laws for any a, b > 0 and all real x, y:

LawFormulaMeaning
Productb^x · b^y = b^(x+y)Multiply same base: add exponents
Quotientb^x / b^y = b^(x−y)Divide same base: subtract exponents
Power(b^x)^y = b^(xy)Power of a power: multiply exponents
Product of bases(ab)^x = a^x · b^xPower distributes over multiplication
Quotient of bases(a/b)^x = a^x / b^xPower distributes over division
  • These laws allow simplification of complex exponential expressions.
  • Example from the excerpt: (2x^(2/3))^3 · (4x^(−1/3))^2 simplifies to x^(8/3) / 2 by applying the power and quotient laws.

🌱 The natural exponential function and e

🔬 Where e comes from: continuous compounding

The number e is the limit of (1 + 1/m)^m as m → ∞; to six decimal places, e ≈ 2.718282.

  • Context: If P dollars are invested at annual interest rate r, compounded n times per year, the amount after t years is A(t) = P(1 + r/n)^(nt).
  • As n → ∞ (continuous compounding), this becomes A(t) = Pe^(rt).
  • The excerpt shows a table: as m increases (10, 100, 1000, ..., 1,000,000), (1 + 1/m)^m approaches 2.718280.
  • Example: $500 invested at 5.5% compounded continuously for 10 years yields A(10) = 500e^(0.55) ≈ $866.63; after 20 years, A(20) = 500e^(1.1) ≈ $1,502.08.

🎯 Why e is special

  • The function f(x) = e^x is the only exponential function b^x whose tangent line at x = 0 has slope exactly 1.
  • This property makes e^x the simplest exponential function for calculus applications (mentioned but not fully explained in the excerpt).
  • The excerpt notes that Leonhard Euler popularized the notation e in the 1720s, connecting it to logarithmic functions.

🦠 Bacterial growth example

  • A population doubles every 4 hours; starting with 1000 bacteria, the count after t hours is n(t) = 1000 · 2^(t/4).
  • After 6 hours: n(6) = 1000 · 2^(6/4) ≈ 2828 bacteria.
  • After 10 hours: n(10) = 1000 · 2^(10/4) ≈ 5657 bacteria.
  • After 24 hours: n(24) = 1000 · 2^6 = 64,000 bacteria.
  • This illustrates exponential growth in a real-world context.

🔄 Logarithmic functions as inverses

🔍 Definition and basic properties

For any b > 0, b ≠ 1, the logarithmic function with base b, denoted log_b, satisfies: log_b(x) = y if and only if b^y = x.

  • Domain: (0, ∞) (only positive numbers have logarithms).
  • Range: (−∞, ∞) (logarithms can be any real number).
  • Because log_b and b^x are inverses:
    • log_b(b^x) = x for all real x.
    • b^(log_b(x)) = x for all x > 0.
  • Example: log_2(8) = 3 because 2^3 = 8; log_10(1/100) = −2 because 10^(−2) = 1/100; log_b(1) = 0 for any base b.

🌲 The natural logarithm (ln)

The natural logarithm ln(x) means log_e(x), using base e.

  • Notation: ln(x) or ln x.
  • Key identities:
    • ln(e) = 1
    • ln(e^3) = 3
    • ln(1) = 0
    • ln(e^x) = x
    • e^(ln x) = x
  • The graphs of y = e^x and y = ln(x) are symmetric about the line y = x (they are inverse functions).

📐 Graphical behavior

  • For any base b > 1, the graph of y = log_b(x):
    • Is increasing on (0, ∞).
    • Passes through (1, 0) because log_b(1) = 0.
    • Approaches −∞ as x → 0⁺ (vertical asymptote at x = 0).
    • Grows without bound as x → ∞, but more slowly than any power of x.
  • The excerpt shows graphs for b = 2, e, and 10, all with similar shapes but different rates of growth.

🧰 Properties and solving equations

🔧 Three key logarithm properties

For a, b, c > 0, b ≠ 1, and any real number r:

PropertyFormulaUse
Productlog_b(ac) = log_b(a) + log_b(c)Turn multiplication into addition
Quotientlog_b(a/c) = log_b(a) − log_b(c)Turn division into subtraction
Powerlog_b(a^r) = r · log_b(a)Bring exponents down as coefficients
  • These properties are essential for simplifying logarithmic expressions and solving equations.

🧩 Solving exponential equations

Example 1: Solve 5^x = 2.

  • Apply the natural logarithm to both sides: ln(5^x) = ln(2).
  • Use the power property: x · ln(5) = ln(2).
  • Solution: x = ln(2) / ln(5).

Example 2: Solve e^x + 6e^(−x) = 5.

  • Multiply both sides by e^x: e^(2x) + 6 = 5e^x.
  • Rearrange: e^(2x) − 5e^x + 6 = 0.
  • Factor as a quadratic in e^x: (e^x − 3)(e^x − 2) = 0.
  • Solutions: e^x = 3 or e^x = 2, so x = ln(3) or x = ln(2).

🧩 Solving logarithmic equations

Example 1: Solve ln(1/x) = 4.

  • By definition, ln(1/x) = 4 means e^4 = 1/x.
  • Solution: x = 1/e^4.

Example 2: Solve log_10(√x) + log_10(x) = 2.

  • Use product and power properties: log_10(√x · x) = log_10(x^(3/2)) = (3/2)log_10(x).
  • Equation becomes: (3/2)log_10(x) = 2, so log_10(x) = 4/3.
  • Solution: x = 10^(4/3) = ∛(10^4) = ∛10000.

Example 3: Solve ln(2x) − 3ln(x^2) = 0.

  • Use power property: ln(2x) − ln(x^6) = 0.
  • Use quotient property: ln(2/x^5) = 0.
  • This means 2/x^5 = 1, so x^5 = 2.
  • Solution: x = ⁵√2.
  • The excerpt reminds us to check for extraneous solutions.

🔀 Change-of-base formulas

🔄 Converting between bases

The excerpt provides two change-of-base formulas for a, b > 0, a ≠ 1, b ≠ 1:

  1. For exponential functions: a^x = b^(x · log_b(a)) for any real x.

    • Special case (b = e): a^x = e^(x · ln(a)).
    • This expresses any exponential in terms of base e.
  2. For logarithmic functions: log_a(x) = log_b(x) / log_b(a) for any x > 0.

    • Special case (b = e): log_a(x) = ln(x) / ln(a).
    • This allows calculator evaluation of logarithms in any base using only ln or log_10.

🧮 Why change-of-base matters

  • Calculators typically only have buttons for log (base 10) and ln (base e).
  • To evaluate log_5(20), use: log_5(20) = ln(20) / ln(5) or log_10(20) / log_10(5).
  • The formulas are proven using the power property and the inverse relationship between exponentials and logarithms.
  • Example from proof: b^(log_b(a^x)) = a^x and b^(log_b(a^x)) = b^(x · log_b(a)), so a^x = b^(x · log_b(a)).

🔁 Common vs natural logarithms

  • Common logarithm: log_10(x), often written simply as log(x) on calculators.
  • Natural logarithm: log_e(x), written as ln(x).
  • Don't confuse: ln is not "log base n"; it is specifically log base e.
  • Both are special cases of the general logarithm log_b(x), chosen for convenience (base 10 for historical/decimal reasons, base e for calculus).
17

Derivatives of Inverse Functions

3.7 Derivatives of Inverse Functions

🧭 Overview

🧠 One-sentence thesis

This excerpt does not contain substantive content about derivatives of inverse functions; instead, it presents material on logarithmic functions, exponential functions, hyperbolic functions, and their inverses from a precalculus or early calculus chapter on functions and graphs.

📌 Key points (3–5)

  • The excerpt covers solving logarithmic equations using properties like the power and quotient rules.
  • Change-of-base formulas allow conversion between different logarithmic and exponential bases, typically to natural logarithms.
  • Hyperbolic functions (cosh, sinh, tanh, etc.) are defined using combinations of exponential functions e^x and e^(-x).
  • Inverse hyperbolic functions can be expressed in terms of natural logarithms.
  • Common confusion: The title mentions derivatives of inverse functions, but the excerpt contains no differentiation content—only definitions, identities, and algebraic manipulations of functions.

📝 Content mismatch notice

📝 What the excerpt actually contains

The provided text is from Chapter 1 "Functions and Graphs" of an OpenStax calculus textbook. It covers:

  • Solving logarithmic equations
  • Change-of-base formulas for logarithms and exponentials
  • Definitions and properties of hyperbolic functions
  • Inverse hyperbolic functions
  • Practice exercises on exponential and logarithmic functions

📝 What is missing

Despite the title "3.7 Derivatives of Inverse Functions," the excerpt contains:

  • No discussion of derivatives or differentiation techniques
  • No inverse function theorem or related derivative formulas
  • No examples of finding derivatives of inverse functions
  • Only algebraic manipulation and function definitions

🔄 Change-of-base formulas

🔄 Purpose and form

The change-of-base formulas allow rewriting exponential and logarithmic expressions in different bases, particularly useful when calculators only support base-10 (log) or natural logarithm (ln).

Change-of-base for exponentials: a^x = b^(x·log_b(a))
When b = e, this becomes: a^x = e^(x·ln(a))

Change-of-base for logarithms: log_a(x) = log_b(x) / log_b(a)
When b = e, this becomes: log_a(x) = ln(x) / ln(a)

🔄 How to use

  • To evaluate log base 3 of 7 using a calculator: compute ln(7) / ln(3) ≈ 1.77124
  • The formulas work for any positive bases a and b (both ≠ 1)
  • Example: The Richter scale uses base-10 logarithms to compare earthquake magnitudes

📐 Hyperbolic functions

📐 Core definitions

Hyperbolic functions are defined using exponential functions:

FunctionDefinitionFormula
Hyperbolic cosinecosh(x)(e^x + e^(-x)) / 2
Hyperbolic sinesinh(x)(e^x - e^(-x)) / 2
Hyperbolic tangenttanh(x)sinh(x) / cosh(x)
Hyperbolic secantsech(x)1 / cosh(x)
Hyperbolic cosecantcsch(x)1 / sinh(x)
Hyperbolic cotangentcoth(x)cosh(x) / sinh(x)

📐 Why "hyperbolic"

The name comes from the identity: cosh²(t) - sinh²(t) = 1

  • This parallels the trigonometric identity: cos²(t) + sin²(t) = 1
  • For any value t, the point (cosh(t), sinh(t)) lies on the unit hyperbola x² - y² = 1
  • Don't confuse: trigonometric functions relate to circles; hyperbolic functions relate to hyperbolas

📐 Physical applications

  • Describing the shape of hanging chains or cables (catenaries)
  • The height of a hanging chain can be expressed as h(x) = a·cosh(x/a) + c for certain constants
  • Used in engineering for water waves and vibrations of elastic membranes

🔁 Inverse hyperbolic functions

🔁 Definitions in logarithmic form

All inverse hyperbolic functions can be expressed using natural logarithms:

Inverse functionLogarithmic expression
sinh⁻¹(x) = arcsinh(x)ln(x + √(x² + 1))
cosh⁻¹(x) = arccosh(x)ln(x + √(x² - 1))
tanh⁻¹(x) = arctanh(x)(1/2)·ln((1 + x)/(1 - x))
coth⁻¹(x) = arccoth(x)(1/2)·ln((x + 1)/(x - 1))

🔁 Derivation approach

The excerpt shows how to derive sinh⁻¹(x):

  • Start with y = sinh⁻¹(x), so x = sinh(y)
  • Use the definition: x = (e^y - e^(-y)) / 2
  • Multiply through by e^y to get: e^(2y) - 2x·e^y - 1 = 0
  • Solve as a quadratic in e^y: e^y = x ± √(x² + 1)
  • Since e^y > 0, take the positive sign
  • Apply natural logarithm: y = ln(x + √(x² + 1))

🔁 Evaluation example

Example: tanh⁻¹(1/4) = (1/2)·ln((1 + 1/4)/(1 - 1/4)) = (1/2)·ln(5/3) ≈ 0.2554

18

Implicit Differentiation

3.8 Implicit Differentiation

🧭 Overview

🧠 One-sentence thesis

The excerpt does not contain substantive content on implicit differentiation; instead, it covers logarithmic equations, change-of-base formulas, the Richter scale application, and hyperbolic functions.

📌 Key points (3–5)

  • Logarithmic equation solving: Use properties (power, quotient) to isolate the variable and check for extraneous solutions.
  • Change-of-base formulas: Convert logarithms and exponentials to any base, typically using natural logarithms for calculator evaluation.
  • Richter scale application: A base-10 logarithmic scale where each unit difference represents a tenfold change in earthquake amplitude intensity.
  • Hyperbolic functions: Defined using combinations of e^x and e^(-x); they satisfy an identity analogous to trigonometric identities and model physical phenomena like hanging chains.
  • Common confusion: Hyperbolic functions are named for their relation to the unit hyperbola (x² - y² = 1), not the unit circle like trigonometric functions.

🧮 Solving logarithmic equations

🔧 Using logarithmic properties

  • Power property: Rewrite coefficients as exponents inside the logarithm.
    • Example: "3 times log base 10 of x equals 2" becomes "log base 10 of (x cubed) equals 2."
  • Quotient property: Combine differences of logarithms into a single logarithm of a quotient.
    • Example: "ln(2x) minus ln(x to the sixth)" becomes "ln(2 divided by x to the fifth)."
  • After simplification, convert to exponential form to solve for x.

⚠️ Checking for extraneous solutions

  • The excerpt emphasizes: "We should then check for any extraneous solutions."
  • Logarithms are only defined for positive arguments, so solutions must satisfy domain restrictions.
  • Example: If solving yields x = 2 to the fifth power, verify that all logarithmic arguments in the original equation remain positive.

🔄 Change-of-base formulas

📐 The two formulas

Change-of-base for exponentials: a^x = b^(x times log base b of a). If b = e, this reduces to a^x = e^(x times ln a).

Change-of-base for logarithms: log base a of x = (log base b of x) divided by (log base b of a). If b = e, this reduces to log base a of x = (ln x) divided by (ln a).

  • These allow conversion to any base, but calculators typically only have common logarithm (log base 10) and natural logarithm (ln).
  • Example: To evaluate log base 3 of 7, use (ln 7) divided by (ln 3), which is approximately 1.77124.

🧩 Why these formulas work

  • The proof uses the fact that exponential and logarithmic functions are inverses.
  • For the logarithm formula, the excerpt shows that (log base b of a) times (log base a of x) equals (log base b of x) by converting to exponential form and using one-to-one properties.
  • Don't confuse: The formula changes the base of the logarithm, not the argument.

🌍 Application: The Richter scale

📊 How the scale measures earthquake intensity

The Richter scale is a base-10 logarithmic scale measuring earthquake magnitude.

  • If R₁ and R₂ are magnitudes of two earthquakes, and A₁ and A₂ are their amplitudes (measured by seismograph), then:
    • R₁ - R₂ = log base 10 of (A₁ divided by A₂).
  • Key insight: Each unit increase on the Richter scale corresponds to a tenfold increase in amplitude.

🔢 Interpreting magnitude differences

Magnitude differenceAmplitude ratioIntensity comparison
1 unit (e.g., 8 vs 7)10:1First earthquake is 10 times as intense
2 units (e.g., 8 vs 6)100:1First earthquake is 100 times as intense
1.7 units (e.g., 9 vs 7.3)10^1.7 ≈ 50:1First earthquake is approximately 50 times as intense
  • Example: The 2011 Japan earthquake (magnitude 9) was about 50 times more intense than the 2010 Haiti earthquake (magnitude 7.3).
  • Don't confuse: The difference in magnitude numbers is small, but the difference in actual intensity is exponential.

🌊 Hyperbolic functions

🧮 Definitions

The excerpt defines six hyperbolic functions in terms of e^x and e^(-x):

FunctionFormulaPronunciation
Hyperbolic cosinecosh x = (e^x + e^(-x)) / 2"gosh"
Hyperbolic sinesinh x = (e^x - e^(-x)) / 2"cinch"
Hyperbolic tangenttanh x = sinh x / cosh x = (e^x - e^(-x)) / (e^x + e^(-x))"tanch"
Hyperbolic cosecantcsch x = 1 / sinh x = 2 / (e^x - e^(-x))"coseech"
Hyperbolic secantsech x = 1 / cosh x = 2 / (e^x + e^(-x))"seech"
Hyperbolic cotangentcoth x = cosh x / sinh x = (e^x + e^(-x)) / (e^x - e^(-x))"cotanch"

🔗 Why "hyperbolic"?

  • The key identity: cosh² t - sinh² t = 1.
  • This is analogous to the trigonometric identity cos² t + sin² t = 1, but with a minus sign.
  • For any value t, the point (x, y) = (cosh t, sinh t) lies on the unit hyperbola x² - y² = 1, not the unit circle.
  • Don't confuse: Trigonometric functions relate to the circle; hyperbolic functions relate to the hyperbola.

🏗️ Physical applications

  • Hyperbolic functions arise naturally in engineering and physics: water waves, vibrations of elastic membranes, and hanging chains or cables.
  • Catenary: A hanging chain's shape can be described by h(x) = a times cosh(x/a) + c for certain constants a and c.
  • Example: The shape of a spider's silk strand or a cable hanging under its own weight follows this hyperbolic cosine curve.

📈 Behavior as x grows

  • As x approaches positive infinity:
    • Both cosh x and sinh x approach (1/2) times e^x, since e^(-x) approaches 0.
  • As x approaches negative infinity:
    • cosh x approaches (1/2) times e^(-x).
    • sinh x approaches -(1/2) times e^(-x).
  • This asymptotic behavior helps sketch the graphs of hyperbolic functions.
19

Derivatives of Exponential and Logarithmic Functions

3.9 Derivatives of Exponential and Logarithmic Functions

🧭 Overview

🧠 One-sentence thesis

Hyperbolic functions, defined as combinations of exponential functions e^x and e^(-x), arise naturally in engineering and physics applications and possess identities analogous to trigonometric functions.

📌 Key points (3–5)

  • What hyperbolic functions are: combinations of e^x and e^(-x) that model physical phenomena like hanging chains and water waves.
  • Why they're called "hyperbolic": the identity cosh²t - sinh²t = 1 means points (cosh t, sinh t) lie on the unit hyperbola x² - y² = 1, analogous to how trigonometric functions relate to the unit circle.
  • Common confusion: hyperbolic functions resemble trigonometric functions in form and identities, but differ in key signs (e.g., cosh²x - sinh²x = 1 vs cos²x + sin²x = 1).
  • Inverse hyperbolic functions: all hyperbolic functions except cosh x and sech x are one-to-one; inverses can be expressed using logarithmic functions.
  • Real-world application: the height of a hanging chain (catenary) can be described by h(x) = a·cosh(x/a) + c.

📐 Definition and basic properties

📐 The six hyperbolic functions

Hyperbolic cosine: cosh x = (e^x + e^(-x))/2
Hyperbolic sine: sinh x = (e^x - e^(-x))/2
Hyperbolic tangent: tanh x = sinh x / cosh x = (e^x - e^(-x))/(e^x + e^(-x))

The remaining three are reciprocals:

  • Hyperbolic cosecant: csch x = 1/sinh x = 2/(e^x - e^(-x))
  • Hyperbolic secant: sech x = 1/cosh x = 2/(e^x + e^(-x))
  • Hyperbolic cotangent: coth x = cosh x / sinh x = (e^x + e^(-x))/(e^x - e^(-x))

🗣️ Pronunciation guide

  • "cosh" rhymes with "gosh"
  • "sinh" is pronounced "cinch"
  • "tanh," "sech," "csch," and "coth" are pronounced "tanch," "seech," "coseech," and "cotanch"

🌉 Physical applications

🌉 The catenary (hanging chain)

  • A chain or cable hanging under its own weight forms a curve called a catenary.
  • When the low point lies along the y-axis, the height can be described by h(x) = a·cosh(x/a) + c for certain constants a and c.
  • Example: spider web silk strands follow this hyperbolic shape.

🌊 Other applications

  • Water waves
  • Vibrations of elastic membranes
  • Various engineering and physics problems

🔗 Connection to hyperbolas

🔗 Why "hyperbolic"?

The fundamental identity is:

cosh²t - sinh²t = 1

This is analogous to the trigonometric identity cos²t + sin²t = 1, but with a crucial sign difference.

What this means: Given a value t, the point (x, y) = (cosh t, sinh t) lies on the unit hyperbola x² - y² = 1.

Don't confuse: Trigonometric functions relate to the unit circle (x² + y² = 1), while hyperbolic functions relate to the unit hyperbola (x² - y² = 1).

🧮 Identities and properties

🧮 Even and odd properties

FunctionPropertyMeaning
cosh(-x) = cosh xEven functionSymmetric about y-axis
sinh(-x) = -sinh xOdd functionSymmetric about origin

🧮 Key identities

  1. cosh x + sinh x = e^x
  2. cosh x - sinh x = e^(-x)
  3. cosh²x - sinh²x = 1
  4. 1 - tanh²x = sech²x
  5. coth²x - 1 = csch²x
  6. sinh(x ± y) = sinh x cosh y ± cosh x sinh y
  7. cosh(x ± y) = cosh x cosh y ± sinh x sinh y

Note: Most properties are analogous to trigonometric identities except for some sign differences.

🧮 Example evaluation

If sinh x = 3/4, find the other hyperbolic functions:

  • Using cosh²x - sinh²x = 1: cosh²x = 1 + (3/4)² = 25/16
  • Since cosh x ≥ 1 for all x, we have cosh x = 5/4
  • Then: tanh x = 3/5, csch x = 4/3, sech x = 4/5, coth x = 5/3

📈 Graphs and behavior

📈 Behavior as x approaches infinity

  • As x → ∞: both cosh x and sinh x approach (1/2)e^x (since e^(-x) → 0)
  • As x → -∞: cosh x approaches (1/2)e^(-x), while sinh x approaches -(1/2)e^(-x)

📈 Properties of tanh x

  • tanh(0) = 1
  • -1 < tanh(x) < 1 for all x
  • tanh x → 1 as x → ∞
  • tanh x → -1 as x → -∞

🔄 Inverse hyperbolic functions

🔄 Which functions have inverses

  • All hyperbolic functions are one-to-one except cosh x and sech x.
  • If we restrict cosh x and sech x to the domain [0, ∞), then all become one-to-one and have inverses.

🔄 Logarithmic expressions for inverses

Inverse hyperbolic sine: sinh⁻¹x = arcsinh x = ln(x + √(x² + 1))
Inverse hyperbolic cosine: cosh⁻¹x = arccosh x = ln(x + √(x² - 1))
Inverse hyperbolic tangent: tanh⁻¹x = arctanh x = (1/2)ln((1 + x)/(1 - x))

Similar logarithmic formulas exist for coth⁻¹x, sech⁻¹x, and csch⁻¹x.

🔄 Derivation example

To derive sinh⁻¹x = ln(x + √(x² + 1)):

  • Let y = sinh⁻¹x, so x = sinh y = (e^y - e^(-y))/2
  • Rearranging: e^y - 2x - e^(-y) = 0
  • Multiply by e^y: e^(2y) - 2x·e^y - 1 = 0
  • Solve as quadratic: e^y = x ± √(x² + 1)
  • Since e^y > 0, take the positive sign
  • Apply natural logarithm: y = ln(x + √(x² + 1))

🔄 Example evaluation

  • sinh⁻¹(2) = ln(2 + √(2² + 1)) = ln(2 + √5) ≈ 1.4436
  • tanh⁻¹(1/4) = (1/2)ln((1 + 1/4)/(1 - 1/4)) = (1/2)ln(5/3) ≈ 0.2554
20

Related Rates

4.1 Related Rates

🧭 Overview

🧠 One-sentence thesis

The excerpt does not contain substantive content on related rates; it consists entirely of exercise problems and definitions from a chapter on functions, graphs, exponentials, and logarithms.

📌 Key points (3–5)

  • The excerpt is a collection of practice exercises covering exponential and logarithmic functions, not a conceptual explanation of related rates.
  • Topics in the exercises include evaluating exponential functions, sketching graphs, converting between exponential and logarithmic forms, and solving equations.
  • Applied problems involve bacteria growth, investment compounding, radioactive decay, population models, and pH calculations.
  • No theoretical content, definitions, or mechanisms related to "related rates" (a calculus topic about how rates of change in different variables are connected) appear in this excerpt.

📋 What the excerpt actually contains

📋 Exercise categories

The excerpt is structured as a problem set with the following types of questions:

  • Exponential function evaluation: compute values of functions like f(x) = 5^x or f(x) = e^x at specific x values.
  • Graph matching and sketching: match equations to graphs or sketch exponential/logarithmic functions and identify domain, range, and asymptotes.
  • Form conversion: rewrite logarithmic equations in exponential form and vice versa (e.g., log₃ 81 = 4 becomes 3⁴ = 81).
  • Logarithm properties: express logarithms as sums, differences, or products using logarithm rules.
  • Equation solving: solve exponential equations (e.g., 5^x = 125) and logarithmic equations (e.g., log₃ x = 0) exactly.
  • Change-of-base formula: evaluate logarithms with arbitrary bases using base 10 or base e.
  • Applied word problems: model real-world scenarios with exponential and logarithmic functions.

🧪 Applied problem contexts

The excerpt includes several application problems (marked with [T]):

ContextFunction typeExample question
Bacteria growthExponentialFind number of bacteria after 15 days given N(t) = 1300 · 2^(t/4)
Oil demandExponential decayFind oil demand when price is between $15 and $20
Investment compoundingExponential (continuous and discrete)Find accumulated amount after 5 years with various compounding frequencies
pH and acidityLogarithmicCalculate pH from hydrogen ion concentration using pH = -log[H⁺]
Radioactive decayExponential decayDetermine time for 95% of iodine-131 to decay
Population growthExponentialPredict U.S. population in 2020 and when it will double
Earthquake magnitudeLogarithmic (Richter scale)Compare energy released by earthquakes of different magnitudes

🔍 Why this does not cover related rates

  • Related rates is a calculus technique for finding how the rate of change of one quantity relates to the rate of change of another quantity through implicit differentiation.
  • The excerpt contains no discussion of:
    • Derivatives or rates of change
    • Relationships between changing quantities
    • The chain rule or implicit differentiation
    • Time-dependent relationships between variables
  • The title "4.1 Related Rates" does not match the content, which is entirely about exponential and logarithmic functions from Chapter 1.

📝 Note on content mismatch

📝 Discrepancy between title and excerpt

The provided title indicates this should be about "Related Rates," a standard calculus topic typically found in a chapter on applications of derivatives. However, the excerpt is from "Chapter 1 | Functions and Graphs" and covers only pre-calculus topics (exponential and logarithmic functions). There is no substantive content on related rates methodology, examples, or theory in the provided text.

21

Linear Approximations and Differentials

4.2 Linear Approximations and Differentials

🧭 Overview

🧠 One-sentence thesis

The excerpt provided contains only chapter review exercises, a chapter outline, and an introduction to applications of derivatives, but does not include substantive content on linear approximations and differentials.

📌 Key points (3–5)

  • The excerpt is primarily composed of review exercises from Chapter 3 on derivatives.
  • Section 4.2 "Linear Approximations and Differentials" is listed in the chapter outline but not explained.
  • The introduction discusses applications of derivatives such as related rates, optimization, and limits, but does not cover linear approximations specifically.
  • The actual content of section 4.2 is not present in the provided text.

📋 What the excerpt contains

📋 Chapter 3 review exercises

The excerpt includes:

  • True/false questions about derivatives and continuity (e.g., "Every function has a derivative," "If a function is differentiable, it is continuous")
  • Problems asking to find derivatives using the limit definition
  • Derivative calculation exercises for various functions (polynomials, trigonometric, exponential, logarithmic, inverse trigonometric)
  • Higher-order derivative problems
  • Tangent line equation problems
  • Graphical derivative sketching exercises
  • Applied problems involving water levels and hurricane wind speeds

📋 Chapter 4 outline

The chapter outline lists ten sections:

  • 4.1 Related Rates
  • 4.2 Linear Approximations and Differentials (the target section, but not included)
  • 4.3 Maxima and Minima
  • 4.4 The Mean Value Theorem
  • 4.5 Derivatives and the Shape of a Graph
  • 4.6 Limits at Infinity and Asymptotes
  • 4.7 Applied Optimization Problems
  • 4.8 L'Hôpital's Rule
  • 4.9 Newton's Method
  • 4.10 Antiderivatives

📋 Chapter introduction

The introduction mentions:

  • A motivating example about a video camera tracking a rocket launch
  • Applications of derivatives including related rates, finding maximum and minimum values, optimization problems, evaluating limits, approximating roots, and graphing functions
  • The beginning of section 4.1 on Related Rates with learning objectives about expressing changing quantities as derivatives and using the chain rule

⚠️ Missing content

⚠️ Section 4.2 not included

The excerpt does not contain the actual text of section 4.2 "Linear Approximations and Differentials." Only the section title appears in the chapter outline. To create comprehensive review notes on linear approximations and differentials, the actual section content would be needed.

22

Maxima and Minima

4.3 Maxima and Minima

🧭 Overview

🧠 One-sentence thesis

This section will teach how derivatives are used to find maximum and minimum values of functions, enabling solutions to applied optimization problems like maximizing revenue and minimizing surface area.

📌 Key points (3–5)

  • Core application: derivatives identify where functions reach their highest and lowest values.
  • Practical use cases: optimization problems such as maximizing revenue or minimizing surface area.
  • Broader context: part of a chapter covering multiple derivative applications, including related rates, approximations, and graphing.
  • Foundation for optimization: understanding maxima and minima is essential before tackling real-world optimization scenarios in later sections.

🎯 Purpose and context

🎯 What this section addresses

The excerpt positions section 4.3 as part of a larger chapter on "Applications of Derivatives." While the excerpt does not contain the actual content of section 4.3, the chapter outline indicates this section focuses on:

  • Finding maximum values (highest points) of functions
  • Finding minimum values (lowest points) of functions
  • Using these techniques as preparation for applied optimization

🔗 How it fits in the chapter

The chapter outline shows section 4.3 appears between:

  • Before: Linear Approximations and Differentials (4.2)
  • After: The Mean Value Theorem (4.4) and Derivatives and the Shape of a Graph (4.5)
  • Leads to: Applied Optimization Problems (4.7), which builds on the maxima/minima concepts

🧰 What you'll learn to do

🧰 Core skill

Finding maxima and minima: identifying the maximum (highest) and minimum (lowest) values that a function can achieve.

This is a fundamental calculus technique that uses derivatives to locate:

  • Points where functions reach peak values
  • Points where functions reach lowest values

🛠️ Practical applications mentioned

The excerpt specifically names two types of optimization problems you'll be able to solve after mastering maxima and minima:

Application typeWhat it means
Maximizing revenueFinding the highest possible income/profit
Minimizing surface areaFinding the smallest possible surface coverage

Note: The actual detailed content, definitions, methods, and worked examples for finding maxima and minima are not included in this excerpt—only the chapter outline and introduction are provided.

23

The Mean Value Theorem

4.4 The Mean Value Theorem

🧭 Overview

🧠 One-sentence thesis

The Mean Value Theorem establishes a fundamental relationship between average rates of change and instantaneous rates of change for differentiable functions, serving as a bridge between the derivative at a point and the overall behavior of a function over an interval.

📌 Key points (3–5)

  • What the theorem connects: the average rate of change over an interval to the instantaneous rate of change (derivative) at some point within that interval.
  • Prerequisites for the theorem: the function must be continuous on a closed interval and differentiable on the open interval.
  • Core conclusion: there exists at least one point where the instantaneous rate equals the average rate.
  • Common confusion: the theorem guarantees existence of such a point but does not tell you where it is or how many such points exist.
  • Why it matters: the Mean Value Theorem is foundational for understanding function behavior, proving other theorems, and analyzing rates of change in applications.

📋 Content note

📋 Excerpt limitations

The provided excerpt contains only:

  • Chapter review exercises (True/False questions, derivative computation problems)
  • A chapter outline listing section 4.4 as "The Mean Value Theorem"
  • An introduction to Chapter 4 about applications of derivatives
  • The beginning of section 4.1 on Related Rates

📋 Missing substantive content

The excerpt does not include the actual text, definitions, theorems, proofs, or explanations for section 4.4 (The Mean Value Theorem). Therefore, detailed review notes covering the theorem's statement, proof, geometric interpretation, conditions, applications, or worked examples cannot be faithfully extracted from this source material.

🔍 What can be inferred

🔍 Chapter context

  • The Mean Value Theorem appears in Chapter 4: Applications of Derivatives
  • It is positioned between "Maxima and Minima" (4.3) and "Derivatives and the Shape of a Graph" (4.5)
  • This placement suggests the theorem serves as a theoretical foundation for understanding how derivatives describe function behavior

🔍 Broader chapter themes

The chapter introduction indicates applications involving:

  • Related rates (changing quantities over time)
  • Optimization (maximum and minimum values)
  • Evaluating limits
  • Approximating function roots
  • Graphing functions accurately

The Mean Value Theorem likely provides theoretical justification for several of these applications.

24

Derivatives and the Shape of a Graph

4.5 Derivatives and the Shape of a Graph

🧭 Overview

🧠 One-sentence thesis

This section applies derivative techniques to analyze how functions behave—including finding extrema, using the Mean Value Theorem, understanding graph shapes, analyzing limits at infinity, solving optimization problems, evaluating difficult limits with L'Hôpital's Rule, approximating roots with Newton's Method, and finding antiderivatives.

📌 Key points (3–5)

  • What the chapter covers: applications of derivatives to real-world problems (like camera angles tracking a rocket) and theoretical analysis (graph behavior, limits, optimization).
  • Core techniques: related rates, linear approximations, finding maxima/minima, the Mean Value Theorem, analyzing graph shape with derivatives, limits at infinity, and L'Hôpital's Rule.
  • Practical applications: optimization problems (maximizing revenue, minimizing surface area), approximating function roots, and accurate graphing.
  • Common confusion: derivatives measure rates of change—the chapter connects abstract derivative rules to concrete changing quantities in real scenarios.
  • Foundation for later work: antiderivatives (the reverse of differentiation) are introduced as preparation for integration.

📚 Chapter structure and scope

📚 Ten major topics

The excerpt lists ten sections within Chapter 4:

SectionTopicFocus
4.1Related RatesHow quantities that change together are connected through derivatives
4.2Linear Approximations and DifferentialsUsing derivatives to approximate function values
4.3Maxima and MinimaFinding highest and lowest points of functions
4.4The Mean Value TheoremA fundamental theorem connecting average and instantaneous rates
4.5Derivatives and the Shape of a GraphUsing derivatives to understand curve behavior
4.6Limits at Infinity and AsymptotesBehavior of functions as inputs grow very large
4.7Applied Optimization ProblemsReal-world maximization and minimization
4.8L'Hôpital's RuleTechnique for evaluating difficult limits
4.9Newton's MethodApproximating roots of functions
4.10AntiderivativesReversing differentiation

🎯 Motivating example

  • A rocket launches from the ground while a video camera records from a fixed ground position.
  • The camera angle must change continuously to track the rocket as it rises.
  • The problem: at what rate should the angle of inclination change?
  • This is a related rates problem—two quantities (rocket height and camera angle) both change over time, and their rates of change are connected through derivatives.

🔗 Related rates foundation

🔗 What related rates means

Related rates: problems where two or more quantities change over time and their rates of change are connected.

  • The excerpt emphasizes expressing "changing quantities in terms of derivatives."
  • Example: in the rocket problem, both the rocket's height and the camera angle are functions of time, so both have derivatives (rates of change).

🔗 The approach

The excerpt outlines three steps for related rates problems:

  1. Express changing quantities in terms of derivatives: identify what is changing and write derivatives for those quantities.
  2. Find relationships among the derivatives: use geometry, physics, or other relationships to connect the derivatives.
  3. Use the chain rule: since quantities depend on each other and on time, the chain rule links their rates of change.
  • Don't confuse: related rates is not about finding a single derivative—it's about finding how multiple derivatives relate to each other.

🎨 Graph analysis with derivatives

🎨 Understanding shape

The title section (4.5) focuses on using derivatives to understand graph behavior:

  • Derivatives tell us where functions are increasing or decreasing.
  • Second derivatives reveal concavity (curving upward or downward).
  • Together, these determine the overall "shape" of a graph.

📈 Maxima and minima

Section 4.3 addresses finding highest and lowest points:

  • Maximum: the highest value a function reaches (either locally or globally).
  • Minimum: the lowest value a function reaches.
  • Derivatives help locate these points because at a maximum or minimum, the rate of change is often zero (the tangent line is horizontal).

🧮 Advanced techniques

🧮 L'Hôpital's Rule (Section 4.8)

  • A method for evaluating limits that initially give indeterminate forms (like 0/0).
  • Uses derivatives to resolve these difficult limits.

🧮 Newton's Method (Section 4.9)

  • An algorithm for approximating roots (solutions) of equations.
  • Uses derivatives to iteratively improve guesses.
  • Example: if you need to solve an equation but can't do so algebraically, Newton's Method uses tangent lines to get closer and closer to the answer.

🧮 Antiderivatives (Section 4.10)

Antiderivative: a function whose derivative gives you back the original function (the reverse process of differentiation).

  • This is the foundation for integral calculus.
  • If you know a rate of change, the antiderivative tells you the original quantity.

🏗️ Optimization applications

🏗️ What optimization means

Section 4.7 covers "Applied Optimization Problems":

  • Goal: maximize or minimize a real-world quantity (revenue, cost, area, volume, etc.).
  • Method: express the quantity as a function, then use derivatives to find maxima or minima.

🏗️ Examples mentioned

The excerpt specifically mentions:

  • Maximizing revenue
  • Minimizing surface area

These are typical business and engineering problems where calculus provides exact solutions.

🏗️ Why derivatives work for optimization

  • At a maximum or minimum, the derivative is zero (no instantaneous change).
  • By finding where the derivative equals zero and checking the behavior around those points, you can identify optimal values.
25

Limits at Infinity and Asymptotes

4.6 Limits at Infinity and Asymptotes

🧭 Overview

🧠 One-sentence thesis

The excerpt provided does not contain substantive content about limits at infinity and asymptotes; it only lists the section title "4.6 Limits at Infinity and Asymptotes" within a chapter outline and includes unrelated review exercises from Chapter 3.

📌 Key points (3–5)

  • The excerpt shows only a table of contents entry for section 4.6 titled "Limits at Infinity and Asymptotes."
  • No definitions, explanations, examples, or conceptual content about limits at infinity or asymptotes are present.
  • The surrounding text consists of Chapter 3 review exercises on derivatives and unrelated application problems.
  • The actual instructional content for section 4.6 is not included in this excerpt.

📋 Content analysis

📋 What the excerpt contains

The source material includes:

  • A chapter outline listing "4.6 Limits at Infinity and Asymptotes" as one of ten sections in Chapter 4 (Applications of Derivatives)
  • Chapter 3 review exercises covering derivative concepts (true/false questions, derivative calculations, tangent lines)
  • An introduction to Chapter 4 discussing related rates and a rocket launch scenario
  • The beginning of section 4.1 on Related Rates

❌ What is missing

No actual content about limits at infinity or asymptotes appears in this excerpt, including:

  • No definition of limits at infinity
  • No explanation of horizontal or vertical asymptotes
  • No worked examples or practice problems specific to this topic
  • No discussion of end behavior of functions
  • No methods for evaluating limits as x approaches infinity or negative infinity

📝 Note for review

To study limits at infinity and asymptotes, you will need to access the actual section 4.6 content, which is not present in this excerpt. The excerpt only confirms that this topic appears as the sixth section in a chapter on applications of derivatives.

26

Applied Optimization Problems

4.7 Applied Optimization Problems

🧭 Overview

🧠 One-sentence thesis

Applied optimization problems use derivatives to find maximum and minimum values of functions in real-world scenarios such as maximizing revenue and minimizing surface area.

📌 Key points (3–5)

  • Core purpose: derivatives enable finding maximum and minimum values of functions in practical contexts.
  • Types of applications: includes maximizing revenue, minimizing surface area, and other real-world optimization scenarios.
  • Connection to broader chapter: optimization is one of several derivative applications alongside related rates, limits, approximations, and graphing.
  • Mathematical foundation: relies on techniques for finding maxima and minima (covered in section 4.3).
  • Common confusion: optimization is not just about finding any derivative—it specifically targets extreme values (highest/lowest points) that solve practical problems.

🎯 What applied optimization means

🎯 The optimization concept

Applied optimization problems: real-world problems that require finding maximum or minimum values of functions using derivatives.

  • The excerpt positions this as a practical application of the mathematical technique of finding maxima and minima.
  • "Applied" distinguishes these from purely theoretical optimization—the problems come from real scenarios.
  • The focus is on using derivative-based methods to identify extreme values that answer practical questions.

🔗 Connection to maxima and minima

  • The excerpt explicitly states: "We also look at how derivatives are used to find maximum and minimum values of functions. As a result, we will be able to solve applied optimization problems."
  • This shows a two-step process:
    1. Learn the general technique (finding maxima/minima with derivatives, section 4.3)
    2. Apply it to real problems (section 4.7)
  • Don't confuse: finding a derivative is not the same as optimization—optimization specifically seeks extreme values.

📦 Types of optimization problems

💰 Maximizing revenue

  • The excerpt mentions "maximizing revenue" as one example application.
  • This represents problems where you want the highest possible value of some quantity.
  • Example: a business might use derivatives to find the price point that generates maximum total revenue.

📐 Minimizing surface area

  • The excerpt mentions "minimizing surface area" as another example.
  • This represents problems where you want the lowest possible value of some quantity.
  • Example: designing a container that uses the least material while holding a required volume.

🔄 The general pattern

Optimization typeGoalWhat derivatives find
MaximizationHighest valueWhere the function reaches its peak
MinimizationLowest valueWhere the function reaches its lowest point

🧩 Context within the chapter

🧩 Broader applications of derivatives

The excerpt places optimization within a larger family of derivative applications:

  • Related rates: how changing quantities relate over time (e.g., the rocket camera angle problem)
  • Linear approximations and differentials: estimating function values
  • Maxima and minima: the mathematical foundation for optimization
  • Mean Value Theorem: theoretical results about derivatives
  • Graph shape analysis: using derivatives to understand function behavior
  • Limits and asymptotes: behavior at extreme values
  • Applied optimization: the practical use of maxima/minima techniques
  • L'Hôpital's Rule: evaluating complicated limits
  • Newton's Method: approximating roots
  • Antiderivatives: reversing differentiation

🚀 The motivating example

  • The chapter opens with a rocket launch scenario: "A video camera is located on the ground a certain distance from the launch pad. At what rate should the angle of inclination change to allow the camera to record the flight?"
  • This illustrates a related rates problem (section 4.1), not optimization.
  • The variety of examples shows derivatives solve many different types of practical problems, with optimization being one important category.
27

L'Hôpital's Rule

4.8 L’Hôpital’s Rule

🧭 Overview

🧠 One-sentence thesis

L'Hôpital's Rule is a derivative-based technique introduced in the applications of derivatives chapter that allows evaluation of complicated limits.

📌 Key points (3–5)

  • What it does: uses derivatives to evaluate complicated limits that cannot be solved by direct substitution.
  • Where it fits: appears as one application of derivatives alongside optimization, related rates, and approximation methods.
  • Context in chapter: part of a broader toolkit showing how derivatives solve practical mathematical problems.
  • Common confusion: L'Hôpital's Rule is specifically for limits—don't confuse it with other derivative applications like finding maxima/minima or related rates.

📚 Chapter context

📚 Position in Applications of Derivatives

The excerpt shows L'Hôpital's Rule as section 4.8 in a chapter on derivative applications. The chapter covers:

  • Related rates (4.1)
  • Linear approximations (4.2)
  • Maxima and minima (4.3–4.5)
  • Limits at infinity (4.6)
  • Optimization (4.7)
  • L'Hôpital's Rule (4.8)
  • Newton's Method (4.9)
  • Antiderivatives (4.10)

🎯 Purpose stated in introduction

The chapter introduction mentions that derivatives are used "to evaluate complicated limits" as one of several applications examined.

Example: Instead of trying direct substitution when a limit gives an indeterminate form, L'Hôpital's Rule provides an alternative approach using derivatives.

🔧 What L'Hôpital's Rule addresses

🔧 Evaluating complicated limits

  • The excerpt identifies this as a specific use case for derivatives.
  • "Complicated limits" suggests cases where standard limit evaluation techniques fail or are difficult to apply.
  • The rule provides a systematic method rather than ad-hoc algebraic manipulation.

🔗 Connection to other derivative applications

Don't confuse L'Hôpital's Rule with:

  • Related rates: finding how one changing quantity affects another
  • Optimization: finding maximum/minimum values
  • Approximation: estimating function values near known points

L'Hôpital's Rule is specifically about limit evaluation, not about rates of change in physical problems or finding optimal values.

28

Newton's Method

4.9 Newton’s Method

🧭 Overview

🧠 One-sentence thesis

The excerpt provided does not contain substantive content about Newton's Method; it consists only of chapter review exercises, a chapter outline, and an introductory paragraph about related rates.

📌 Key points (3–5)

  • The excerpt shows Newton's Method listed as section 4.9 in a chapter on Applications of Derivatives.
  • No actual explanation, definition, or methodology for Newton's Method is present in the provided text.
  • The excerpt includes review exercises from Chapter 3 (on derivatives) and an introduction to Chapter 4.
  • The chapter outline indicates Newton's Method appears alongside other derivative applications like related rates, optimization, and L'Hôpital's Rule.
  • The substantive content in the excerpt focuses on derivative calculations and related rates problems, not Newton's Method itself.

📋 What the excerpt contains

📋 Chapter structure only

The excerpt shows that Newton's Method is listed as section 4.9 in a textbook chapter titled "Applications of Derivatives." The chapter outline lists ten sections:

  • Related Rates
  • Linear Approximations and Differentials
  • Maxima and Minima
  • The Mean Value Theorem
  • Derivatives and the Shape of a Graph
  • Limits at Infinity and Asymptotes
  • Applied Optimization Problems
  • L'Hôpital's Rule
  • Newton's Method (section 4.9)
  • Antiderivatives

📝 Review exercises present

The bulk of the excerpt consists of Chapter 3 review exercises covering:

  • True/false questions about continuity and differentiability
  • Derivative calculations using various rules
  • Tangent line equations
  • Applied problems about water levels and wind speeds

⚠️ Missing content note

⚠️ No Newton's Method explanation

The excerpt does not include the actual section 4.9 content. There is no explanation of what Newton's Method is, how it works, or what it is used for. To create meaningful review notes about Newton's Method itself, the actual section text would be needed.

29

Antiderivatives

4.10 Antiderivatives

🧭 Overview

🧠 One-sentence thesis

The excerpt provided contains only chapter review exercises and an introductory chapter outline without substantive content on antiderivatives themselves.

📌 Key points (3–5)

  • What is present: Chapter 3 review exercises on derivatives and differentiation techniques.
  • What is missing: The excerpt does not contain the actual section 4.10 on antiderivatives—only a table of contents listing it.
  • Context clue: Antiderivatives appear as the final topic (4.10) in a chapter on applications of derivatives.
  • Common confusion: The excerpt shows derivative problems but does not explain the reverse process (antiderivatives).

📋 Content analysis

📋 What the excerpt contains

The provided text includes:

  • Chapter 3 review exercises covering derivative concepts (limit definition, differentiation rules, implicit differentiation, higher-order derivatives, tangent lines)
  • Chapter 4 outline listing topics including related rates, linear approximations, maxima/minima, Mean Value Theorem, graph shape analysis, limits at infinity, optimization, L'Hôpital's Rule, Newton's Method, and antiderivatives
  • A rocket launch scenario introducing Chapter 4's focus on applications

❌ What is absent

  • No definition of antiderivatives
  • No explanation of the relationship between derivatives and antiderivatives
  • No techniques for finding antiderivatives
  • No examples or worked problems on antiderivatives
  • No discussion of integration or indefinite integrals

🔍 Contextual placement

🔍 Where antiderivatives fit

  • Listed as section 4.10, the final topic in "Applications of Derivatives"
  • Follows nine other application topics (related rates through Newton's Method)
  • Appears after optimization and numerical methods, suggesting it may serve as a transition to integration concepts

🔍 Limitation note

The excerpt does not provide the actual content of section 4.10, so no substantive review notes on antiderivatives can be extracted from this source material.

30

Approximating Areas

5.1 Approximating Areas

🧭 Overview

🧠 One-sentence thesis

This section introduces the foundational problem of approximating areas under curves by using rectangles and geometric reasoning, which motivates the development of calculus techniques for finding exact areas.

📌 Key points (3–5)

  • Core technique: approximate the area between a function and the x-axis by using rectangles of specified dimensions.
  • Two-sided approximation: rectangles can approximate both above and below the curve to bracket the true area.
  • Geometric verification: for simple shapes (like semicircles), geometry provides the exact answer to check approximations.
  • Common confusion: approximation vs exact area—rectangles give estimates, while geometric formulas (when applicable) give precise values.
  • Connection to calculus: these exercises build intuition for the limit process that defines the definite integral.

📐 The Rectangle Approximation Method

📦 What the method does

The rectangle approximation method estimates the area between the x-axis and the graph of a function over an interval by dividing the region into rectangles of specified dimensions.

  • The excerpt instructs students to "use rectangles" and "use the square units" to approximate area.
  • Each rectangle has a base (width along the x-axis) and a height determined by the function value.
  • Example: For the function f(x) = |x| over [−1, 2], rectangles are placed to cover the region above the x-axis.

🔺 Approximating above and below

  • The excerpt repeatedly asks to "approximate both above and below the lines."
  • Above: rectangles extend higher than the curve, overestimating the area.
  • Below: rectangles fit under the curve, underestimating the area.
  • Why this matters: bracketing the true area from both sides helps gauge the accuracy of the approximation.
  • Don't confuse: "above and below" refers to the position of the rectangle tops relative to the curve, not to the x-axis.

🧮 Using Geometry for Exact Answers

🔍 When geometry applies

  • The excerpt provides hints for functions with known geometric shapes:
    • f(x) = |x| forms triangular regions.
    • f(x) = 1 − x² is described as "the upper half of a circle of radius 1 positioned at (0, 0)."
  • For these cases, students are told to "use geometry to find the exact answer."

🎯 Exact vs approximate

ApproachWhat it givesWhen to use
Rectangle approximationEstimate (upper and lower bounds)Any function; builds intuition
Geometric formulaExact areaSimple shapes (triangles, circles, etc.)
  • Example: For f(x) = 1 − x² over [−1, 1], the region is a semicircle with radius 1, so the exact area is half the area of a circle: (1/2) × π × 1² = π/2.
  • The rectangle approximation should approach this exact value as rectangles become smaller and more numerous.

🔗 Connection to Broader Calculus Concepts

🌉 Why this exercise matters

  • The excerpt situates these exercises at the transition from single-variable problems (like tangent lines and instantaneous velocity) to more complex questions.
  • Approximating areas is a precursor to the definite integral, which formalizes the limit of rectangle approximations as rectangle width approaches zero.
  • The exercises train students to:
    • Visualize regions under curves.
    • Understand that approximation quality improves with finer partitions.
    • Recognize when exact answers are available through geometry.

🧩 What is not yet covered

  • The excerpt does not introduce the formal definition of the integral or the limit process.
  • It does not specify how to systematically refine rectangle sizes or how to compute the limit.
  • These topics are deferred to later sections; the current exercises focus on hands-on estimation and geometric intuition.
31

Evaluating Limits Using Limit Laws and the Squeeze Theorem

5.2 The Definite Integral

🧭 Overview

🧠 One-sentence thesis

Limit laws, direct substitution, and the squeeze theorem provide systematic techniques to evaluate limits, including important trigonometric limits that form the foundation for calculus.

📌 Key points (3–5)

  • Limit laws allow algebraic manipulation of limits (sums, products, quotients) when evaluating functions at a point.
  • Direct substitution works when the function is continuous at the point; indeterminate forms like 0/0 require algebraic simplification first.
  • The squeeze theorem traps an unknown limit between two functions with known equal limits, proving especially useful for trigonometric limits.
  • Common confusion: Forms like K/0 (where K ≠ 0) versus 0/0—the first indicates an infinite limit or no limit, while the second is indeterminate and may have a finite value after simplification.
  • Key trigonometric limits established: limit of sin(θ)/θ as θ approaches 0 equals 1, and limit of (1 - cos(θ))/θ as θ approaches 0 equals 0.

🔢 Handling different limit forms

🔢 Direct substitution method

  • When substituting the limit point directly into the function yields a defined value, that value is the limit.
  • This works for continuous functions at the point of interest.
  • Example: To find the limit of a polynomial as x approaches a number, simply substitute that number into the polynomial.

⚠️ The K/0 form (K ≠ 0)

  • When the numerator approaches a nonzero constant K and the denominator approaches 0, the function's magnitude becomes infinite.
  • The excerpt shows factoring the denominator to isolate the part causing division by zero.
  • The sign of the limit (positive or negative infinity) depends on whether you approach from the left or right and the signs of the factors.
  • Example: For (x - 3)/(x² - 2x) as x approaches 2 from the left, factor as (x - 3)/(x(x - 2)), separate the non-zero part (x - 3)/x (which approaches -1/2) from 1/(x - 2) (which approaches -∞), giving a product of +∞.

🔄 The 0/0 indeterminate form

An indeterminate form 0/0 occurs when both numerator and denominator approach zero; the limit may exist and be finite after algebraic simplification.

  • Direct substitution gives 0/0, which is indeterminate—it does not immediately tell you the limit.
  • Techniques include factoring and canceling common factors, rationalizing (multiplying by conjugates), or other algebraic manipulation.
  • Don't confuse with K/0: the 0/0 form often resolves to a finite number, while K/0 indicates infinite behavior.

🗜️ The Squeeze Theorem

🗜️ How the theorem works

The Squeeze Theorem: If f(x) ≤ g(x) ≤ h(x) for all x ≠ a in an open interval containing a, and if the limit of f(x) as x approaches a equals L and the limit of h(x) as x approaches a also equals L, then the limit of g(x) as x approaches a equals L.

  • The function g(x) is "squeezed" or "trapped" between f(x) and h(x).
  • When the outer bounds converge to the same limit, the middle function must also converge to that limit.
  • Visualize: if two functions approach the same height and a third is always sandwiched between them, the middle one must approach that same height.

🎯 Applying the squeeze theorem

  • Example from the excerpt: To find the limit of x·cos(x) as x approaches 0:
    • Use the fact that -1 ≤ cos(x) ≤ 1 for all x.
    • Multiply through by |x|: -|x| ≤ x·cos(x) ≤ |x|.
    • Since the limit of -|x| as x approaches 0 is 0 and the limit of |x| as x approaches 0 is 0, the squeeze theorem gives that the limit of x·cos(x) is 0.
  • The theorem is particularly powerful when direct evaluation is difficult or impossible.

📐 Important trigonometric limits

📐 Limit of sin(θ) as θ approaches 0

  • Using the unit circle: for 0 < θ < π/2, the inequality 0 < sin(θ) < θ holds (sin(θ) is the y-coordinate, θ is the arc length).
  • Applying the squeeze theorem with bounds 0 and θ (both approaching 0) shows that the limit of sin(θ) as θ approaches 0 from the right is 0.
  • A similar argument for negative θ shows the left-hand limit is also 0.
  • Therefore: limit of sin(θ) as θ approaches 0 equals 0.

📐 Limit of cos(θ) as θ approaches 0

  • Using the identity cos(θ) = square root of (1 - sin²(θ)) for -π/2 < θ < π/2.
  • Since sin(θ) approaches 0, the expression 1 - sin²(θ) approaches 1.
  • Therefore: limit of cos(θ) as θ approaches 0 equals 1.

📐 Limit of sin(θ)/θ as θ approaches 0

  • From the unit circle, for 0 < θ < π/2: sin(θ) < θ < tan(θ).
  • Dividing by sin(θ): 1 < θ/sin(θ) < 1/cos(θ).
  • Taking reciprocals (and reversing inequalities): 1 > sin(θ)/θ > cos(θ).
  • Since the limit of 1 is 1 and the limit of cos(θ) is 1, the squeeze theorem gives: limit of sin(θ)/θ as θ approaches 0 equals 1.
  • This is one of the most important limits in calculus.

📐 Limit of (1 - cos(θ))/θ as θ approaches 0

  • Multiply by the conjugate (1 + cos(θ))/(1 + cos(θ)) to rationalize.
  • The numerator becomes 1 - cos²(θ) = sin²(θ).
  • Rewrite as: sin²(θ)/(θ(1 + cos(θ))) = (sin(θ)/θ) · (sin(θ)/(1 + cos(θ))).
  • The first factor approaches 1, the second approaches 0/2 = 0.
  • Therefore: limit of (1 - cos(θ))/θ as θ approaches 0 equals 0.

🏛️ Historical application: Archimedes and circle area

🏛️ Approximating with polygons

  • The Greek mathematician Archimedes (circa 287–212 BCE) used inscribed regular polygons to approximate circle areas.
  • Method: as the number of polygon sides increases, the polygon area approaches the circle area.
  • Each polygon can be viewed as n triangles with vertex at the center.
  • By expressing triangle dimensions in terms of the vertex angle θ and radius r, then taking the limit as θ approaches 0, the circle area formula emerges.
  • This anticipates the concept of limits, though Archimedes did not formalize limit notation.
32

Continuity

5.3 The Fundamental Theorem of Calculus

🧭 Overview

🧠 One-sentence thesis

A function is continuous at a point if its graph has no break there, which requires the function to be defined at that point, the limit to exist at that point, and the limit to equal the function's value.

📌 Key points (3–5)

  • Three conditions for continuity: the function must be defined at the point, the limit must exist at the point, and the limit must equal the function value.
  • When continuity fails: if any one of the three conditions is not met, the function is discontinuous at that point.
  • Three types of discontinuities: removable (hole in the graph), jump (sections don't meet), and infinite (vertical asymptote).
  • Common confusion: a function can be defined at a point and have a limit there, but still be discontinuous if the limit does not equal the function value.
  • Polynomials and rational functions: these are continuous at every point in their domains.

📋 The three conditions for continuity

📋 Condition 1: Function must be defined

A function f(x) is continuous at a point a if and only if: (i) f(a) is defined.

  • If f(a) is undefined, the function cannot be continuous at a.
  • Example: The function f(x) = (x² - 4)/(x - 2) at x = 2 gives f(2) = 0/0, which is undefined, so the function is discontinuous at 2.
  • This is the first checkpoint: if the function is not defined, stop—it's discontinuous.

📋 Condition 2: Limit must exist

A function f(x) is continuous at a point a if and only if: (ii) the limit as x approaches a of f(x) exists.

  • The limit must be a real number (not ±∞ and not nonexistent).
  • For the limit to exist, the left-hand limit and right-hand limit must both exist and be equal.
  • Example: For a piecewise function at x = 3, if the left-hand limit is -5 but the right-hand limit is 4, then the limit does not exist, so the function is discontinuous.

📋 Condition 3: Limit must equal function value

A function f(x) is continuous at a point a if and only if: (iii) the limit as x approaches a of f(x) equals f(a).

  • Even if the function is defined and the limit exists, continuity fails if they are not equal.
  • Example: If f(0) = 1 and the limit as x approaches 0 of f(x) = 1, then since they are equal, this condition is satisfied.
  • Don't confuse: having both a defined value and an existing limit is not enough—they must match.

🔍 How to check continuity at a point

🔍 Step-by-step procedure

The excerpt provides a three-step problem-solving strategy:

  1. Check if f(a) is defined: If not, the function is not continuous at a; stop here.
  2. Compute the limit as x approaches a of f(x): This may require computing left-hand and right-hand limits separately. If the limit does not exist, the function is not continuous at a; stop here.
  3. Compare f(a) and the limit: If they are not equal, the function is not continuous at a. If they are equal, the function is continuous at a.

🔍 Intuitive understanding

  • The excerpt says "intuitively, a function is continuous at a particular point if there is no break in its graph at that point."
  • Many functions have graphs that can be traced with a pencil without lifting it from the page—these are continuous.
  • Other functions have points where a break occurs—these are discontinuous at those points.

🧩 Types of discontinuities

🧩 Removable discontinuity

f has a removable discontinuity at a if the limit as x approaches a of f(x) exists.

  • This is a discontinuity where there is a "hole" in the graph.
  • The limit exists (is a real number), but either the function is not defined at a or the function value does not equal the limit.
  • Example: A function with a hole at a point where the limit exists but the function is undefined.

🧩 Jump discontinuity

f has a jump discontinuity at a if both one-sided limits exist but are not equal.

  • This is a noninfinite discontinuity where the sections of the function do not meet up.
  • Both the left-hand limit and right-hand limit exist as real numbers, but they are different.
  • Example: A piecewise function where the left-hand limit is -5 and the right-hand limit is 4 at x = 3.

🧩 Infinite discontinuity

f has an infinite discontinuity at a if either one-sided limit equals ±∞.

  • This is a discontinuity located at a vertical asymptote.
  • At least one of the one-sided limits is infinite (positive or negative infinity).
  • The excerpt notes that not all discontinuities fit neatly into these three categories.

🎯 Special cases and theorems

🎯 Polynomials and rational functions

Theorem: Polynomials and rational functions are continuous at every point in their domains.

  • The excerpt proves this by showing that for polynomials p(x), the limit as x approaches a of p(x) equals p(a) for every a.
  • For rational functions p(x)/q(x), the limit as x approaches a equals p(a)/q(a) as long as q(a) ≠ 0.
  • Example: The rational function f(x) = (x + 1)/(x - 5) is continuous for every value of x except x = 5 (where the denominator is zero).
  • Example: The polynomial f(x) = 3x⁴ - 4x² is continuous for all values of x (polynomials have no domain restrictions).

🎯 Continuity on an interval

  • The excerpt mentions that some functions satisfy the continuity property over intervals contained in their domains.
  • They are continuous on these intervals and have a discontinuity at points where a break occurs.
  • The excerpt lists "define continuity on an interval" as a learning objective but does not provide the full definition in this section.
33

Continuity and the Intermediate Value Theorem

5.4 Integration Formulas and the Net Change Theorem

🧭 Overview

🧠 One-sentence thesis

A function is continuous at a point when its limit equals its value there, and the Intermediate Value Theorem guarantees that continuous functions on closed intervals take on every value between their endpoints.

📌 Key points (3–5)

  • Continuity at a point: a function is continuous at a if the limit as x approaches a equals the function value at a.
  • Three types of discontinuity: removable (hole in graph), jump (sections don't meet), and infinite (vertical asymptote).
  • Common confusion: a function can be discontinuous even if both one-sided limits exist—they must also be equal and match the function value.
  • Continuity over intervals: requires continuity at every interior point plus appropriate one-sided continuity at endpoints.
  • Intermediate Value Theorem (IVT): if a function is continuous on a closed interval and takes values f(a) and f(b), it must take every value in between.

📐 Continuity at a point and on intervals

📐 What makes a function continuous at a point

A function f(x) is continuous at a if: limit as x approaches a of f(x) = f(a).

Three conditions must all hold:

  • The function value f(a) is defined.
  • The limit as x approaches a exists.
  • The limit equals the function value.

Example: Rational functions like f(x) = (x + 1)/(x − 5) are continuous everywhere in their domain—here, continuous for all x except x = 5.

🔄 Continuity from the right and left

A function is continuous from the right at a if the limit as x approaches a from the right equals f(a).
A function is continuous from the left at a if the limit as x approaches a from the left equals f(a).

  • These one-sided continuities matter at interval endpoints.
  • Don't confuse: being continuous from one side does not imply continuity from the other side.

📏 Continuity over an interval

  • Open interval: continuous at every point inside.
  • Closed interval [a, b]: continuous at every interior point, continuous from the right at a, and continuous from the left at b.
  • The intuition: you can trace the graph with a pencil without lifting it.

Example: The function f(x) = square root of (4 − x²) is continuous over [−2, 2] because the one-sided limits at the endpoints exist and equal the function values there.

🔀 Types of discontinuities

🔀 Removable discontinuity

A function has a removable discontinuity at a if it is discontinuous there but the limit as x approaches a exists (and is a real number).

  • Visually: a "hole" in the graph.
  • The limit exists, but either the function is undefined at a or the function value does not match the limit.

Example: f(x) = (x² − 4)/(x − 2) at x = 2. The limit as x approaches 2 is 4, but f(2) is undefined—so there is a removable discontinuity.

🪜 Jump discontinuity

A function has a jump discontinuity at a if both one-sided limits exist (and are real numbers) but are not equal.

  • Visually: the graph "jumps" from one height to another.
  • The left-hand and right-hand limits differ.

Example: A piecewise function with f(x) = −x² + 4 for x ≤ 3 and f(x) = 4x − 8 for x > 3. The left-hand limit at 3 is −5, the right-hand limit is 4—so there is a jump discontinuity.

♾️ Infinite discontinuity

A function has an infinite discontinuity at a if either one-sided limit approaches positive or negative infinity.

  • Visually: a vertical asymptote.
  • At least one one-sided limit is infinite.

Example: f(x) = (x + 2)/(x + 1) at x = −1. The left-hand limit is negative infinity, the right-hand limit is positive infinity—so there is an infinite discontinuity.

🧩 Summary table

TypeOne-sided limitsLimit exists?Visual
RemovableBoth exist and equalYes (real number)Hole
JumpBoth exist but unequalNoJump between sections
InfiniteAt least one is ±∞NoVertical asymptote

Don't confuse: If the limit does not exist, check why—different reasons lead to different classifications.

🔗 Composite Function Theorem and trigonometric continuity

🔗 Composite Function Theorem

If f(x) is continuous at L and the limit as x approaches a of g(x) = L, then the limit as x approaches a of f(g(x)) = f(L).

  • This theorem lets you "move the limit inside" a continuous outer function.
  • It is essential for proving continuity of compositions.

Example: To evaluate the limit as x approaches π/2 of cos(x − π/2), note that the limit of the inner function (x − π/2) is 0, and cosine is continuous at 0. By the theorem, the limit is cos(0) = 1.

🌊 Continuity of trigonometric functions

The excerpt proves that cosine and sine are continuous over all real numbers by:

  • Rewriting cos(x) at any point a using angle-sum identities.
  • Applying the composite function theorem and the known continuity at 0.
  • Extending the result to all trigonometric functions via quotient laws.

Why it matters: Trigonometric functions are continuous over their entire domains, so limits can be evaluated by direct substitution wherever they are defined.

🎯 The Intermediate Value Theorem

🎯 Statement of the IVT

Intermediate Value Theorem: Let f be continuous over a closed, bounded interval [a, b]. If z is any real number between f(a) and f(b), then there exists a number c in [a, b] such that f(c) = z.

  • In plain language: a continuous function on a closed interval takes on every value between its endpoint values.
  • Intuition: if you draw the graph without lifting your pencil, you must cross every horizontal line between the two endpoint heights.

🔍 Using the IVT to show a zero exists

Example: Show that f(x) = x − cos(x) has at least one zero.

  • Check continuity: f is continuous everywhere (difference of continuous functions).
  • Evaluate at endpoints: f(0) = −1 < 0 and f(π/2) = π/2 > 0.
  • Since f(0) and f(π/2) have opposite signs and 0 is between them, the IVT guarantees some c in [0, π/2] where f(c) = 0.

⚠️ When the IVT does NOT apply

  • If the function is not continuous on the interval: Example: f(x) = 1/x on [−1, 1] has f(−1) < 0 and f(1) > 0, but there is no zero because f is discontinuous at 0.
  • If both endpoint values have the same sign: The IVT does not tell you whether there are zeros; it only guarantees values between the endpoint values. Example: f(x) = (x − 1)² on [0, 2] has f(0) > 0 and f(2) > 0, yet f(1) = 0—the IVT simply does not apply here.

Don't confuse: The IVT guarantees existence of intermediate values; it does not rule out other values or guarantee uniqueness.

34

Continuity and the Precise Definition of a Limit

5.5 Substitution

🧭 Overview

🧠 One-sentence thesis

The epsilon-delta definition formalizes the intuitive notion of a limit by requiring that for any desired closeness ε to the limit value, we can find a corresponding interval δ around the input that guarantees the function stays within ε of the limit.

📌 Key points (3–5)

  • What the epsilon-delta definition does: translates "f(x) approaches L as x approaches a" into a precise mathematical statement involving arbitrary closeness.
  • Continuity classification: discontinuities are categorized as removable (hole in the graph), jump (left and right limits exist but differ), or infinite (function approaches infinity).
  • Continuity over intervals: a function is continuous over a closed interval if it is continuous at every interior point and continuous from the appropriate side at each endpoint.
  • Common confusion: the Intermediate Value Theorem guarantees a value exists between f(a) and f(b) when f is continuous, but it does not rule out other values or zeros outside that range.
  • One-sided and infinite limits: the epsilon-delta framework extends naturally to limits from the left/right and to infinite limits by modifying the inequalities appropriately.

🔍 The epsilon-delta definition

🔍 Core structure

Limit definition: lim (x→a) f(x) = L if, for every ε > 0, there exists a δ > 0 such that if 0 < |x − a| < δ, then |f(x) − L| < ε.

Plain-language paraphrase:

  • For any desired closeness ε to the limit L (no matter how small),
  • we can find a distance δ around a (excluding a itself)
  • such that whenever x is within δ of a, the function value f(x) is within ε of L.

Why this matters:

  • It converts the intuitive "approaches" into a rigorous statement about distances.
  • The universal quantifier "for every ε" means the statement must hold for all positive ε, no matter how tiny.
  • The existential quantifier "there exists δ" means we must be able to find at least one δ that works for each ε.

📏 Quantifying closeness

Absolute value as distance:

  • |f(x) − L| < ε means "the distance between f(x) and L is less than ε."
  • 0 < |x − a| < δ means "x is not equal to a, and the distance between x and a is less than δ."

Equivalent inequalities:

  • |f(x) − L| < ε is the same as L − ε < f(x) < L + ε.
  • 0 < |x − a| < δ is the same as a − δ < x < a + δ and x ≠ a.

Don't confuse: The condition 0 < |x − a| ensures we never evaluate f at a itself; limits describe behavior near a, not at a.

🔨 Proof strategy

General approach (for proving lim (x→a) f(x) = L):

  1. Start: "Let ε > 0." (This signals we will prove the statement for arbitrary ε.)
  2. Find δ: Choose δ = [some expression in ε]. (This is the "scavenger hunt"—often found by working backward from |f(x) − L| < ε.)
  3. Assume: "Assume 0 < |x − a| < δ."
  4. Show: Manipulate the inequality to demonstrate |f(x) − L| < ε, using the assumption about δ.
  5. Conclude: "Therefore, lim (x→a) f(x) = L."

Two methods for finding δ:

  • Algebraic: manipulate |f(x) − L| < ε to isolate |x − a| < [something], then set δ equal to that "something."
  • Geometric: sketch the graph, mark L ± ε on the y-axis, find the corresponding x-values, and measure the distances from a.

Example: For lim (x→1) (2x + 1) = 3, we want |(2x + 1) − 3| < ε, which simplifies to |2x − 2| = 2|x − 1| < ε, so |x − 1| < ε/2. Thus δ = ε/2 works.

Don't confuse: δ must depend only on ε (and possibly a and L), never on x.

🧩 Types of discontinuities

🕳️ Removable discontinuity

A function f has a removable discontinuity at a if f is discontinuous at a but lim (x→a) f(x) exists (and is a real number).

Plain language: There is a "hole" in the graph—the limit exists, but either f(a) is undefined or f(a) ≠ lim (x→a) f(x).

Example: f(x) = (x² − 4)/(x − 2) at x = 2. The limit as x→2 is 4, but f(2) is undefined. We could "remove" the discontinuity by defining f(2) = 4.

🦘 Jump discontinuity

A function f has a jump discontinuity at a if lim (x→a⁻) f(x) and lim (x→a⁺) f(x) both exist (and are real), but they are not equal.

Plain language: The left-hand and right-hand limits exist but differ—the graph "jumps" from one value to another at a.

Example: A piecewise function where the left piece approaches one value and the right piece approaches a different value at the boundary.

Don't confuse: Both one-sided limits must be finite (not ±∞) for a jump discontinuity.

♾️ Infinite discontinuity

A function f has an infinite discontinuity at a if lim (x→a⁻) f(x) = ±∞ or lim (x→a⁺) f(x) = ±∞.

Plain language: The function increases or decreases without bound as x approaches a—there is a vertical asymptote at x = a.

Example: f(x) = 1/(x − 2) at x = 2. As x approaches 2 from the right, f(x) → +∞; from the left, f(x) → −∞.

📊 Comparison table

TypeLeft limitRight limitFunction valueGraph appearance
RemovableExists (= L)Exists (= L)Undefined or ≠ LHole
JumpExistsExistsEither valueSections don't meet
Infinite±∞±∞ (or exists)Any or undefinedVertical asymptote

🔗 Continuity over intervals

🔗 Continuity at a point

A function f(x) is continuous at a if and only if:

  1. f(a) is defined,
  2. lim (x→a) f(x) exists, and
  3. lim (x→a) f(x) = f(a).

Plain language: The function is defined at a, has a limit at a, and the limit equals the function value—no jumps, holes, or asymptotes.

⬅️➡️ One-sided continuity

  • Continuous from the right at a: lim (x→a⁺) f(x) = f(a).
  • Continuous from the left at a: lim (x→a⁻) f(x) = f(a).

Why it matters: These definitions let us talk about continuity at the endpoints of closed intervals.

📏 Continuity over an interval

Open interval (a, b): f is continuous at every point in the interval.

Closed interval [a, b]: f is continuous at every point in (a, b), continuous from the right at a, and continuous from the left at b.

Intuitive test: You can trace the graph from (a, f(a)) to (b, f(b)) without lifting your pencil.

Example: f(x) = (x − 1)/(x² + 2x) is a rational function, so it is continuous everywhere in its domain. The domain excludes x = −2 and x = 0, so f is continuous over (−∞, −2) ∪ (−2, 0) ∪ (0, +∞).

Don't confuse: Continuity over [a, b] requires the function to be defined and well-behaved at the endpoints, not just in the interior.

🎯 The Intermediate Value Theorem

🎯 Statement

Intermediate Value Theorem (IVT): Let f be continuous over a closed, bounded interval [a, b]. If z is any real number between f(a) and f(b), then there exists a number c in [a, b] such that f(c) = z.

Plain language: If f is continuous on [a, b] and you pick any value z between the function's values at the endpoints, the function must hit z somewhere in the interval.

Why it matters: The IVT guarantees the existence of solutions (e.g., roots, intersection points) without finding them explicitly.

🔍 Applying the IVT

To show f(x) = 0 has a solution in [a, b]:

  1. Verify f is continuous on [a, b].
  2. Check that f(a) and f(b) have opposite signs (one positive, one negative).
  3. Conclude by the IVT that there exists c in (a, b) with f(c) = 0.

Example: f(x) = x − cos(x). Since f(0) = −1 < 0 and f(π/2) = π/2 > 0, and f is continuous, the IVT guarantees at least one zero in [0, π/2].

⚠️ Common pitfalls

The IVT does not say:

  • That there is only one value c (there could be many).
  • That if f(a) and f(b) have the same sign, there is no zero (there could still be zeros between a and b).
  • Anything if f is not continuous on [a, b].

Example: f(x) = 1/x on [−1, 1]. Even though f(−1) = −1 < 0 and f(1) = 1 > 0, we cannot apply the IVT because f is not continuous at x = 0 (it's not even defined there).

Don't confuse: The IVT guarantees a value between f(a) and f(b); it does not rule out other values outside that range.

🔬 One-sided and infinite limits (epsilon-delta)

➡️ Limit from the right

lim (x→a⁺) f(x) = L if for every ε > 0, there exists δ > 0 such that if 0 < x − a < δ, then |f(x) − L| < ε.

Key difference: The inequality 0 < x − a < δ (instead of 0 < |x − a| < δ) ensures we only consider x > a.

Example: To prove lim (x→4⁺) √(x − 4) = 0, choose δ = ε². Then 0 < x − 4 < ε² implies 0 < √(x − 4) < ε.

⬅️ Limit from the left

lim (x→a⁻) f(x) = L if for every ε > 0, there exists δ > 0 such that if −δ < x − a < 0, then |f(x) − L| < ε.

Key difference: The inequality −δ < x − a < 0 ensures we only consider x < a.

♾️ Infinite limits

lim (x→a) f(x) = +∞ if for every M > 0, there exists δ > 0 such that if 0 < |x − a| < δ, then f(x) > M.

Plain language: For any large positive number M, we can find a δ-neighborhood of a where f(x) exceeds M—the function grows without bound near a.

Similarly for −∞: Replace f(x) > M with f(x) < −M.

Don't confuse: Infinite limits use M (an arbitrary large number) instead of ε (an arbitrary small number), but the logical structure is the same.

🧮 Proving limit laws

🧮 Example: Sum law

Statement: If lim (x→a) f(x) = L and lim (x→a) g(x) = M, then lim (x→a) [f(x) + g(x)] = L + M.

Proof sketch:

  1. Let ε > 0.
  2. Since lim (x→a) f(x) = L, choose δ₁ so that if 0 < |x − a| < δ₁, then |f(x) − L| < ε/2.
  3. Since lim (x→a) g(x) = M, choose δ₂ so that if 0 < |x − a| < δ₂, then |g(x) − M| < ε/2.
  4. Choose δ = min{δ₁, δ₂}.
  5. Assume 0 < |x − a| < δ. Then both inequalities hold, so: |[f(x) + g(x)] − (L + M)| = |[f(x) − L] + [g(x) − M]| ≤ |f(x) − L| + |g(x) − M| < ε/2 + ε/2 = ε. (Here we used the triangle inequality: |a + b| ≤ |a| + |b|.)
  6. Therefore, lim (x→a) [f(x) + g(x)] = L + M.

Why this matters: The epsilon-delta definition is the foundation for proving all the limit laws rigorously.

🔺 Triangle inequality

For any real numbers a and b, |a + b| ≤ |a| + |b|.

Role in proofs: The triangle inequality is used to split a sum of terms and bound each separately, as in the sum law proof above.

🚫 Showing a limit does not exist

🚫 Negation of the definition

To show lim (x→a) f(x) does not exist, we must show that for every candidate L, the epsilon-delta condition fails. Specifically:

There exists ε > 0 such that for all δ > 0, there is an x satisfying 0 < |x − a| < δ but |f(x) − L| ≥ ε.

Plain language: No matter what L we guess, we can find a fixed ε and then, no matter how small δ is, we can always find an x near a where f(x) is at least ε away from L.

Example: For f(x) = |x|/x at x = 0, suppose L is a candidate limit. Choose ε = 1/2. If L ≥ 0, pick x = −δ/2 (so f(x) = −1); then |f(x) − L| = |−1 − L| ≥ 1 > ε. If L < 0, pick x = δ/2 (so f(x) = 1); then |f(x) − L| = |1 − L| ≥ 1 > ε. Either way, the condition fails, so the limit does not exist.

Don't confuse: Showing a limit does not exist requires proving the definition fails for all possible L, not just one particular value.

35

Integrals Involving Exponential and Logarithmic Functions

5.6 Integrals Involving Exponential and Logarithmic Functions

🧭 Overview

🧠 One-sentence thesis

Exponential and logarithmic functions frequently appear in real-world applications involving growth and decay, and their integrals are typically evaluated using substitution techniques.

📌 Key points (3–5)

  • Where these functions appear: exponential and logarithmic functions arise in many real-world applications, especially those involving growth and decay.
  • Main integration technique: substitution is often used to evaluate integrals involving exponential functions or logarithms.
  • Why substitution works: these functions often result from chain-rule derivatives, making substitution a natural technique to reverse the process.
  • Common confusion: when using substitution for a definite integral, remember that the limits of integration must also be changed to match the new variable.

🌍 Real-world context

🌱 Growth and decay applications

  • Exponential and logarithmic functions are not just abstract mathematical objects—they model real phenomena.
  • The excerpt emphasizes that these functions "arise in many real-world applications, especially those involving growth and decay."
  • Example: population growth, radioactive decay, compound interest, and cooling processes all involve exponential or logarithmic relationships.
  • Understanding how to integrate these functions allows you to calculate accumulated quantities over time in these scenarios.

🔧 Integration technique

🔄 Why substitution is the key tool

Substitution is often used to evaluate integrals involving exponential functions or logarithms.

  • The excerpt points out that substitution is the primary technique for these integrals.
  • This connects to earlier material: substitution simplifies the integration of functions that result from a chain-rule derivative.
  • Exponential and logarithmic functions frequently appear in composite forms (e.g., nested inside other functions), making them natural candidates for substitution.

📐 How substitution works for these functions

  • The term "substitution" refers to changing variables—replacing the variable and its differential with new expressions (typically u and du) that simplify the integrand.
  • For exponential functions: if the integrand contains an exponential of a composite function, substitution can isolate the exponential part.
  • For logarithmic functions: if the integrand has a logarithm or a form that suggests a logarithmic antiderivative, substitution can reveal the structure.

⚠️ Special consideration for definite integrals

  • Don't forget: when using substitution for a definite integral, the limits of integration must also be changed.
  • The original limits correspond to the original variable; after substitution, you must convert them to match the new variable.
  • Example: if the original integral runs from x = a to x = b, and you substitute u = some function of x, you must compute u(a) and u(b) as the new limits.
  • Common mistake: keeping the original limits after substitution leads to incorrect results.

🔗 Connection to broader integration framework

🧩 Relationship to other integration methods

TechniqueWhen it appliesNote from excerpt
SubstitutionChain-rule derivatives, composite functionsOften used for exponential and logarithmic integrals
Geometric formulasSimple curves with known shapesMentioned for area calculations in earlier sections
Direct antiderivativeSimple polynomial or basic functionsNot the focus for exponential/logarithmic cases

🎯 Why these functions need special attention

  • The excerpt groups exponential and logarithmic functions into their own section (5.6), suggesting they form a distinct category.
  • Unlike polynomials or simple trigonometric functions, exponential and logarithmic integrals rarely yield to direct antiderivative formulas without substitution.
  • The real-world importance (growth and decay) makes mastering these integrals particularly valuable for applications.
36

Integrals Resulting in Inverse Trigonometric Functions

5.7 Integrals Resulting in Inverse Trigonometric Functions

🧭 Overview

🧠 One-sentence thesis

Integration formulas involving inverse trigonometric functions follow directly from the derivative formulas of inverse trigonometric functions, and solving these integrals requires matching the integrand to the correct formula format, often through substitution.

📌 Key points (3–5)

  • Where the formulas come from: derivative formulas for inverse trigonometric functions lead directly to integration formulas.
  • How to solve these integrals: match the integrand to the correct formula format listed in the integration rule, then make necessary alterations.
  • Role of substitution: substitution is often required to transform the integrand into the correct form that matches the formula.
  • Common confusion: the integrand must be in the exact format specified by the formula—don't assume a close match will work without adjustment.

🔗 Connection to derivatives

🔗 Origin of the integration formulas

Formulas for derivatives of inverse trigonometric functions lead directly to integration formulas involving inverse trigonometric functions.

  • The excerpt emphasizes a direct relationship: if you know how to differentiate inverse trigonometric functions, you automatically know certain integration patterns.
  • These derivative formulas were developed in an earlier section (Derivatives of Exponential and Logarithmic Functions).
  • Why this matters: integration is the reverse of differentiation, so derivative rules give us integration rules "for free."

🧮 What this means in practice

  • When you see an integrand that looks like the derivative of an inverse trigonometric function, you can integrate it by recognizing the pattern.
  • Example: if the derivative of arcsin(x) produces a certain form, then an integral in that form will result in arcsin(x) plus a constant.

📋 Using the integration formulas

📋 The rule on integration formulas

  • The excerpt refers to a rule that lists specific integration formulas resulting in inverse trigonometric functions.
  • This rule provides the standard formats you need to match.

🎯 How to match the format

  • Step 1: Look at your integrand and compare it to the formulas in the rule.
  • Step 2: Identify which inverse trigonometric function formula fits.
  • Step 3: Make alterations as necessary to match the exact form.
  • The excerpt stresses "match up the correct format"—the integrand must align with the formula structure.

⚙️ Making necessary alterations

  • Often the integrand is not in the exact form required by the formula.
  • You may need to factor out constants, complete the square, or rearrange terms.
  • Example: if the formula requires "1 divided by (1 plus x squared)" but you have "3 divided by (1 plus x squared)," factor out the 3 first.

🔄 Role of substitution

🔄 Why substitution is needed

Substitution is often required to put the integrand in the correct form.

  • Even after identifying the correct formula, the integrand may not match exactly.
  • Substitution changes variables to transform the integrand into the required format.

🛠️ How substitution works here

  • Choose a substitution (typically u equals some expression involving x) that simplifies the integrand.
  • Replace the original variable and differential with the new variable and its differential.
  • After substitution, the integrand should match one of the inverse trigonometric integration formulas.
  • Example: if the integrand has "2x" in the numerator and "1 plus x squared" in the denominator, let u equal x squared, then du equals 2x dx.

⚠️ Don't confuse

  • Substitution here is not just for simplification—it is specifically to match the formula format.
  • Without the correct form, you cannot apply the inverse trigonometric integration formula.
  • The excerpt emphasizes "often required," meaning this step is not optional in many problems.
37

Evaluating Limits Using Tables and Graphs

6.1 Areas between Curves

🧭 Overview

🧠 One-sentence thesis

Limits can be estimated by examining tables of functional values or graphs, though these methods rely on observation and must eventually be supplemented by more rigorous algebraic techniques.

📌 Key points (3–5)

  • Table method: Approach the target x-value from both sides with progressively closer values and observe whether the function values converge to a single number.
  • Graph method: Use graphing tools to visually trace the function near the target x-value and watch whether y-values approach a single limit.
  • When limits fail to exist: If functional values do not approach a single real number (e.g., oscillating behavior), the limit does not exist (DNE).
  • Common confusion: A function can be defined at a point but have a limit different from the function's value at that point, or the limit may exist even when the function is undefined there.
  • One-sided limits: Sometimes the limit from the left differs from the limit from the right, requiring separate notation for each direction.

📊 The table-of-values strategy

📊 How to build the table

The excerpt describes a systematic approach:

  • Choose x-values approaching the target value a from both sides: a − 0.1, a − 0.01, a − 0.001, a − 0.0001, and so on (left side), plus a + 0.1, a + 0.01, a + 0.001, a + 0.0001, and so on (right side).
  • Compute the corresponding function values f(x) for each x.
  • Arrange them in two columns: one for values less than a, one for values greater than a.

🔍 Reading the table

  • Look down each column to see if the function values appear to approach a single number L.
  • If both columns approach the same L, conclude that the limit as x approaches a is L.
  • The excerpt notes that the chosen x-values work "nearly every time," but on rare occasions you may need to modify your choices.

🧪 Example: limit of (sin x) / x as x approaches 0

The excerpt provides a worked example:

  • The table shows values like 0.998334166468, 0.999983333417, 0.999999833333, 0.999999998333 from both sides.
  • All values appear to approach 1.
  • Conclusion: the limit is 1.

🧪 Example: limit of (√x − 2) / (x − 4) as x approaches 4

Another worked example:

  • Values less than 4 decrease toward 0.25; values greater than 4 increase toward 0.25.
  • Both columns converge to 0.25.
  • Conclusion: the limit is 0.25.

📈 The graphing strategy

📈 How to use a graph

The excerpt describes an alternative or confirmatory method:

  • Plot the function using graphing software or a calculator.
  • Make sure the window includes x-values near the target a and the corresponding y-values.
  • Use the trace feature to move along the graph and watch the y-value readout as x approaches a from both directions.
  • If the y-values approach L from both sides, conclude that the limit is L.
  • You may need to zoom in and repeat the process several times.

🔍 Graphs can reveal limits even without the formula

The excerpt emphasizes:

"We can determine this limit without even knowing the algebraic expression of the function."

Example from the excerpt: a graph shows that as x approaches −1, the function values approach 3, even though the function's actual value at −1 is 4. The limit is 3, not 4.

⚠️ Limit vs. function value

Don't confuse: The limit of a function at a point and the value of the function at that point can be different.

  • The limit describes where the function is heading as x approaches the point.
  • The function value is what the function actually equals at that point (if defined).
  • Example: A function might have a "hole" or a single outlier point that doesn't affect the limit.

🧮 Two foundational limits

The excerpt introduces two special limits that are "foundational to the techniques to come":

LimitStatementExplanation
Limit of xlimit as x → a of x = aAs x approaches a, the function f(x) = x also approaches a.
Limit of a constantlimit as x → a of c = cFor any constant c, the function value remains c regardless of x, so the limit is c.

These are straightforward but important building blocks for more complex limit evaluation.

❌ When limits do not exist

❌ Oscillating behavior

The excerpt provides an example where the limit fails to exist:

  • Function: sin(1/x) as x approaches 0.
  • The table shows y-values that do not settle toward any single number: they jump around (e.g., 0.544, 0.506, −0.827, 0.306, −0.036, 0.350).
  • A systematic check using the sequence 2/π, 2/(3π), 2/(5π), 2/(7π), ... yields y-values 1, −1, 1, −1, 1, −1, ...
  • Conclusion: the limit does not exist (DNE).
  • The graph shows the function oscillating "ever more wildly between −1 and 1" as x approaches 0.

❌ What "does not exist" means

"Mathematicians frequently abbreviate 'does not exist' as DNE."

If functional values do not approach a single real number, the limit does not exist.

↔️ One-sided limits

↔️ Why one-sided limits matter

Sometimes saying "the limit does not exist" is not enough information. The excerpt explains:

  • A function may approach different values from the left and from the right.
  • Example: the function |x − 2| / (x − 2) approaches −1 from the left of 2 and +1 from the right of 2.
  • The two-sided limit does not exist, but we can describe each one-sided limit separately.

↔️ Notation and definitions

Limit from the left: Let f(x) be defined on an open interval ending at a, and let L be a real number. If the values of f(x) approach L as x (where x < a) approaches a, then L is the limit of f(x) as x approaches a from the left.

Symbolically: limit as x → a⁻ of f(x) = L.

Limit from the right: Let f(x) be defined on an open interval starting at a, and let L be a real number. If the values of f(x) approach L as x (where x > a) approaches a, then L is the limit of f(x) as x approaches a from the right.

Symbolically: limit as x → a⁺ of f(x) = L.

↔️ Example: different one-sided limits

For the function g(x) = |x − 2| / (x − 2):

  • For all x < 2, g(x) = −1, so limit as x → 2⁻ of g(x) = −1.
  • For all x > 2, g(x) = 1, so limit as x → 2⁺ of g(x) = 1.
  • The two-sided limit does not exist because the left and right limits differ.

🛠️ Limitations of these methods

🛠️ Guesswork and approximation

The excerpt acknowledges:

"These techniques rely too much on guesswork."

  • Tables and graphs provide useful insight but are not rigorous.
  • You are estimating based on patterns in numbers or visual inspection.
  • The excerpt states that "we eventually need to develop alternative methods of evaluating limits" that are "more algebraic in nature."

🛠️ When to use these methods

  • As a first step to get intuition about a limit.
  • To confirm results obtained by other methods.
  • When you need a quick numerical estimate.
  • Not sufficient for formal proofs or when exact values are required.
38

One-Sided and Infinite Limits

6.2 Determining Volumes by Slicing

🧭 Overview

🧠 One-sentence thesis

One-sided limits and infinite limits allow us to describe function behavior at points where standard two-sided limits do not exist, including cases where functions approach different values from left and right or grow without bound.

📌 Key points (3–5)

  • One-sided limits: describe what value a function approaches as x approaches a point from only the left or only the right.
  • Two-sided limit existence: a two-sided limit exists if and only if both one-sided limits exist and equal the same value.
  • Infinite limits: describe behavior when function values increase or decrease without bound as x approaches a point.
  • Common confusion: writing "limit equals positive infinity" does not mean the limit exists; it describes unbounded behavior, not convergence to a real number.
  • Vertical asymptotes: occur at points where the function has an infinite limit from at least one direction.

🔀 One-sided limits

🔀 What one-sided limits measure

Limit from the left: If the values of function f(x) approach the real number L as the values of x (where x < a) approach the number a, then L is the limit of f(x) as x approaches a from the left. Symbolically: limit as x approaches a from the left of f(x) = L.

Limit from the right: If the values of function f(x) approach the real number L as the values of x (where x > a) approach the number a, then L is the limit of f(x) as x approaches a from the right. Symbolically: limit as x approaches a from the right of f(x) = L.

  • One-sided limits look at function behavior from only one direction.
  • "From the left" means x values less than a; "from the right" means x values greater than a.
  • The notation uses a minus sign (a−) for left limits and a plus sign (a+) for right limits.

📊 When one-sided limits differ

Example from the excerpt: For the function g(x) around x = 2:

  • For all values to the left of 2, g(x) = −1
  • As x approaches 2 from the left, g(x) approaches −1
  • As x approaches 2 from the right, g(x) approaches 1
  • Since the left and right limits are different (−1 versus 1), the two-sided limit does not exist

Don't confuse: A function can have well-defined one-sided limits even when the two-sided limit does not exist.

🧮 Using tables to evaluate one-sided limits

The excerpt shows a piecewise function: f(x) equals x + 1 if x < 2, and x² − 4 if x ≥ 2.

Using tables of values approaching 2:

  • From the left (x = 1.9, 1.99, 1.999, ...): f(x) approaches 3
  • From the right (x = 2.1, 2.01, 2.001, ...): f(x) approaches 0
  • Conclusion: left limit = 3, right limit = 0, so the two-sided limit does not exist

🔗 Relationship between one-sided and two-sided limits

🔗 The fundamental connection

Theorem (Relating One-Sided and Two-Sided Limits): Let f(x) be a function defined at all values in an open interval containing a, with the possible exception of a itself, and let L be a real number. Then, the limit as x approaches a of f(x) equals L if and only if the limit as x approaches a from the left of f(x) equals L AND the limit as x approaches a from the right of f(x) equals L.

  • A two-sided limit exists only when both one-sided limits exist and are equal.
  • If the one-sided limits differ, the two-sided limit does not exist.
  • This theorem provides a way to verify or disprove the existence of a limit.

♾️ Infinite limits

♾️ What infinite limits describe

Infinite limits: describe the behavior of functions when values increase or decrease without bound as x approaches a point.

Three types of infinite limits:

DirectionBehaviorNotation
From the leftf(x) increases without boundlimit as x → a− of f(x) = +∞
From the leftf(x) decreases without boundlimit as x → a− of f(x) = −∞
From the rightf(x) increases without boundlimit as x → a+ of f(x) = +∞
From the rightf(x) decreases without boundlimit as x → a+ of f(x) = −∞
Two-sidedf(x) increases without boundlimit as x → a of f(x) = +∞
Two-sidedf(x) decreases without boundlimit as x → a of f(x) = −∞

⚠️ Important distinction about existence

Critical point from the excerpt: When we write statements like "limit as x approaches a of f(x) = +∞", we are describing the behavior of the function, not asserting that a limit exists.

  • For a limit to exist at a, the function must approach a real number L.
  • Infinite limits describe unbounded behavior, not convergence.
  • However, we write "limit = +∞" rather than "limit DNE" to convey more information about the behavior.

Don't confuse: "The limit equals positive infinity" versus "the limit exists and equals a real number"—only the latter is a true limit in the formal sense.

🔢 Example: h(x) = 1/(x − 2)²

From the excerpt:

  • As x approaches 2, the values of h(x) become larger and larger.
  • The values become infinite.
  • We say: the limit of h(x) as x approaches 2 is positive infinity.
  • Symbolically: limit as x → 2 of h(x) = +∞.

📐 Infinite limits for power functions

Theorem (Infinite Limits from Positive Integers): For functions of the form f(x) = 1/(x − a)ⁿ where n is a positive integer:

  • If n is a positive even integer, then the limit as x approaches a of 1/(x − a)ⁿ = +∞.
  • If n is a positive odd integer, then the limit as x approaches a from the right of 1/(x − a)ⁿ = +∞ and the limit as x approaches a from the left of 1/(x − a)ⁿ = −∞.

Why the difference:

  • Even powers are always positive, so the function goes to +∞ from both sides.
  • Odd powers preserve sign: positive on the right (x > a), negative on the left (x < a).

Example from the excerpt: f(x) = 1/(x + 3)⁴

  • Since 4 is even, the limit from both left and right as x → −3 is +∞.
  • The two-sided limit as x → −3 is also +∞.

📏 Vertical asymptotes

📏 Definition and conditions

Vertical asymptote: The line x = a is a vertical asymptote of f(x) if any of the following conditions hold:

  • limit as x → a− of f(x) = +∞ or −∞, OR
  • limit as x → a+ of f(x) = +∞ or −∞, OR
  • limit as x → a of f(x) = +∞ or −∞.
  • A vertical asymptote occurs at a point where the function grows without bound.
  • Only one of the conditions needs to hold for a vertical asymptote to exist.

📍 Geometric interpretation

From the excerpt:

  • Points on the graph with x-coordinates very near to a are very close to the vertical line x = a.
  • As x approaches a, the points on the graph get closer to the line x = a.
  • The graph "hugs" the vertical line but never crosses it at that point.

Example: f(x) = 1/(x + 3)⁴ has a vertical asymptote at x = −3 because the limit as x → −3 equals +∞.

39

Infinite Limits and Vertical Asymptotes

6.3 Volumes of Revolution: Cylindrical Shells

🧭 Overview

🧠 One-sentence thesis

When a function's output grows without bound (approaches positive or negative infinity) as the input approaches a particular value, that function has a vertical asymptote at that point.

📌 Key points (3–5)

  • Infinite limits from positive integers: For functions of the form 1/(x - a)^n, the limit behavior depends on whether n is even or odd.
  • Vertical asymptote definition: A line x = a is a vertical asymptote when the function approaches positive or negative infinity as x approaches a from either side.
  • Even vs odd exponents: Even exponents produce the same infinite behavior from both sides; odd exponents produce opposite behaviors from left and right.
  • Common confusion: The limit existing vs the function being defined—a limit can equal infinity (indicating a vertical asymptote) even though the function value at that point is undefined.
  • Graph behavior: Points on the graph get arbitrarily close to the vertical line x = a as x approaches a.

📐 Behavior of 1/(x - a)^n

📐 When n is even

  • The limit as x approaches a from either direction equals positive infinity.
  • Both one-sided limits (from left and right) approach positive infinity.
  • Example: For f(x) = 1/(x + 3)^4, as x approaches -3 from either side, the function grows toward positive infinity.

📐 When n is odd

  • The limit as x approaches a from the right (positive side) equals positive infinity.
  • The limit as x approaches a from the left (negative side) equals negative infinity.
  • The two-sided limit does not exist because the left and right limits differ.
  • Don't confuse: Odd exponents create asymmetric behavior—one side goes to positive infinity, the other to negative infinity.

🔍 Vertical Asymptotes

🔍 What defines a vertical asymptote

A line x = a is a vertical asymptote of f(x) if any of these conditions hold: the limit as x approaches a from the left equals positive or negative infinity, OR the limit as x approaches a from the right equals positive or negative infinity, OR the two-sided limit as x approaches a equals positive or negative infinity.

  • The key is that at least one directional approach must yield an infinite result.
  • The function value f(a) itself is typically undefined at a vertical asymptote.

🔍 Geometric interpretation

  • As x gets closer to a, points on the graph get closer to the vertical line x = a.
  • The graph "hugs" the vertical line without ever crossing it.
  • Example: In f(x) = 1/(x + 3)^4, the line x = -3 is a vertical asymptote because the function approaches positive infinity from both sides.

🧪 Analyzing function behavior at specific points

🧪 What to check at each point

When analyzing a function at a particular x-value, examine four separate items:

  • The left-hand limit (approaching from values less than the target)
  • The right-hand limit (approaching from values greater than the target)
  • The two-sided limit (exists only if left and right limits are equal)
  • The actual function value at that point (may be defined or undefined)

🧪 Possible scenarios

ScenarioLeft limitRight limitTwo-sided limitFunction value
Continuous pointFinite value LSame LExists = LDefined = L
Removable discontinuityFinite value LSame LExists = LUndefined or ≠ L
Jump discontinuityFinite value L₁Different L₂Does not existMay vary
Vertical asymptote±∞±∞±∞Undefined

🧪 Reading from graphs

  • Estimate limits by observing where the function values approach as x gets close to the target.
  • A hole in the graph indicates the function is undefined at that point, even if the limit exists.
  • A vertical break or unbounded growth indicates a vertical asymptote.

🌌 Real-world application: Einstein's mass equation

🌌 The physical limit

  • Einstein's equation for moving mass: m = m₀ / square root of (1 - v²/c²), where m₀ is rest mass, v is speed, c is speed of light.
  • As the ratio v/c approaches 1 (object speed approaches light speed), the mass ratio m/m₀ increases without bound.
  • This creates a vertical asymptote at v/c = 1.

🌌 Numerical evidence

The excerpt provides a table showing:

  • At v/c = 0.99, mass increases by factor of about 7
  • At v/c = 0.999, mass increases by factor of about 22
  • At v/c = 0.9999, mass increases by factor of about 71
  • Example: A 100 kg object traveling at 0.9999c would have mass 7071 kg.

🌌 Physical conclusion

  • Since no object can have infinite mass, no object can travel at or faster than the speed of light.
  • The mathematical vertical asymptote corresponds to a physical impossibility.
40

The Limit Laws

6.4 Arc Length of a Curve and Surface Area

🧭 Overview

🧠 One-sentence thesis

The limit laws provide a systematic set of rules that allow us to calculate limits algebraically by breaking complex expressions into simpler parts, rather than relying on graphs or tables of values.

📌 Key points (3–5)

  • What the limit laws do: They establish rules for calculating limits of sums, differences, products, quotients, powers, and roots of functions.
  • When direct substitution works: For polynomials at any point and for rational functions at points where the denominator is not zero, the limit equals the function value at that point.
  • Common confusion—indeterminate forms: When both numerator and denominator approach zero (the "0/0" form), direct substitution fails and special techniques like factoring are needed.
  • How to apply the laws: Each law can only be applied when the individual limits involved already exist; the laws must be applied step-by-step.
  • Why it matters: These laws form the foundation for evaluating limits without needing to construct tables or estimate from graphs.

📐 Basic limit results

📐 Two fundamental limits

The excerpt restates two basic results that serve as the foundation:

Basic Limit Results: For any real number a and any constant c:

  • The limit of x as x approaches a is a
  • The limit of a constant is that constant
  • These are the simplest limits: a variable approaching a value becomes that value, and a constant stays constant.
  • Example: The limit of x as x approaches 2 is 2; the limit of 5 as x approaches 2 is 5.
  • These results are used repeatedly when applying the other limit laws.

🧮 The individual limit laws

➕ Sum and difference laws

  • Sum law: The limit of a sum equals the sum of the limits.
  • Difference law: The limit of a difference equals the difference of the limits.
  • Both require that the individual limits exist before the law can be applied.

✖️ Product and constant multiple laws

  • Constant multiple law: The limit of a constant times a function equals the constant times the limit of the function.
  • Product law: The limit of a product equals the product of the limits.
  • Example from the excerpt: To find the limit of (4x + 2) as x approaches -3, first apply the sum law to split it into two limits, then apply the constant multiple law to pull out the 4, giving 4·(-3) + 2 = -10.

➗ Quotient law

  • Quotient law: The limit of a quotient equals the quotient of the limits, provided the limit of the denominator is not zero.
  • The requirement that M ≠ 0 (the denominator limit must be nonzero) is crucial.
  • Example from the excerpt: When evaluating the limit of (2x² - 3x + 1)/(x³ + 4) as x approaches 2, the excerpt explicitly checks that (2)³ + 4 ≠ 0 before applying the quotient law.

🔢 Power and root laws

  • Power law: The limit of a function raised to a positive integer power n equals the limit of the function raised to that power.
  • Root law: The limit of the n-th root of a function equals the n-th root of the limit, with restrictions:
    • For odd n, it works for all limit values L.
    • For even n, it only works when L ≥ 0.

🎯 Polynomials and rational functions

🎯 Direct substitution theorem

The excerpt presents a key theorem:

Limits of Polynomial and Rational Functions:

  • For any polynomial p(x) and any real number a: the limit of p(x) as x approaches a equals p(a).
  • For rational functions p(x)/q(x) where q(a) ≠ 0: the limit as x approaches a equals p(a)/q(a).
  • This means for these functions, you can simply substitute the value directly.
  • Example from the excerpt: The limit of (2x² - 3x + 1)/(5x + 4) as x approaches 3 is found by substituting 3 directly, giving 10/19.

🔍 Why the theorem works

The excerpt explains the reasoning:

  • Start with a polynomial written as c_n·x^n + c_(n-1)·x^(n-1) + ... + c_1·x + c_0.
  • Apply the sum, constant multiple, and power laws repeatedly.
  • Each term becomes c_k·a^k, so the limit equals the polynomial evaluated at a.
  • For rational functions, the quotient law then gives the result, as long as the denominator is not zero at a.

⚠️ Indeterminate forms and special techniques

⚠️ The 0/0 indeterminate form

The excerpt introduces a common problem:

  • Sometimes a limit has the form f(x)/g(x) where both the numerator and denominator approach zero.
  • This is called the indeterminate form 0/0.
  • Direct substitution fails because you cannot divide zero by zero.
  • Don't confuse: This is different from cases where only the numerator or only the denominator is zero—those limits either equal zero or do not exist.

🔧 Factoring technique

The excerpt gives an example of how to handle 0/0 forms:

  • Consider the limit of (x² - 1)/(x - 1) as x approaches 1.
  • Direct substitution gives 0/0, which is indeterminate.
  • Factor the numerator: (x² - 1) = (x - 1)(x + 1).
  • Cancel the common factor (x - 1) to get x + 1.
  • The key observation: If f(x) = g(x) for all xa over some interval containing a, then their limits as x approaches a are equal.
  • After canceling, the limit becomes the limit of (x + 1) as x approaches 1, which equals 2.

📊 Graphical interpretation

FunctionValue at x = 1Limit as x → 1Why
f(x) = (x² - 1)/(x - 1)Undefined2Hole in graph at x = 1
g(x) = x + 122Continuous at x = 1
  • The excerpt notes that the graphs of f(x) and g(x) are identical for all x ≠ 1.
  • Their limits at 1 are equal even though f(1) is undefined.

🛠️ Problem-solving strategy

The excerpt begins to outline a general strategy for limits with the 0/0 form:

  1. First, recognize that direct substitution gives 0/0.
  2. (The excerpt cuts off here, but implies further steps involve algebraic manipulation like factoring or using conjugates.)
41

Additional Limit Evaluation Techniques

6.5 Physical Applications

🧭 Overview

🧠 One-sentence thesis

When direct substitution fails because a limit has the indeterminate form 0/0, algebraic manipulation techniques—factoring and canceling, multiplying by a conjugate, or simplifying complex fractions—allow us to find an equivalent function whose limit can be evaluated.

📌 Key points (3–5)

  • When direct substitution fails: If substituting x = a into f(x)/g(x) gives 0/0, the limit may still exist and can be found through algebraic manipulation.
  • Core strategy: Find a function equal to the original for all x ≠ a, then evaluate the limit of that simpler function.
  • Three main techniques: factor and cancel common terms; multiply by a conjugate to eliminate square roots; simplify complex fractions.
  • Common confusion: A function can be undefined at x = a yet still have a limit there—the limit depends on behavior near a, not at a.
  • One-sided limits: The same limit laws apply to one-sided limits, but the function must be defined on the appropriate side of a.

🔧 The fundamental observation

🔧 When functions agree except at one point

If for all x ≠ a, f(x) = g(x) over some open interval containing a, then the limit of f as x approaches a equals the limit of g as x approaches a.

  • This principle is the foundation for all the techniques in this section.
  • Even though f(a) may be undefined, if f and g are identical everywhere else near a, their limits at a are the same.
  • Example: The function (x² - 1)/(x - 1) is undefined at x = 1, but equals x + 1 for all x ≠ 1, so its limit at 1 is 2.

🚫 The indeterminate form 0/0

  • When substituting x = a into f(x)/g(x) produces 0/0, we say the limit has indeterminate form.
  • "Indeterminate" means we cannot immediately conclude what the limit is—it requires further work.
  • Don't confuse: 0/0 is not the same as the limit being zero or undefined; it signals that algebraic simplification is needed.

🛠️ Three core techniques

✂️ Factor and cancel

  • When to use: Both numerator and denominator are polynomials.
  • How it works: Factor both expressions completely, then cancel any common factors that equal zero at x = a.
  • Why it works: The common factor (x - a) is what causes the 0/0 form; removing it reveals the true limit behavior.

Example: To evaluate the limit as x → 3 of (x² - 3x)/(2x² - 5x - 3):

  • Factor: x(x - 3) in numerator, (x - 3)(2x + 1) in denominator
  • Cancel (x - 3) from both
  • Result: x/(2x + 1), which equals 3/7 when x = 3

🔗 Multiply by a conjugate

  • When to use: The numerator or denominator contains a difference involving a square root.
  • How it works: Multiply both numerator and denominator by the conjugate (change the sign between terms).
  • Why it works: This eliminates the square root through the difference-of-squares pattern.

Example: To evaluate the limit as x → -1 of (√(x + 2) - 1)/(x + 1):

  • Multiply by (√(x + 2) + 1)/(√(x + 2) + 1)
  • Numerator becomes (x + 2) - 1 = x + 1
  • Cancel (x + 1) from numerator and denominator
  • Result: 1/(√(x + 2) + 1), which equals 1/2 when x = -1

🧮 Simplify complex fractions

  • When to use: f(x)/g(x) is itself a fraction containing fractions.
  • How it works: Find a common denominator for the complex fraction, combine terms, then factor and cancel.
  • Strategy tip: Don't multiply out denominators prematurely—keep them factored to spot cancellations.

Example: To evaluate the limit as x → 1 of (1/(x + 1) - 1/2)/(x - 1):

  • Multiply by 2(x + 1)/2(x + 1) to clear small fractions
  • Numerator becomes 2 - (x + 1) = -x + 1 = -(x - 1)
  • Cancel (x - 1) from numerator and denominator
  • Result: -1/(2(x + 1)), which equals -1/4 when x = 1

📐 One-sided limits

➡️ Applying limit laws to one-sided limits

  • For a limit as x → a from the left (x → a⁻), the function must be defined on an open interval of the form (b, a).
  • For a limit as x → a from the right (x → a⁺), the function must be defined on an open interval of the form (a, c).
  • The same algebraic techniques apply, but only consider the relevant side.

🔀 Piecewise functions and two-sided limits

  • For piecewise-defined functions, evaluate left and right limits separately using the appropriate piece of the definition.
  • A two-sided limit exists only if both one-sided limits exist and are equal.
  • Example: If the limit from the left is 5 and the limit from the right is 1, the two-sided limit does not exist.

⚠️ Limits of the form K/0

⚠️ When the numerator approaches a nonzero constant

  • If the limit has the form K/0 where K ≠ 0, the function's magnitude becomes infinite.
  • The limit may be +∞, -∞, or may not exist (if behavior differs from left and right).
  • Strategy: Factor the denominator to isolate the part approaching zero, then analyze the sign and behavior.

Example: For the limit as x → 2⁻ of (x - 3)/(x² - 2x):

  • Factor denominator: x(x - 2)
  • Separate: (x - 3)/x · 1/(x - 2)
  • As x → 2⁻: (x - 3)/x → -1/2 and 1/(x - 2) → -∞
  • Product: (-1/2) · (-∞) = +∞

Don't confuse: K/0 (where K ≠ 0) means infinite behavior, while 0/0 means indeterminate form requiring algebraic work.

42

Evaluating Limits Using Algebraic and Geometric Techniques

6.6 Moments and Centers of Mass

🧭 Overview

🧠 One-sentence thesis

The squeeze theorem and limit laws enable us to evaluate limits of algebraic and trigonometric functions by manipulating expressions, factoring, and bounding unknown functions between known ones.

📌 Key points (3–5)

  • Limits of the form K/0: When the numerator approaches a nonzero constant and the denominator approaches zero, the limit becomes infinite (positive or negative depending on direction).
  • The squeeze theorem: If a function g(x) is trapped between f(x) and h(x), and both f and h approach the same limit L at point a, then g(x) must also approach L.
  • Key trigonometric limits: The limit of sin(θ)/θ as θ approaches 0 equals 1, and the limit of (1 - cos(θ))/θ as θ approaches 0 equals 0—both are foundational for calculus.
  • Common confusion: Don't confuse "limit equals zero" with "function equals zero"—the squeeze theorem works even when the middle function oscillates wildly, as long as it stays bounded.
  • Factoring technique: For indeterminate forms 0/0, factor and cancel common terms to reveal the true limit behavior.

🔢 Handling K/0 forms

🔢 When limits become infinite

A limit has the form K/0 (where K ≠ 0) when the numerator approaches a nonzero constant and the denominator approaches zero.

  • The magnitude of the fraction grows without bound as the denominator shrinks toward zero.
  • The sign (positive or negative infinity) depends on the sign of K and whether the denominator approaches zero from above or below.

📐 Example walkthrough

The excerpt shows evaluating the limit as x approaches 2 from the left of (x - 3)/(x² - 2x):

  • Step 1: Direct substitution gives -1/0 form.
  • Step 2: Factor the denominator as x(x - 2) and separate the zero-producing factor: (x - 3)/x · 1/(x - 2).
  • Step 3: As x approaches 2 from the left, (x - 3)/x approaches -1/2, and 1/(x - 2) approaches negative infinity, so their product approaches positive infinity.

🗜️ The squeeze theorem

🗜️ Core mechanism

The Squeeze Theorem: Let f(x), g(x), and h(x) be defined for all x ≠ a over an open interval containing a. If f(x) ≤ g(x) ≤ h(x) for all x ≠ a in that interval, and if the limit of f(x) as x approaches a equals L and the limit of h(x) as x approaches a also equals L, then the limit of g(x) as x approaches a equals L.

  • Think of g(x) as "squeezed" or "sandwiched" between two functions that converge to the same value.
  • Even if g(x) has complicated behavior (oscillation, discontinuity), as long as it stays trapped between converging bounds, its limit is determined.

🎯 Application example

To evaluate the limit of x·cos(x) as x approaches 0:

  • Use the inequality -1 ≤ cos(x) ≤ 1 for all x.
  • Multiply through by |x|: -|x| ≤ x·cos(x) ≤ |x|.
  • Both -|x| and |x| approach 0 as x approaches 0.
  • By the squeeze theorem, x·cos(x) must also approach 0.

Don't confuse: The middle function doesn't need to be "well-behaved"—cos(x) oscillates, but the bounds force the product to zero.

📐 Fundamental trigonometric limits

📐 Limit of sin(θ) as θ → 0

Using the unit circle geometry:

  • For 0 < θ < π/2, the sine value (y-coordinate) is less than the arc length θ: 0 < sin(θ) < θ.
  • Apply the squeeze theorem with lower bound 0 and upper bound θ, both approaching 0.
  • Similar reasoning for negative θ shows the limit from the left is also 0.
  • Conclusion: The limit of sin(θ) as θ approaches 0 equals 0.

📐 Limit of cos(θ) as θ → 0

  • Use the identity cos(θ) = square root of (1 - sin²(θ)) for -π/2 < θ < π/2.
  • Since sin(θ) approaches 0, sin²(θ) approaches 0, so 1 - sin²(θ) approaches 1.
  • Conclusion: The limit of cos(θ) as θ approaches 0 equals 1.

📐 Limit of sin(θ)/θ as θ → 0

This is one of the most important limits in calculus:

  • From unit circle geometry: for 0 < θ < π/2, we have sin(θ) < θ < tan(θ).
  • Divide all parts by sin(θ): 1 < θ/sin(θ) < 1/cos(θ).
  • Take reciprocals (flipping inequalities): 1 > sin(θ)/θ > cos(θ).
  • As θ approaches 0 from the right, cos(θ) approaches 1, squeezing sin(θ)/θ to 1.
  • Similar reasoning for the left-hand limit.
  • Conclusion: The limit of sin(θ)/θ as θ approaches 0 equals 1.

📐 Limit of (1 - cos(θ))/θ as θ → 0

Strategy: multiply by the conjugate to convert cosine to sine.

  • Multiply numerator and denominator by (1 + cos(θ)).
  • Numerator becomes 1 - cos²(θ) = sin²(θ).
  • Expression becomes sin²(θ) / [θ(1 + cos(θ))] = [sin(θ)/θ] · [sin(θ)/(1 + cos(θ))].
  • The first factor approaches 1, the second approaches 0/2 = 0.
  • Conclusion: The limit equals 1 · 0 = 0.

🔄 Techniques for indeterminate forms

🔄 The 0/0 form

When direct substitution yields 0/0, the limit is indeterminate—it could be any value or fail to exist.

Resolution strategies:

  • Factor numerator and denominator, then cancel common factors.
  • Multiply by a conjugate to eliminate radicals or convert trigonometric expressions.
  • Use trigonometric identities to rewrite the expression.

🔄 Example pattern

For the limit of (x² - 16)/(x - 4) as x approaches 4:

  • Direct substitution gives 0/0.
  • Factor numerator: (x - 4)(x + 4)/(x - 4).
  • Cancel the common factor (x - 4).
  • Evaluate the simplified expression (x + 4) at x = 4 to get 8.

Don't confuse: Canceling (x - 4) is valid because we're taking a limit as x approaches 4, not evaluating at x = 4—the factor is nonzero in the limit process.

🧮 Historical application: Area of a circle

🧮 Archimedes' polygon method

The excerpt describes how ancient Greek methods anticipated calculus:

  • Inscribe a regular n-sided polygon inside a circle of radius r.
  • Each polygon is made of n isosceles triangles with vertex angle θ.
  • Express the area of one triangle in terms of θ and r.
  • As the number of sides n increases, θ decreases (since n triangles must fit around the center: θ = 2π/n).
  • Take the limit as θ approaches 0 to find the circle's area.

Key insight: The limit of the polygon area as the number of sides grows infinite gives the exact area of the circle—this is an early example of using limits to find exact values from approximations.

43

Continuity

6.7 Integrals, Exponential Functions, and Logarithms

🧭 Overview

🧠 One-sentence thesis

A function is continuous at a point if its graph has no break there, which requires the function to be defined at that point, the limit to exist at that point, and the limit to equal the function's value at that point.

📌 Key points (3–5)

  • Three conditions for continuity: f(a) is defined, the limit as x approaches a exists, and the limit equals f(a).
  • When continuity fails: if any one of the three conditions is not met, the function is discontinuous at that point.
  • Three types of discontinuities: removable (hole in the graph), jump (sections don't meet), and infinite (vertical asymptote).
  • Common confusion: a function can be defined at a point and the limit can exist, but if they are not equal, the function is still discontinuous.
  • Polynomials and rational functions: continuous at every point in their domains.

🔍 What continuity means

🖊️ Intuitive idea

  • A function is continuous at a point if you can trace its graph with a pencil without lifting the pencil from the page at that point.
  • If there is a break in the graph at a point, the function has a discontinuity at that point.

📋 Formal definition

A function f(x) is continuous at a point a if and only if three conditions are satisfied:

  1. f(a) is defined
  2. the limit as x approaches a of f(x) exists
  3. the limit as x approaches a of f(x) equals f(a)

A function is discontinuous at a point a if it fails to be continuous at a.

🧩 The three conditions explained

✅ Condition 1: f(a) must be defined

  • The function must have a value at the point in question.
  • If f(a) is undefined (for example, division by zero), the function cannot be continuous at a.
  • Example: f(x) = (x squared minus 4) divided by (x minus 2) is discontinuous at x = 2 because f(2) = 0/0, which is undefined.

✅ Condition 2: the limit must exist

  • The limit as x approaches a of f(x) must exist and be a real number.
  • This means the left-hand limit (as x approaches a from the left) and the right-hand limit (as x approaches a from the right) must both exist and be equal.
  • Example: if the left-hand limit is negative 5 and the right-hand limit is 4, then the limit does not exist, so the function is discontinuous.

✅ Condition 3: the limit must equal the function value

  • Even if f(a) is defined and the limit exists, they must be equal for continuity.
  • Don't confuse: a function can satisfy the first two conditions but still be discontinuous if the limit does not equal f(a).
  • Example: f(x) = (sin x)/x if x is not 0, and f(x) = 1 if x = 0. Here f(0) = 1 and the limit as x approaches 0 is 1, so they are equal and the function is continuous at 0.

🛠️ How to check continuity at a point

🔢 Step-by-step procedure

  1. Check if f(a) is defined: if not, stop—the function is not continuous at a.
  2. Compute the limit as x approaches a of f(x): you may need to compute left-hand and right-hand limits separately. If the limit does not exist, stop—the function is not continuous at a.
  3. Compare f(a) and the limit: if they are not equal, the function is not continuous at a. If they are equal, the function is continuous at a.

📊 Summary table

ConditionWhat to checkIf it fails
1f(a) is definedFunction is discontinuous
2limit as x approaches a existsFunction is discontinuous
3limit equals f(a)Function is discontinuous

🏷️ Types of discontinuities

🕳️ Removable discontinuity

A function f has a removable discontinuity at a if the limit as x approaches a of f(x) exists (is a real number).

  • There is a "hole" in the graph.
  • The limit exists, but either f(a) is undefined or the limit does not equal f(a).
  • Example: f(x) = (x squared minus 4)/(x minus 2) at x = 2 has a removable discontinuity because the limit exists but f(2) is undefined.

🦘 Jump discontinuity

A function f has a jump discontinuity at a if both the left-hand limit and right-hand limit exist (are real numbers), but they are not equal.

  • The sections of the function do not meet up.
  • Both one-sided limits are real-valued and finite, but they differ.
  • Example: a piecewise function where the left-hand limit is negative 5 and the right-hand limit is 4 at x = 3 has a jump discontinuity.

♾️ Infinite discontinuity

A function f has an infinite discontinuity at a if the left-hand limit or the right-hand limit equals positive or negative infinity.

  • The discontinuity is located at a vertical asymptote.
  • At least one one-sided limit approaches infinity.

🧭 Don't confuse

  • Not all discontinuities fit neatly into these three categories.
  • The three types provide a handy way to describe common discontinuities, but they are not exhaustive.

🎯 Special cases: polynomials and rational functions

📐 Theorem for polynomials and rational functions

Continuity of Polynomials and Rational Functions: Polynomials and rational functions are continuous at every point in their domains.

🔍 Why this is true

  • For any polynomial p(x), the limit as x approaches a of p(x) equals p(a) for every a.
  • For a rational function p(x)/q(x), the limit as x approaches a equals p(a)/q(a) as long as q(a) is not zero.
  • Therefore, these functions are continuous wherever they are defined.

🧮 Example application

  • f(x) = (x plus 1)/(x minus 5) is continuous for every value of x except x = 5 (because the denominator is zero at x = 5, so f(5) is not in the domain).
  • f(x) = 3x to the fourth minus 4x squared is a polynomial, so it is continuous for all real numbers.
44

Continuity and the Intermediate Value Theorem

6.8 Exponential Growth and Decay

🧭 Overview

🧠 One-sentence thesis

A function is continuous at a point if its limit equals its value there, and the Intermediate Value Theorem guarantees that continuous functions on closed intervals take on every value between their endpoints.

📌 Key points (3–5)

  • Continuity at a point: a function is continuous at a if the limit as x approaches a equals f(a); rational functions are continuous everywhere in their domain.
  • Three types of discontinuity: removable (hole in the graph), jump (sections don't meet), and infinite (vertical asymptote).
  • Continuity over intervals: requires continuity at every interior point plus one-sided continuity at endpoints; allows "pencil-tracing" without lifting.
  • Common confusion: the Intermediate Value Theorem (IVT) applies only to continuous functions on closed intervals—if f(a) and f(b) have opposite signs, there must be a zero in between.
  • Why it matters: continuity enables powerful theorems like the IVT, which guarantees solutions exist without finding them explicitly.

🔍 Continuity at a point

🔍 When a function is continuous

A function f(x) is continuous at a point a if the limit as x approaches a equals f(a).

  • Three conditions must hold simultaneously:
    • f(a) is defined
    • The limit as x approaches a exists
    • The limit equals f(a)
  • Example: Rational functions like f(x) = (x + 1)/(x − 5) are continuous at every point in their domain (everywhere except x = 5 in this case).

🔍 Rational function continuity

  • A rational function is continuous at every point where its denominator is nonzero.
  • Example: f(x) = 3x⁴ − 4x² is continuous for all x because the denominator is implicitly 1.
  • Don't confuse: "continuous everywhere" vs "continuous on its domain"—a function with restricted domain can still be continuous wherever it's defined.

🚧 Types of discontinuities

🚧 Removable discontinuity

A function has a removable discontinuity at a if it is discontinuous there but the limit as x approaches a exists (and is a real number).

  • Visually: a "hole" in the graph.
  • Example: f(x) = (x² − 4)/(x − 2) at x = 2. The limit as x approaches 2 is 4, but f(2) is undefined. This creates a removable discontinuity.
  • The discontinuity is "removable" because redefining f(2) = 4 would make the function continuous.

🚧 Jump discontinuity

A function has a jump discontinuity at a if both one-sided limits exist (as real numbers) but are not equal.

  • Visually: the graph "jumps" from one height to another.
  • Example: A piecewise function where the left-hand limit is −5 and the right-hand limit is 4 at x = 3.
  • Don't confuse with removable: here both one-sided limits exist but differ; in removable, the two-sided limit exists.

🚧 Infinite discontinuity

A function has an infinite discontinuity at a if either one-sided limit approaches positive or negative infinity.

  • Visually: a vertical asymptote.
  • Example: f(x) = (x + 2)/(x + 1) at x = −1. The left-hand limit is −∞ and the right-hand limit is +∞.

📏 Continuity over intervals

📏 Open vs closed intervals

  • Open interval (a, b): continuous at every point inside.
  • Closed interval [a, b]: continuous at every interior point, continuous from the right at a, and continuous from the left at b.
  • The endpoint conditions ensure you can trace the graph from (a, f(a)) to (b, f(b)) without lifting your pencil.

📏 One-sided continuity

A function is continuous from the right at a if the right-hand limit equals f(a); continuous from the left at a if the left-hand limit equals f(a).

  • Example: f(x) = √(4 − x²) is continuous over [−2, 2] because it is continuous on (−2, 2) and the one-sided limits at the endpoints equal the function values.

📏 Composite Function Theorem

  • If f(x) is continuous at L and the limit of g(x) as x approaches a is L, then the limit of f(g(x)) as x approaches a equals f(L).
  • Application: proves that trigonometric functions are continuous over their entire domains.
  • Example: To find the limit of cos(x − π/2) as x approaches π/2, note that (x − π/2) approaches 0 and cos is continuous at 0, so the limit is cos(0) = 1.

🎯 The Intermediate Value Theorem

🎯 Statement of the IVT

If f is continuous over a closed, bounded interval [a, b] and z is any real number between f(a) and f(b), then there exists a number c in [a, b] such that f(c) = z.

  • Intuition: a continuous function on a closed interval must pass through every value between its endpoints.
  • The theorem guarantees existence but does not tell you how to find c.

🎯 Using the IVT to show zeros exist

  • To show f(x) has at least one zero in [a, b]:
    • Verify f is continuous on [a, b]
    • Check that f(a) and f(b) have opposite signs
    • Conclude there exists c in (a, b) where f(c) = 0
  • Example: f(x) = x − cos(x) satisfies f(0) = −1 < 0 and f(π/2) = π/2 > 0, so by the IVT there is at least one zero in [0, π/2].

🎯 When the IVT does NOT apply

ScenarioWhy IVT failsExample
f(a) and f(b) same signNo guarantee of intermediate valuesf(0) > 0 and f(2) > 0 doesn't rule out zeros
f not continuousTheorem requires continuityf(x) = 1/x on [−1, 1] has opposite signs at endpoints but no zero (discontinuous at 0)
  • Don't confuse: The IVT tells you a value exists if f(a) and f(b) bracket it; it does NOT tell you no other values exist when they don't bracket.
45

Continuity and the Precise Definition of Limits

6.9 Calculus of the Hyperbolic Functions

🧭 Overview

🧠 One-sentence thesis

The epsilon-delta definition formalizes the intuitive notion of limits and continuity, providing the rigorous foundation needed to prove limit laws and classify discontinuities.

📌 Key points (3–5)

  • Continuity at a point: A function is continuous at a point if it is defined there, the limit exists, and the limit equals the function value.
  • Three types of discontinuities: removable (limit exists but doesn't match function value or function undefined), jump (left and right limits exist but differ), and infinite (limit approaches positive or negative infinity).
  • Epsilon-delta definition: For every distance epsilon from the limit L, there exists a distance delta from a such that if x is within delta of a (but not equal to a), then f(x) is within epsilon of L.
  • Common confusion: Continuity over an interval vs. at a point—interval continuity requires continuity at every interior point plus appropriate one-sided continuity at endpoints.
  • Intermediate Value Theorem: A continuous function on a closed interval takes on every value between its endpoint values.

📐 Continuity at a point and over intervals

📐 Definition of continuity at a point

A function f(x) is continuous at a point a if and only if: (1) f(a) is defined, (2) the limit as x approaches a of f(x) exists, and (3) the limit as x approaches a of f(x) equals f(a).

  • All three conditions must hold simultaneously.
  • If any one condition fails, the function is discontinuous at that point.
  • Example: A rational function like f(x) = (x + 1)/(x − 5) is continuous at every point in its domain (all real numbers except x = 5).

🔄 Continuity from the right and left

A function is continuous from the right at a if the limit as x approaches a from the right equals f(a). A function is continuous from the left at b if the limit as x approaches b from the left equals f(b).

  • These one-sided continuity concepts are essential for defining continuity over closed intervals.
  • Example: For continuity over [a, b], the function must be continuous at every point in (a, b), continuous from the right at a, and continuous from the left at b.

📏 Continuity over intervals

  • Open interval: Continuous at every point in the interval.
  • Closed interval [a, b]: Continuous at every point in (a, b), continuous from the right at a, and continuous from the left at b.
  • The intuitive idea: you can trace the function with a pencil without lifting it from the paper.
  • Rational functions are continuous over every interval in their domain.

🔀 Types of discontinuities

🔀 Removable discontinuity

f has a removable discontinuity at a if f is discontinuous at a but the limit as x approaches a of f(x) exists (as a real number).

  • There is a "hole" in the graph.
  • The limit exists, but either the function is undefined at a or f(a) does not equal the limit.
  • Example: f(x) = (x² − 4)/(x − 2) at x = 2. The limit as x approaches 2 is 4, but f(2) is undefined.
  • Don't confuse: The limit existing doesn't mean the function is continuous—the function value must also match the limit.

🔀 Jump discontinuity

f has a jump discontinuity at a if both one-sided limits exist (as real numbers) but are not equal: the limit from the left does not equal the limit from the right.

  • The graph has a "jump" where the left and right sections don't meet.
  • Example: A piecewise function where the left piece approaches one value and the right piece approaches a different value at the transition point.

🔀 Infinite discontinuity

f has an infinite discontinuity at a if either the left-hand limit or the right-hand limit equals positive or negative infinity.

  • Located at a vertical asymptote.
  • The function increases or decreases without bound as x approaches a.
  • Example: f(x) = (x + 2)/(x + 1) at x = −1. The limit as x approaches −1 from the left is negative infinity; from the right is positive infinity.

🔬 The epsilon-delta definition of a limit

🔬 Formal definition

The limit as x approaches a of f(x) equals L if, for every epsilon > 0, there exists a delta > 0 such that if 0 < |x − a| < delta, then |f(x) − L| < epsilon.

Translation:

  • For every epsilon > 0: For every positive distance epsilon from L,
  • there exists a delta > 0: there is a positive distance delta from a,
  • such that if 0 < |x − a| < delta: such that if x is closer than delta to a and x is not equal to a,
  • then |f(x) − L| < epsilon: then f(x) is closer than epsilon to L.

🔍 Quantifying closeness

  • The statement |f(x) − L| < epsilon means: the distance between f(x) and L is less than epsilon.
  • The statement 0 < |x − a| < delta means: x is not equal to a and the distance between x and a is less than delta.
  • Equivalently: |f(x) − L| < epsilon is the same as L − epsilon < f(x) < L + epsilon.
  • Equivalently: 0 < |x − a| < delta is the same as a − delta < x < a + delta and x is not equal to a.

🔍 Geometric interpretation

  • As we choose smaller values of epsilon (distance from the limit), we can always find a delta small enough so that if x is within delta of a, then f(x) is within epsilon of L.
  • The graphs show that for successively smaller epsilon, we can find corresponding delta values.

🧮 Proving limits using epsilon-delta

🧮 General proof strategy

  1. Start: Let epsilon > 0.
  2. Choose delta: Determine a value for delta (this is the "scavenger hunt" part).
  3. Assume: Assume 0 < |x − a| < delta.
  4. Show: Demonstrate that |f(x) − L| < epsilon using the assumption.
  5. Conclude: Therefore, the limit as x approaches a of f(x) equals L.

🧮 Algebraic approach

  • Manipulate the desired inequality |f(x) − L| < epsilon to find what delta should be.
  • Example: To prove the limit as x approaches 1 of (2x + 1) equals 3:
    • We want |(2x + 1) − 3| < epsilon.
    • This simplifies to |2x − 2| < epsilon, then |2||x − 1| < epsilon, then |x − 1| < epsilon/2.
    • So choose delta = epsilon/2.

🧮 Handling nonlinear functions

  • For more complex functions, may need to choose delta = min{some value, another value}.
  • Example: For the limit as x approaches −1 of (x² − 2x + 3) equals 6, choose delta = min{1, epsilon/5}.
  • The first constraint (delta ≤ 1) helps bound other terms; the second ensures the final inequality.
  • Don't confuse: Delta must depend only on epsilon, not on x or other variables.

🔧 One-sided and infinite limits (epsilon-delta versions)

🔧 Limit from the right

The limit as x approaches a from the right of f(x) equals L if for every epsilon > 0, there exists a delta > 0 such that if 0 < x − a < delta, then |f(x) − L| < epsilon.

  • The key change: 0 < x − a < delta (instead of 0 < |x − a| < delta) ensures we only consider x values greater than a.
  • Example: Proving the limit as x approaches 4 from the right of the square root of (x − 4) equals 0.

🔧 Limit from the left

The limit as x approaches a from the left of f(x) equals L if for every epsilon > 0, there exists a delta > 0 such that if −delta < x − a < 0, then |f(x) − L| < epsilon.

  • The key change: −delta < x − a < 0 ensures we only consider x values less than a.

🔧 Infinite limits

The limit as x approaches a of f(x) equals positive infinity if for every M > 0, there exists delta > 0 such that if 0 < |x − a| < delta, then f(x) > M.

  • Instead of requiring f(x) to be within epsilon of L, we require f(x) to be larger than any positive number M.
  • For negative infinity: require f(x) < −M for every M > 0.

🏔️ The Intermediate Value Theorem

🏔️ Statement of the theorem

Let f be continuous over a closed, bounded interval [a, b]. If z is any real number between f(a) and f(b), then there is a number c in [a, b] satisfying f(c) = z.

  • The function must be continuous over the entire closed interval.
  • z must lie between the two endpoint values.
  • The theorem guarantees at least one c exists; there may be more than one.

🏔️ Application: proving a zero exists

  • To show f(x) = x − cos(x) has at least one zero:
    • f is continuous over (−infinity, +infinity), so it's continuous over any closed interval.
    • f(0) = 0 − cos(0) = −1 < 0.
    • f(pi/2) = pi/2 − cos(pi/2) = pi/2 > 0.
    • Since f(0) and f(pi/2) have opposite signs, by IVT there exists c in [0, pi/2] with f(c) = 0.

🏔️ When IVT does not apply

  • Discontinuity: If f(x) = 1/x, f(−1) = −1 < 0 and f(1) = 1 > 0, but f has no zero in [−1, 1] because f is not continuous over the interval (discontinuous at 0).
  • Same-sign endpoints: If f(0) > 0 and f(2) > 0, IVT does not tell us whether f has zeros in [0, 2]. The theorem only guarantees values between f(0) and f(2).
  • Don't confuse: IVT tells us what values must exist; it doesn't tell us what values cannot exist.

🧪 Proving limit laws and showing limits don't exist

🧪 Proving a limit law (sum law example)

  • Goal: If the limit of f(x) as x approaches a is L and the limit of g(x) as x approaches a is M, then the limit of (f(x) + g(x)) as x approaches a is L + M.
  • Proof sketch:
    1. Let epsilon > 0.
    2. Choose delta₁ so that if 0 < |x − a| < delta₁, then |f(x) − L| < epsilon/2.
    3. Choose delta₂ so that if 0 < |x − a| < delta₂, then |g(x) − M| < epsilon/2.
    4. Choose delta = min{delta₁, delta₂}.
    5. Use the triangle inequality: |(f(x) + g(x)) − (L + M)| ≤ |f(x) − L| + |g(x) − M| < epsilon/2 + epsilon/2 = epsilon.

🧪 Triangle inequality

For any real numbers a and b: |a + b| ≤ |a| + |b|.

  • This property is essential in many limit proofs.

🧪 Showing a limit does not exist

  • To show the limit as x approaches a of f(x) does not exist, we must show that for every candidate L, there exists epsilon > 0 such that for all delta > 0, there is an x satisfying 0 < |x − a| < delta but |f(x) − L| ≥ epsilon.
  • Example: For f(x) = |x|/x at x = 0:
    • Choose epsilon = 1/2.
    • For any candidate L and any delta > 0, we can find x within delta of 0 where |f(x) − L| ≥ 1/2.
    • If L ≥ 0, pick x = −delta/2 (so f(x) = −1).
    • If L < 0, pick x = delta/2 (so f(x) = 1).

🔢 Composite Function Theorem and trigonometric continuity

🔢 Composite Function Theorem

If f(x) is continuous at L and the limit as x approaches a of g(x) equals L, then the limit as x approaches a of f(g(x)) equals f(L).

  • This allows us to "move the limit inside" a continuous function.
  • Example: To find the limit as x approaches pi/2 of cos(x − pi/2):
    • The limit as x approaches pi/2 of (x − pi/2) is 0.
    • cos(x) is continuous at 0.
    • Therefore, the limit equals cos(0) = 1.

🔢 Continuity of trigonometric functions

Trigonometric functions are continuous over their entire domains.

  • The proof uses the composite function theorem and the continuity of sin(x) and cos(x) at 0.
  • For cos(x): manipulate using the identity for cosine of a sum, apply the composite function theorem, and show the limit as x approaches a of cos(x) equals cos(a).
  • Other trigonometric functions follow from the quotient limit law since they can be expressed in terms of sin(x) and cos(x).