Asymptote Studios

Calculus Guide · Part 1

Intro to Derivatives

What a derivative actually measures, where the idea comes from, and how to read the two notations you’ll see everywhere.

The big idea: how fast is something changing?

A derivative answers one question: how fast is this quantity changing, right now? You already have an everyday intuition for it. When you glance at a car’s speedometer, you are reading a derivative — speed is the rate at which position changes. When a news report says a population is “growing by 2% per year,” that is a derivative. Any time something changes over time, or one quantity changes in response to another, there is a derivative describing how fast.

Calculus makes this intuition precise. Given a function f(x) — a rule that turns inputs into outputs — the derivative f′(x) is a new function that tells you, for every input, the rate at which the output is changing at that exact point.

The picture: slopes of tangent lines

Geometrically, the derivative is a slope. For a straight line, slope is easy: rise over run, the same everywhere on the line. But a curve like y = x² has no single slope — it is shallow near the bottom and steep out at the edges. The slope is different at every point.

Here is the key move. Pick a point on the curve. Draw a line through it and a second, nearby point — this is called a secant line, and its slope is the average rate of change between the two points. Now slide the second point closer and closer to the first. The secant line pivots and settles toward a limiting position: the tangent line, the line that just grazes the curve at that single point. The slope of that tangent line is the derivative there — the instantaneous rate of change.

So when you compute f′(3) = 6, the geometric meaning is: at the point where x = 3, the curve is climbing with the steepness of a line of slope 6.

The formal definition (one honest look)

This is the most technical moment in the whole guide series — take it slowly, and know that everything after it gets easier. The “slide the second point closer” idea is captured with a limit. If the second point is a horizontal distance h away, the secant slope is the change in output over the change in input, and the derivative is what that slope approaches as h shrinks to zero:

f′(x) = limh→0 [f(x + h) − f(x)] / h

Let’s use it once, on f(x) = x², so the definition isn’t just a symbol soup:

[(x + h)² − x²] / h

= [x² + 2xh + h² − x²] / h

= [2xh + h²] / h

= 2x + h

→ 2x  as h → 0

So the derivative of is 2x. At x = 1 the curve has slope 2; at x = 3, slope 6; at x = 0 (the bottom of the parabola), slope 0 — a perfectly flat tangent, which matches the picture. The good news: you will rarely need this limit computation again. The differentiation rules covered in the rest of these guides exist precisely so that derivatives can be found quickly, without returning to the definition every time.

Reading the notation

Two notations for derivatives are in everyday use, and you need to be fluent in both — textbooks, teachers, and exams switch between them freely. They mean exactly the same thing.

Prime notation (Lagrange)

Write a tick mark — a prime — after the function’s name: the derivative of f(x) is f′(x), read aloud as “f prime of x.” If the function is written as y = …, its derivative is y′. Compact and quick — this is the notation you’ll use most when working problems by hand. The second derivative (the derivative of the derivative) gets two primes: f″(x).

Leibniz notation

Write the derivative of y with respect to x as dy/dx, read “dee y, dee x.” It looks like a fraction on purpose: it echoes “change in y over change in x” from the slope idea. You will also see it used as an operator applied to an expression: d/dx[x²] = 2x means “the derivative, with respect to x, of x².” The second derivative is written d²y/dx².

Leibniz notation earns its keep in two situations. First, it names the variable explicitly — if a formula involves t, r, and V at once, dV/dt says unambiguously what is changing with respect to what. Second, it makes advanced techniques like the chain rule and related rates read almost mechanically, which is why later courses lean on it heavily.

MeaningPrimeLeibniz
First derivativef′(x), y′dy/dx, d/dx[f(x)]
Second derivativef″(x), y″d²y/dx²
Evaluated at a pointf′(3)dy/dx | x=3

One warning that will save you confusion later: despite appearances, dy/dx is not a fractiondy and dx are not numbers you can cancel. It is a single symbol for “the derivative of y with respect to x.” (It often behaves like a fraction in useful ways, which is exactly why Leibniz designed it to look like one — but treat that as a happy coincidence, not a license.)

What’s next

From here, learning differentiation is learning the rules: a short list of patterns that together let you differentiate almost any function you will meet, without ever touching the limit definition again. The next guide starts with the most fundamental ones.

Before moving on, try it for yourself: enter x^2 into the derivative calculator and confirm it gives the 2x we derived from the definition above — then try x^3 and see if you can guess the pattern before the answer appears.

Intro to Derivatives: What They Are and How to Read Them | Derivative Calculator