English translation
Define the function
A derivative is the instantaneous rate of change obtained by compressing a change down to an infinitesimally small scale. Geometrically, it corresponds to the slope of the tangent line to a curve at a given point.
I interpret derivative results as “change in output per unit change in input,” rather than merely writing symbolic answers.
In the previous article, we discussed function continuity and differentiability. To deepen our understanding of derivatives and differentials, today we will explore the definition of the derivative and its geometric meaning. The derivative is a foundational concept in calculus—it provides a powerful tool for analyzing how functions change.
Definition of the Derivative
The fundamental definition of the derivative describes the instantaneous rate of change of a function at a specific point. Given a function , suppose we wish to compute its derivative at a point . By definition, the derivative is expressed as:
When learning the definition of the derivative, first observe how the slope of a secant line approaches that of the tangent line. Linking rates of change directly to the shape of the graph builds deeper intuition than memorizing the limit formula alone.
Here, represents a very small increment; is the function value near , and is the function value at . The value of this limit—provided it exists—is the derivative of at , commonly denoted .
Example
Consider the function . We want to compute its derivative at . Using the definition above:
Substitute the expression for :
Expand and simplify:
Thus, , meaning the instantaneous rate of change of at is 6.
Geometric Meaning of the Derivative
The derivative is not merely an algebraic construct—it carries profound geometric significance. Specifically, the derivative at a point equals the slope of the tangent line to the graph of the function at that point. If we draw the tangent line at , its slope is precisely .
While reading “Derivatives and Differentials: Definition and Geometric Meaning of the Derivative”, treat the accompanying diagrams as navigation cards: first grasp the overall logical flow, then examine why each step follows, and finally verify boundary conditions.
Connection Between Tangents and Derivatives
Recall the graph of : a upward-opening parabola. At , the tangent line has slope , indicating that near , changes in the function’s output are approximately proportional to changes in input—with proportionality factor .
On the graph, the equation of the tangent line is:
Substituting and , we obtain:
or equivalently,
This line is the tangent to the function at .
Code Example
We can also visualize this process programmatically using Python and the matplotlib library:
import numpy as np
import matplotlib.pyplot as plt
# Define the function
def f(x):
return x**2
# Derivative function (analytically derived)
def f_prime(a):
return 2 * a
# Set x-range
x = np.linspace(0, 6, 100)
y = f(x)
# Plot the function
plt.plot(x, y, label='$f(x) = x^2$')
# Compute tangent line at x = a
a = 3
slope = f_prime(a)
y_tangent = slope * (x - a) + f(a)
# Plot the tangent line
plt.plot(x, y_tangent, label=f'Tangent at $x={a}$', linestyle='--')
# Mark the point (3, f(3))
plt.scatter([a], [f(a)], color='red')
plt.text(a, f(a), f'({a}, {f(a)})', fontsize=12, verticalalignment='bottom')
plt.title('Function and Tangent Line')
plt.xlabel('$x$')
plt.ylabel('$f(x)$')
plt.legend()
plt.grid()
plt.axhline(0, color='black', linewidth=0.5, ls='--')
plt.axvline(0, color='black', linewidth=0.5, ls='--')
plt.show()
If you haven’t fully internalized “Derivatives and Differentials: Definition and Geometric Meaning of the Derivative”, revisit this card and walk through its four key actions step-by-step.
When reviewing “Derivatives and Differentials: Definition and Geometric Meaning of the Derivative”, avoid tackling large projects all at once. Instead, start with one simple example to confirm whether the core logic is clear.
Summary
In this article, we thoroughly examined both the formal definition of the derivative and its geometric interpretation. The derivative quantifies the instantaneous rate of change of a function at a point—and simultaneously manifests visually as the slope of the tangent line to the function’s graph. In upcoming sections, we will introduce more advanced topics—including rules of differentiation and derivatives of elementary functions—to help you build a comprehensive mastery of this essential calculus concept.
Continue