Notes on Secants, Tangents, and Derivatives (From Transcript)

Secant slope and the difference quotient

  • The lecture starts by noting a relationship between tangent and secant lines in trigonometry, and mentions that the vocabulary (tangent, secant) comes from classical geometry; in this context, it’s about curves and slopes, not a philosophical issue.

  • Setup for secants: choose a point p with x-coordinate a on the curve y = f(x). Let q be a second point h units away horizontally from a, so its x-coordinate is a + h.

  • Coordinates involved:

    • Point on the curve at a:
      P = (a,\, f(a))

    • Point on the curve at a + h:
      Q = (a + h,\, f(a + h))

  • The secant slope (rise over run) between P and Q is
    m{sec} = \frac{y2 - y1}{x2 - x_1} = \frac{f(a + h) - f(a)}{(a + h) - a} = \frac{f(a + h) - f(a)}{h}.

  • This expression is often called the difference quotient; it is the slope of the secant line joining two points on the curve.

  • Visual intuition: as h varies, the secant line changes slope. If q is moved closer to p (h becomes smaller in magnitude), the secant slope tends to the steepness of the tangent line at p, but when h ≠ 0, it is generally not equal to the tangent slope.

  • The goal is to make h smaller and smaller (approaching zero) to approach the tangent slope at a.

Tangent line as a limit of secants

  • Conceptual transition: to obtain the slope of the tangent line at x = a, take the limit of the secant slope as h → 0, while ensuring h ≠ 0 so you don’t collapse to a single point.

  • The derivative idea (slope of the tangent) is formalized as the limit
    m{tan} = \lim{h \to 0} \frac{f(a + h) - f(a)}{h}.

  • Notes:

    • We cannot literally set h = 0 in the difference quotient because that would produce 0 in the denominator and collapse to a single point.

    • The limit captures the idea of “slope of the curve at a point” by looking at slopes of neighboring secant lines.

  • Applications and interpretations of the derivative (the slope of the tangent):

    • If f models displacement, the derivative is velocity (rate of change of position).

    • If f models population, the derivative is the instantaneous rate of change of the population.

    • If f models a chemical amount in a mixture, the derivative is the reaction rate.

    • In economics, the derivative is related to marginal analysis (marginal cost, marginal revenue, etc.), i.e., the instantaneous rate of change.

  • The derivative is a foundational concept that connects to the next topic: slope as a measure of increase/decrease and the tangent line as the instantaneous rate of change.

A worked example: f(x) = x^2 - 2x + 5 at x = 3

  • Define the function:
    f(x) = x^{2} - 2x + 5.

  • Evaluate at a = 3:
    f(3) = 3^{2} - 2\cdot 3 + 5 = 9 - 6 + 5 = 8.
    So the point of tangency on the curve is (3, 8).

  • Prepare the difference quotient with a = 3:
    \frac{f(3 + h) - f(3)}{h}.

  • Compute f(3 + h):
    f(3 + h) = (3 + h)^{2} - 2(3 + h) + 5 = (9 + 6h + h^{2}) - 6 - 2h + 5 = 8 + 4h + h^{2}}.

  • Substitute into the difference quotient:
    \frac{f(3 + h) - f(3)}{h} = \frac{(8 + 4h + h^{2}) - 8}{h} = \frac{4h + h^{2}}{h} = 4 + h.

  • Take the limit as h → 0:
    m{tan} = \lim{h \to 0} (4 + h) = 4.

  • Therefore, the slope of the tangent line to the curve at x = 3 is 4.

Equation of the tangent line at x = 3

  • Point of tangency: (x1, y1) = (3, f(3)) = (3, 8).

  • The slope of the tangent line is m = 4.

  • Point-slope form of the tangent line:
    y - y{1} = m\,(x - x{1})
    Substituting values:
    y - 8 = 4\,(x - 3).

  • Simplified slope-intercept form:
    y = 4x - 4.

  • Interpretation: the tangent line at x = 3 passes through (3, 8) and has slope 4, matching the instantaneous rate of change of f at that point.

Interconnections and practical insights

  • How the pieces fit:

    • The secant slope formula is the finite difference approximation to the derivative.

    • The difference quotient is the common name for the expression (\frac{f(a+h) - f(a)}{h}).

    • The derivative is the limit of these quotients as the interval between points shrinks to zero.

  • Why we emphasize writing the limit on every step:

    • It keeps the end goal in view and prevents prematurely substituting h = 0.

    • It helps guard against algebraic errors and keeps track of how h vanishes in the final expression.

  • Visual and algebraic workflow:

    • Start from a general formula for the secant slope.

    • Plug in a specific a and derive the expression for f(a+h).

    • Simplify, cancel factors of h, and take the limit as h → 0 to obtain the tangent slope.

    • Use the tangent slope with a point on the curve to write the tangent line equation (often via point-slope form).

  • Practical tip: think of f as a composition where you substitute a + h into the function, then subtract f(a) and divide by h; this is the core algebraic step in many tangent-line problems.

Tips, pitfalls, and best practices

  • The hardest step is setting up the definition correctly: write the limit with the exact a and f(a), and substitute f(a + h) properly, paying attention to composition.

  • Always keep the line "limit as h → 0" in the expression on every step to remind yourself that you’re approaching, not equal to, h = 0.

  • When expanding or simplifying, look for opportunities to factor or cancel an h to remove the indeterminate form 0/0.

  • If signs or distribution look off, double-check the algebra; an incorrect sign often sabotages the whole limit.

  • Remember: the derivative is fundamentally a slope: a positive m means the function is increasing at that point, a negative m means it is decreasing.

  • In teaching practice, a quick check is to graph the function and the tangent to see that the tangent line has the same slope as the curve locally.

  • Note that not all limits are of this secant-to-tangent type; the limit as h → ∞ is another important family of limits (e.g., long-term behavior), but this one is a special, foundational case.

Quick recap and takeaways

  • Secant slope between (a, f(a)) and (a + h, f(a + h)) is
    m_{sec} = \frac{f(a + h) - f(a)}{h}.

  • The tangent slope at x = a is the limit of this expression as h → 0:
    m{tan} = \lim{h \to 0} \frac{f(a + h) - f(a)}{h}.

  • For the example f(x) = x^{2} - 2x + 5 at a = 3:

    • f(3) = 8, f(3 + h) = 8 + 4h + h^{2}, and

    • the difference quotient simplifies to 4 + h, so

    • m{tan} = \lim{h \to 0} (4 + h) = 4.

  • Tangent line equation at (3, 8) is
    y - 8 = 4\,(x - 3) \text{or}\ y = 4x - 4.

Secant slope and the difference quotient

  • The lecture starts by noting a fundamental relationship between tangent and secant lines, which is rooted in classical geometry, especially as applied to circles. In the context of curves and slopes in calculus, the secant line connects two distinct points on a curve, while the tangent line touches the curve at a single point and shares the same instantaneous direction.

  • Setup for secants: To define the slope of a secant line, we choose a specific point P on the curve y = f(x) with an x-coordinate, let's call it a. Then, we select a second point Q. The x-coordinate of Q is horizontally offset from a by a small distance, or increment, denoted as h. Thus, the x-coordinate of Q is \mathbf{a + h} (where h \neq 0 to ensure P and Q are distinct points). The parameter h can be positive or negative, indicating Q is to the right or left of P, respectively.

  • Coordinates involved: We define the precise coordinates for these two points on the curve:

    • Point on the curve at a: The coordinates of P are determined by the function f(x), so P = (a, f(a))

    • Point on the curve at a + h: Similarly, the coordinates of Q are Q = (a + h, f(a + h))

  • The secant slope (rise over run): The slope of the line connecting P and Q is calculated using the standard slope formula \frac{\text{change in y}}{\text{change in x}}. This yields:

    \qquad m{sec} = \frac{y2 - y1}{x2 - x_1}
    = \frac{f(a + h) - f(a)}{(a + h) - a}
    = \frac{f(a + h) - f(a)}{h}.

  • This crucial expression is universally known as the difference quotient. It represents the average rate of change of the function f(x) over the interval [a, a + h], and geometrically, it is the exact slope of the secant line joining the two points at x=a and x=a+h on the curve.

  • Visual intuition: As the value of h is systematically varied (i.e., Q moves along the curve), the secant line's slope will change. A key insight in calculus is to observe what happens as point Q moves progressively closer to point P. This means the horizontal distance h becomes smaller in magnitude (h \to 0). When h approaches zero, the secant line's slope tends towards the steepness of the tangent line at point P. However, it's vital to remember that when h \neq 0, the secant slope is generally not equal to the tangent slope; it's merely an approximation.

  • The ultimate objective is to make h infinitesimally small (approaching zero) to precisely determine the tangent slope at x=a. This process leads to the concept of the derivative.

Tangent line as a limit of secants

  • Conceptual transition: To determine the exact slope of the tangent line at a specific point (x = a) on the curve, we formalize the visual intuition by taking the limit of the secant slope as h approaches 0. This limit process is what transforms the average rate of change (secant slope) into the instantaneous rate of change (tangent slope).

  • The derivative, which is the slope of the tangent line, is formally defined as:

    m{tan} = \lim{h \to 0} \frac{f(a + h) - f(a)}{h}.

  • Important Notes:

    • We cannot simply substitute h = 0 directly into the difference quotient, because this would result in a \frac{0}{0} indeterminate form, which is undefined. This would also imply collapsing the two distinct points P and Q into a single point, making it impossible to define a line (and thus a slope).

    • The limit concept is precisely designed to capture the