What Is Calculus?
What is calculus? Calculus is the branch of mathematics that studies continuous change: how a quantity varies from one instant to the next, and how many small changes add up over an interval. Ordinary arithmetic and algebra handle fixed quantities and average rates. Calculus handles the instantaneous and the accumulated, the two things that appear the moment anything moves, grows, or bends.
It divides into two branches that answer opposite questions:
Differential calculus asks how fast is this changing right now? Its central object is the derivative, and its geometric meaning is the slope of the tangent line to a curve at a single point.
Integral calculus asks how much has built up in total? Its central object is the integral, and its geometric meaning is the area under a curve between two points.
Underneath both sits a single concept, the limit, which is what lets calculus talk about an instant (a change over zero time) or an exact area (a sum of infinitely many infinitely thin strips) without dividing by zero. The word itself comes from the Latin calculus, a small pebble once used for counting.
What Are The Two Branches Of Calculus?
The two branches are best understood side by side. One takes a whole and finds its rate; the other takes a rate and rebuilds the whole.
Table: The two branches of calculus at a glance.
Feature | Differential calculus | Integral calculus |
|---|---|---|
Central object | The derivative | The integral |
Question it answers | How fast is it changing? | How much has accumulated? |
Geometric meaning | Slope of the tangent line | Area under the curve |
Notation | $\frac{d}{dx}[f(x)]$ | $\int_{a}^{b} f(x),dx$ |
Everyday example | Speed from position | Distance from speed |
Read the last row carefully, because it is the whole subject in miniature. If you know where a car is at every moment, differential calculus gives you its speed. If you know its speed at every moment, integral calculus gives you the distance it covered. The two operations reverse each other, which is exactly what the Fundamental Theorem of Calculus makes precise later on this page.
What Is A Limit, And Why Does Calculus Need It?
A limit describes the value a function approaches as its input approaches some target, written $\lim_{x \to a} f(x)$. Calculus needs it because both a rate "at an instant" and an area "under a curve" are really limits in disguise.
Think about average speed over a time interval: distance divided by time. To get the speed at a single instant, you shrink the interval toward zero. You cannot set the interval to exactly zero, because that would be dividing zero distance by zero time. The limit is the tool that lets you ask "what value is this heading toward as the interval shrinks?" and get a clean, finite answer.
Most limits you meet first are found by direct substitution. For a function with no break at the point,
$$\lim_{x \to 3} (x^2 - 1) = (3)^2 - 1 = 8.$$
The interesting limits are the ones where substitution gives the indeterminate form $\frac{0}{0}$, which is precisely the situation the derivative lives in. Those need algebra first, then the limit, as the next section shows.
How Do You Find A Derivative?
The derivative is the limit of an average rate of change as the interval shrinks to zero. In symbols, for a function $f(x)$,
$$\frac{d}{dx}[f(x)] = \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}.$$
Take $f(x) = x^2$ and work the limit honestly. Plugging $h = 0$ straight in gives $\frac{0}{0}$, so simplify the algebra first, then take the limit:
$$\frac{d}{dx}[x^2] = \lim_{h \to 0} \frac{(x+h)^2 - x^2}{h} = \lim_{h \to 0} \frac{2xh + h^2}{h} = \lim_{h \to 0} (2x + h) = 2x.$$
So the derivative of $x^2$ is $2x$. Geometrically, $2x$ is the slope of the tangent line to the parabola $y = x^2$ at each point: gentle near $x = 0$, steeper as $x$ grows. That pairing, an algebraic rule alongside a geometric picture, is the habit to build for every calculus idea.
For most functions you do not redo the limit each time. A short list of rules (the power rule, product rule, chain rule) does the work, collected on the derivative formulas page.
How Do You Find An Integral?
The integral of a function over an interval is the area between its graph and the horizontal axis. You can picture it as slicing the region into thin vertical strips, adding their areas, and taking the limit as the strips become infinitely thin. The definite integral from $a$ to $b$ is written $\int_{a}^{b} f(x),dx$.
In practice you find it by reversing differentiation. An antiderivative $F(x)$ is a function whose derivative is $f(x)$; the indefinite integral collects all of them and always carries a constant:
$$\int x^{n},dx = \frac{x^{n+1}}{n+1} + C \quad (n \neq -1).$$
Use it to find the area under $y = x^2$ between $0$ and $1$:
$$\int_{0}^{1} x^2,dx = \left[\frac{x^{3}}{3}\right]_{0}^{1} = \frac{1}{3} - 0 = \frac{1}{3}.$$
Final answer: the area is $\frac{1}{3}$ of a square unit. The check is built in: differentiating the antiderivative $\frac{x^3}{3}$ returns $x^2$, the function we started with, so the antiderivative is correct. Fuller technique (substitution, integration by parts) lives on the integration formulas page.
What Is The Fundamental Theorem Of Calculus?
The Fundamental Theorem of Calculus is the bridge between the two branches: it says differentiation and integration undo each other. It comes in two parts, each with a continuity condition that matters.
Part 1 (accumulation then differentiate). If $f$ is continuous on an interval and $g(x) = \int_{a}^{x} f(t),dt$, then $\frac{d}{dx}[g(x)] = f(x)$. Differentiating an accumulated area gives back the original function.
Part 2 (evaluation). If $f$ is continuous on $[a, b]$ and $F$ is any antiderivative of $f$, then $\int_{a}^{b} f(x),dx = F(b) - F(a)$. This is what turns "add up infinitely many strips" into a two-number subtraction.
Here is the theorem doing real work. A car's position is $s(t) = t^2$ metres at time $t$ seconds. Differential calculus gives its speed as $\frac{ds}{dt} = 2t$. Now run integral calculus on that speed to recover the distance travelled between $t = 0$ and $t = 3$:
$$\int_{0}^{3} 2t,dt = \big[t^2\big]_{0}^{3} = 9 - 0 = 9 \text{ metres}.$$
That is exactly $s(3) - s(0) = 9 - 0 = 9$ metres. The distance from the speed matches the change in position, which is the theorem's promise made concrete: the derivative took position to speed, and the integral took speed back to distance.
What Are The Standard Derivative And Integral Rules?
Once the definitions are clear, most day-to-day calculus runs on a small table of standard forms. Every derivative below is the exact inverse of the integral on its row, and each was checked by differentiating the antiderivative back to the original function.
Table: Standard derivative and integral forms (each verified by reversing the other).
Function $f(x)$ | Derivative $\frac{d}{dx}[f(x)]$ | Integral $\int f(x),dx$ |
|---|---|---|
$x^{n}$ | $n,x^{,n-1}$ | $\frac{x^{,n+1}}{n+1} + C ;(n \neq -1)$ |
$\sin x$ | $\cos x$ | $-\cos x + C$ |
$\cos x$ | $-\sin x$ | $\sin x + C$ |
$e^{x}$ | $e^{x}$ | $e^{x} + C$ |
$\dfrac{1}{x}$ | $-\dfrac{1}{x^{2}}$ | $\ln\lvert x\rvert + C$ |
The constant $C$ on every indefinite integral is not decoration. Because the derivative of any constant is zero, infinitely many functions share the same derivative, and the $+C$ records that whole family at once.
Why Does Calculus Work?
Calculus works because a smooth curve, looked at closely enough, is almost a straight line, and a curved region, sliced finely enough, is almost a stack of rectangles. The limit is what makes "almost" exact.
Zooming in straightens a curve. Near any point, a differentiable function looks linear, and the slope of that tiny straight piece is the derivative. This is why a derivative can describe an instant even though motion happens over time.
Slicing thin fills an area. A region under a curve is trapped between rectangles that are too small and rectangles that are too big; as the slices narrow, both estimates squeeze toward one number, and that number is the integral.
The two are mirror images. Building area up and reading a slope off are inverse motions, which is why an antiderivative computes an area at all. This is the deep reason the Fundamental Theorem holds rather than being a lucky coincidence.
Because these ideas rely only on functions behaving predictably up close, calculus applies to anything that changes smoothly, from exponents and logarithmic functions to the paths of planets. The subject is not a bag of tricks; it is one idea (the limit) applied to two questions (rate and total).
Who Invented Calculus?
Pieces of calculus were found and lost for two thousand years before it became a single subject. The ancient Greek mathematician Archimedes summed infinitely many slices to find areas and volumes, and centuries later Bonaventura Cavalieri, Pierre de Fermat, and the astronomer-mathematician Madhava of Sangamagrama in India each pushed part of the idea forward. What was missing was a unified system with a symbolic language.
Where Is Calculus Used In The Real World?
Calculus is the working language of any field where things change or accumulate, which is nearly all of them.
Physics and engineering: velocity and acceleration are derivatives of position; the work done by a varying force is an integral. Bridges, circuits, and rockets are designed with both.
Economics: marginal cost and marginal revenue are derivatives, telling a business how profit changes with one more unit; total cost over a range is an integral.
Biology and medicine: population growth, the spread of a disease, and how a drug concentration rises and falls over time are all modelled with rates of change.
Computer graphics and machine learning: smooth curves and surfaces are defined with calculus, and training a model works by following derivatives (gradient descent) downhill to reduce error.
Signal processing: integrals decompose sound and images into component frequencies, the math behind audio compression and medical scans.
One subject, built from a rate and a total, quietly runs the machines, markets, and models around you. That reach is why calculus sits at the gateway of almost every science and engineering degree.
What Are The Most Common Mistakes With Calculus?
These errors are the ones documented again and again in student-error studies and calculus "pitfalls" guides, and echoed in r/learnmath threads where the recurring lesson is that many "calculus" mistakes are really algebra slips.
Forgetting the $+C$ on an indefinite integral.
Where it slips in:
A student integrates $2x$, writes $x^2$, and moves on, treating the indefinite integral as if it had one answer.
Don't do this:
Do not leave off the constant. Every indefinite integral stands for a whole family of functions that differ by a constant.
The correct way:
Write $\int 2x,dx = x^2 + C$. Include $C$ every time, and solve for its value only when an initial condition is given.
Dropping the inner derivative in the chain rule.
Where it slips in:
Differentiating $\sin(3x)$, a student writes $\cos(3x)$ and stops, forgetting the derivative of the inside.
Don't do this:
Do not differentiate only the outer function. A composed function carries the derivative of its inner part as a factor.
The correct way:
Differentiate outside then inside and multiply: $\frac{d}{dx}[\sin(3x)] = \cos(3x)\cdot 3 = 3\cos(3x)$.
Stopping at $\frac{0}{0}$ when evaluating a limit.
Where it slips in:
A student substitutes into a limit, gets $\frac{0}{0}$, and writes "undefined," when the indeterminate form is a signal to simplify, not to quit.
Don't do this:
Do not read $\frac{0}{0}$ as a final answer. It means the algebra is not finished.
The correct way:
Factor, cancel, or rationalise first, then take the limit, exactly as the derivative of $x^2$ needed $\frac{2xh+h^2}{h}$ simplified to $2x+h$ before letting $h \to 0$.
Confusing which branch answers which question.
Where it slips in:
Asked for a total distance from a speed, a student differentiates; asked for a rate, they integrate.
Don't do this:
Do not reach for the derivative when the question asks "how much in total," or the integral when it asks "how fast."
The correct way:
Match the verb to the branch: "rate," "slope," "how fast," or "at this instant" means differentiate; "total," "area," "accumulated," or "how much" means integrate.
Practice Problems On Calculus
Work each one, then check against the answer. Every answer here was verified by reversing the operation.
Differentiate $f(x) = x^3$.
(Answer: $\frac{d}{dx}[x^3] = 3x^2$.)Evaluate $\int_{0}^{2} x,dx$.
(Answer: $\left[\frac{x^2}{2}\right]_0^2 = 2$.)A ball's height is $h(t) = 5t^2$. Find its velocity at $t = 2$.
(Answer: $\frac{dh}{dt} = 10t$, so $v(2) = 20$ units/second.)Evaluate $\lim_{x \to 3} (x^2 - 1)$.
(Answer: $8$, by direct substitution since the function is continuous.)Find $\int (3x^2 + 2),dx$.
(Answer: $x^3 + 2x + C$.)Differentiate $g(x) = \sin x + x$.
(Answer: $\cos x + 1$.)
Where Should You Go Next After Calculus?
Once the big picture is clear, go deeper one door at a time.
Calculus terms glossary. Lock down the vocabulary (limit, derivative, integral, continuity) so later reading moves faster.
Derivative formulas. Move from the limit definition to the working rules: power, product, quotient, and chain.
Integration formulas. Build the toolkit for areas and totals, including substitution and integration by parts.
AP Calculus AB vs BC. For parents mapping the road ahead, a plain comparison of the two exam tracks and what each covers.
If your child is starting calculus, a live Bhanzu trainer teaches it from the "why" first, the rate and the total behind every formula, inside the structured Bhanzu math classes.
Was this article helpful?
Your feedback helps us write better content
