What is Calculus? Definition, Branches, Examples

#Math Terms
TL;DR
Calculus is the branch of mathematics that studies continuous change — how quantities change over time, or how shapes accumulate area or volume. It has two main branches: differential calculus and integral calculus. The two are connected by the Fundamental Theorem of Calculus.
BT
Bhanzu TeamLast updated on May 16, 20267 min read

What Is Calculus?

Calculus is the mathematical study of continuous change. Where arithmetic counts and algebra describes static relationships, calculus describes things that vary smoothly — the rate of a falling object, the area under a curve, the optimal point on a function.

Calculus has two complementary branches:

  1. Differential calculus — the math of instantaneous rates of change (how fast something is changing at a given moment). The key object: the derivative, written $\frac{dy}{dx}$ or $f'(x)$.

  2. Integral calculus — the math of accumulation (the total amount that change adds up to). The key object: the integral, written $\int f(x), dx$.

The Fundamental Theorem of Calculus says these two operations are inverses of each other — like multiplication and division, or addition and subtraction, but for the continuous world.

What Are the Two Branches of Calculus?

Differential Calculus

Differential calculus answers: how fast is this function changing at a specific point?

The derivative $f'(x)$ measures the slope of the tangent line to $f$ at $x$. For $f(x) = x^2$:

$$f'(x) = 2x$$

So at $x = 3$, the slope is 6 — the function rises 6 units of $y$ for every 1 unit of $x$ change at that exact point.

Real-world interpretation: If $f(t)$ is the position of a car at time $t$, then $f'(t)$ is its instantaneous velocity. If $f(t)$ is velocity, $f'(t)$ is acceleration.

Integral Calculus

Integral calculus answers: how much has the function accumulated between two points?

The definite integral $\int_a^b f(x), dx$ measures the area under $f$ between $x = a$ and $x = b$. For $f(x) = x^2$:

$$\int_0^2 x^2 , dx = \frac{x^3}{3}\Big|_0^2 = \frac{8}{3}$$

Real-world interpretation: If $f(t)$ is velocity, $\int_0^T f(t), dt$ is the total distance travelled between time 0 and time T. If $f(t)$ is a rate of water flow, the integral is the total water that flowed.

The Fundamental Theorem of Calculus

$$\frac{d}{dx}\int_a^x f(t), dt = f(x)$$

The derivative of an accumulated integral gives back the original function. This is the bridge between the two branches — differentiation and integration are inverse operations.

How Do You Find a Derivative?

The derivative of $f(x)$ at point $x$ is the limit of the average rate of change as the interval shrinks to zero:

$$f'(x) = \lim_{h \to 0} \frac{f(x + h) - f(x)}{h}$$

Standard derivative rules:

  • $\frac{d}{dx}(c) = 0$ — constant rule

  • $\frac{d}{dx}(x^n) = n x^{n-1}$ — power rule

  • $\frac{d}{dx}(\sin x) = \cos x$

  • $\frac{d}{dx}(\cos x) = -\sin x$

  • $\frac{d}{dx}(e^x) = e^x$

  • $\frac{d}{dx}(\ln x) = \frac{1}{x}$

Worked example. Find the derivative of $f(x) = 3x^4 + 2x^2 - 5x + 7$.

$$f'(x) = 12x^3 + 4x - 5$$

How Do You Find an Integral?

The integral $\int f(x), dx$ "undoes" the derivative. Standard rules:

  • $\int c , dx = cx + C$ — constant rule

  • $\int x^n , dx = \frac{x^{n+1}}{n+1} + C$ (for $n \neq -1$) — power rule

  • $\int \sin x , dx = -\cos x + C$

  • $\int \cos x , dx = \sin x + C$

  • $\int e^x , dx = e^x + C$

  • $\int \frac{1}{x}, dx = \ln|x| + C$

The $+ C$ is the constant of integration — every antiderivative has an undetermined constant because the derivative of any constant is zero.

Worked example. $\int (6x + 2), dx = 3x^2 + 2x + C$.

Why Was Calculus Invented? (The Real-World GROUND)

"We have no doubt, however, in deciding that the inventor of calculus is to be sought among the very great mathematicians: Newton and Leibniz." — Augustus De Morgan, 1872.

Calculus was invented for a specific reason: the laws of physics demanded a math of continuous change, and the math available in 1670 couldn't deliver.

In the 1660s, Isaac Newton at Cambridge developed what he called "the method of fluxions" to describe planetary motion and the falling of an apple under gravity. Independently and almost simultaneously, Gottfried Wilhelm Leibniz in Germany developed the same math with different notation — and much better notation, which is what's used today.

Newton applied calculus to physics; Leibniz gave us the symbols ($\int$, $\frac{dy}{dx}$, $dx$, $d$). The two became embroiled in a bitter priority dispute that lasted decades — Newton's followers accused Leibniz of plagiarism; Leibniz's followers said Newton had stolen Leibniz's ideas. Modern historians credit both as independent co-inventors.

What calculus enabled:

  • Physics — every classical mechanics result. Newton's laws of motion, gravitational orbits, electromagnetic waves (Maxwell's equations), thermodynamics — all use calculus.

  • Engineering. Stress analysis on bridges, aerodynamic lift, electrical circuit design, control systems — all calculus.

  • Economics. Marginal cost and revenue, optimization of profit, supply-demand curves — calculus.

  • Statistics. The normal distribution's bell curve has area exactly 1 under it — proved by calculus.

  • Machine learning. Gradient descent — the algorithm that trains every neural network — minimizes a loss function by computing derivatives.

  • Medicine. Drug pharmacokinetics (how drug concentration changes over time), MRI image reconstruction.

  • Computer graphics. Smooth curves and surfaces in 3D modelling, animation, and CGI rely on differential geometry — built on calculus.

Without calculus, smartphones, satellites, and most modern engineering would be impossible.

A Worked Example

A car's position is given by $s(t) = 5t^2 + 2t$. What is its velocity at $t = 3$ seconds?

The intuitive (wrong) approach. A student plugs $t = 3$ into the position formula:

$$v(3) \stackrel{?}{=} s(3) = 5(9) + 2(3) = 51 \text{ m/s}$$

That's the position at $t = 3$, not the velocity.

Why it fails. Velocity is the rate of change of position — the derivative of $s(t)$, not $s(t)$ itself.

The correct method.

Step 1: Find the derivative.

$$v(t) = s'(t) = 10t + 2$$

Step 2: Evaluate at $t = 3$.

$$v(3) = 10(3) + 2 = 32 \text{ m/s}$$

Check. Velocity at $t = 3$ is 32 m/s, not 51. The wrong answer is the position (51 m), not the speed.

At Bhanzu, our trainers walk through this wrong-path-first sequence intentionally — confusing position and velocity is the most common archetype for early calculus students. Once a student feels the distinction, the derivative-as-rate-of-change interpretation sticks.

What Are the Most Common Mistakes With Calculus?

Mistake 1: Confusing $f(x)$ and $f'(x)$

Where it slips in: Computing the function value when the question asks for the derivative (or vice versa).

Don't do this: Answering with $s(3) = 51$ when asked for $s'(3)$.

The correct way: Always reread the question: derivative or function value? They are different objects. The function tells you position; the derivative tells you rate of change.

Mistake 2: Forgetting the +C in indefinite integrals

Where it slips in: $\int 2x , dx = x^2 + C$. Students often skip the +C.

Don't do this: $\int 2x , dx = x^2$.

The correct way: Always include the constant of integration on indefinite integrals. Every antiderivative differs by a constant — the integration constant captures this. (Definite integrals don't need it because the constants cancel.)

Mistake 3: Misapplying the power rule for $n = -1$

Where it slips in: $\int x^{-1}, dx \neq \frac{x^0}{0}$.

Don't do this: Use the power rule when $n = -1$.

The correct way: The power rule $\int x^n, dx = \frac{x^{n+1}}{n+1}$ fails when $n = -1$ (division by zero). The special case: $\int \frac{1}{x}, dx = \ln|x| + C$.

The Mathematicians Who Shaped Calculus

Isaac Newton (1643–1727, England) — Developed his "method of fluxions" in the 1660s. Used calculus to derive his three laws of motion and the law of universal gravitation in Principia Mathematica (1687).

Gottfried Wilhelm Leibniz (1646–1716, Germany) — Independently developed calculus in the 1670s with the notation ($\int$, $\frac{dy}{dx}$, $dx$) that's still used today. The Leibniz notation is what made calculus practical to teach and apply.

Archimedes of Syracuse (287–212 BCE, Greek Sicily) — Anticipated calculus by 2,000 years with his "method of exhaustion" for computing areas. Effectively performed integration without the modern formalism.

Augustin-Louis Cauchy (1789–1857, France) — Put calculus on rigorous footing in the 1820s with the modern definition of limit, making derivative and integral mathematically precise rather than intuitive.

A Practical Next Step

Try these three before going deeper into calculus.

  1. Find the derivative of $f(x) = 5x^3 - 2x + 7$.

  2. Find $\int (4x^2 + 1), dx$.

  3. A particle's position is $s(t) = 3t^2 - 6t$. Find its velocity and acceleration at $t = 2$.

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What is calculus in simple words?
Calculus is the math of continuous change. It has two parts: differential calculus (how fast something is changing right now) and integral calculus (how much something has changed in total over a period). Newton and Leibniz invented it in the 1600s.
What are the two branches of calculus?
Differential calculus (study of derivatives — instantaneous rates of change) and integral calculus (study of integrals — accumulated change). They are linked by the Fundamental Theorem of Calculus.
Who invented calculus?
Isaac Newton and Gottfried Leibniz, independently and at roughly the same time in the late 17th century. Newton (1660s) gave us the physical applications; Leibniz (1670s) gave us the notation that's still used.
What is the fundamental theorem of calculus?
The two branches are inverses: differentiating an integral returns the original function. Symbolically: $\frac{d}{dx}\int_a^x f(t), dt = f(x)$. This is what makes calculus a unified theory rather than two separate topics.
What is a derivative?
The derivative of $f(x)$ at a point is the slope of the line tangent to $f$ at that point — equivalently, the instantaneous rate of change of $f$. Written $f'(x)$ or $\frac{dy}{dx}$.
What is an integral?
The integral of $f(x)$ between two points $a$ and $b$ is the area under the curve of $f$ between $a$ and $b$. Written $\int_a^b f(x), dx$. Indefinite integrals (with no bounds) represent antiderivatives — functions whose derivative is $f$.
Where is calculus used in real life?
Physics, engineering, economics, statistics, machine learning, medicine, computer graphics, weather prediction, signal processing, financial modeling, and pharmacology. Anywhere quantities change continuously and matter, calculus is the tool.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →