Notes on Tangent Lines, Derivatives, and the Power Rule
Tangent Line Intuition
Imagine a curve, like the path of a rollercoaster (y = f(x) = x^2). Pick a point on it, let's say (P = (1,1)).
Now pick another point (Q) on the curve, very close to (P). Let's say (Q = (1 + h, (1 + h)^2)), where (h) is a tiny number.
If you draw a straight line connecting (P) and (Q), that's called a secant line. Its slope (m_{sec}) tells you how steep the curve is on average between (P) and (Q).
For our curve (y = x^2), the slope of the secant line between (P) and (Q) is:
m_{sec} = \frac{(1 + h)^2 - 1}{h} = 2 + h.
Let's see what happens as (Q) gets closer to (P) (meaning (h) gets closer to 0):
If (h = 1), m_{sec} = 3 (Q is at (2,4))
If (h = 0.5), m_{sec} = 2.5 (Q is at (1.5, 2.25))
If (h = 0.1), m_{sec} = 2.1 (Q is at (1.1, 1.21))
As (h) gets smaller and smaller, (Q) gets super close to (P). The secant line starts to look more and more like a line that just touches the curve at (P) instead of cutting through it.
This special line that only touches the curve at a single point (P) is called the tangent line. The slope of this tangent line at (P) is what the secant slope approaches as (h) goes to 0 (in our example, it approaches 2).
So, at (P = (1,1)), the tangent line has a slope of 2. Its equation is:
y - 1 = 2(x - 1)
which simplifies to y = 2x - 1.
Derivative: What it is and What it Means
A derivative is a way to find the exact slope of the tangent line at any point on a curve. It tells us how steep a function is at that particular point.
If you have a function (f(x)), its derivative is written as (f'(x)).
Definition: The derivative of (f(x)) is found by taking the limit of the secant slope formula as (h) approaches 0:
f'(x) = \lim_{h \to 0} \frac{f(x + h) - f(x)}{h}.
If this limit gives you a number, that number is the slope of the tangent line to the graph of (f) at the point ((x, f(x))).
The derivative function (f'(x)) gives you a new function that tells you the slope of the original function (f(x)) at any (x).
Examples: Finding Derivatives
Example 1: Flat and Straight Lines
(a) Constant function: If (f(x) = b) (a horizontal line), the slope is always 0. So, (f'(x) = 0).
(b) Linear function: If (f(x) = m x + b) (a straight line), the slope is always (m). So, (f'(x) = m).
Example 2: A Parabola
Function: (f(x) = x^2).
The secant slope was calculated as (m_{sec} = 2x + h).
As (h) gets closer to 0, the secant slope becomes (2x).
So, the derivative is: f'(x) = 2x.
This means for (y = x^2):
At (x = 1), the slope is (2(1) = 2).
At (x = 3), the slope is (2(3) = 6).
Example 3: A Cubic Curve
Function: (f(x) = x^3).
Using the limit definition (like we did for (x^2)), we find the secant slope is (3x^2 + 3x h + h^2).
As (h) approaches 0, the derivative is:
f'(x) = 3x^2.
The Power Rule: A Shortcut!
For functions like (f(x) = x^r) (where (r) is any real number like 2, 3, 1/2, -1, etc.), there's a quick rule to find the derivative.
The Power Rule states:
f'(x) = r x^{r - 1}.
How it works:
Bring the exponent (r) down to the front and multiply it by the (x).
Subtract 1 from the original exponent.
Let's check it with our examples:
For (f(x) = x^2), (r = 2). Power Rule gives f'(x) = 2x^{2 - 1} = 2x^1 = 2x (Matches!)
For (f(x) = x^3), (r = 3). Power Rule gives f'(x) = 3x^{3 - 1} = 3x^2 (Matches!)
For (f(x) = x), this is (x^1), so (r = 1). Power Rule gives f'(x) = 1x^{1 - 1} = 1x^0 = 1 (Remember (x^0 = 1) for (x \neq 0)).
For (f(x) = \sqrt{x}), this is (x^{1/2}), so (r = 1/2). Power Rule gives f'(x) = \frac{1}{2} x^{\frac{1}{2} - 1} = \frac{1}{2} x^{-1/2} = \frac{1}{2\sqrt{x}}. (Very handy!)
Equation of the Tangent Line at a Point (a, f(a))
If you know a point ((a, f(a))) on a curve and its derivative (f'(a)), you can write the equation of the tangent line there.
The slope (m) of the tangent line is simply (f'(a)).
Using the point-slope form (y - y1 = m(x - x1)), the equation is:
y - f(a) = f'(a)(x - a).
Example: Tangent Line to (f(x) = \sqrt{x}) at ((1,1))
We want the tangent line for (f(x) = \sqrt{x}) at the point ((1,1)).
First, find the derivative using the Power Rule: (f'(x) = \frac{1}{2\sqrt{x}}).
Now plug in (x = 1) to find the slope at that point: (f'(1) = \frac{1}{2\sqrt{1}} = \frac{1}{2}).
So, the slope (m = \frac{1}{2}), and our point is ((a, f(a))) = ((1,1)).
Using the tangent line equation:
y - 1 = \frac{1}{2}(x - 1).
Simplified: (y = \frac{1}{2}x + \frac{1}{2}).
To sketch this: Start at ((1,1)). Since the slope is 1/2, move 2 units to the right and 1 unit up to find another point on the line. Connect the points.
Why are Derivatives Important?
The derivative (f'(x)) tells you the instantaneous rate of change of a function. Think of it as the speed of a car at a specific moment, not its average speed over a trip.
The tangent line is like a super-accurate magnifying glass for a curve at a point. It gives you the best straight-line approximation (f(x) \approx f(a) + f'(a)(x - a)) for the function very close to that point.
The Power Rule is really powerful because it's a basic building block for finding derivatives of more complex functions.
These ideas are used everywhere! In physics, to find velocity and acceleration; in economics, to understand marginal cost and revenue; in biology, to model population growth; and in engineering, for design and optimization. They help us understand how things change.