• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Calculus From Limits to Mastery

Calnzee

Think Calculus. Learn Calculus. Live Calculus

  • Home
  • Articles
  • Trending
  • Terms
    • Privacy
    • Disclaimer
  • Support
  • Subscribe
  • Contact

Archives for August 2026

Area Between Two Curves: Moving Beyond the Area Under a Curve

August 15, 2026 by Splendid Leave a Comment

One of the first applications of integration is finding the area under a curve.

If a function is:

y=f(x)

then the area between the curve and the x-axis can be calculated using:

\int_a^b f(x),dx

This idea is powerful, but many real-world problems involve two changing quantities rather than one.

For example:

  • How much profit remains after costs are subtracted from revenue?
  • How much more efficient is one manufacturing process than another?
  • How much consumer benefit exists beyond the market price?
  • How much faster is one vehicle than another over time?

These questions compare two functions.

This leads to one of the most useful applications of integration:

Finding the area between two curves.


Starting with a simple picture

Suppose we have two functions:

y=f(x)

and

y=g(x)

The shaded region lies between them.

Instead of measuring the distance from the x-axis to a curve, we measure the distance from one curve to another.


The fundamental idea

At any value of x, the vertical distance between the curves is:

f(x)-g(x)

If we add all these tiny vertical distances between a and b, we obtain the total enclosed area.

Therefore:

\boxed{\text{Area}=\int_a^b[f(x)-g(x)],dx}

The upper function always comes first.

The lower function is always subtracted.


Example 1: A parabola and a straight line

Suppose:

f(x)=x+2

and

g(x)=x^2

between:

x=0

and

x=2

The area is:

\int_0^2[(x+2)-x^2],dx

Simplifying:

=\int_0^2(x+2-x^2),dx

Integrating:

=\left(\frac{x^2}{2}+2x-\frac{x^3}{3}\right)_0^2

Evaluating:

=\left(2+4-\frac{8}{3}\right)-0

Therefore:

=\frac{10}{3}

Why subtract the curves?

Think of two runners.

The upper curve represents Runner A.

The lower curve represents Runner B.

The difference:

f(x)-g(x)

tells us how much farther Runner A is ahead at each instant.

Integration adds those differences over an interval.


A business example

Suppose:

Revenue:

R(q)=100q

Cost:

C(q)=20q+0.5q^2

Profit is the difference:

P(q)=R(q)-C(q)

Therefore:

P(q)=80q-0.5q^2

Integration allows us to calculate accumulated profit over a production interval.

The mathematics is identical to finding the area between two curves.


Consumer surplus

Economists frequently use the area between curves.

Suppose:

Demand:

P_d=100-Q

Market price:

P=40

Consumer surplus is:

\int_0^{60}[(100-Q)-40],dQ

The shaded area represents the additional value consumers receive beyond the market price.


A physics example

Suppose two cars travel according to different velocity functions.

The difference:

v_1(t)-v_2(t)

measures the speed advantage at every instant.

Integrating that difference tells us the total advantage accumulated over time.


The key insight

Finding the area under one curve measures accumulation.

Finding the area between two curves measures comparative accumulation.

Instead of asking:

How much?

we ask:

How much more?


Conclusion

The area between two curves extends one of the most important ideas in calculus.

Integration no longer measures a quantity relative to zero.

Instead, it measures the accumulated difference between two changing quantities.

This simple idea lies behind profit analysis, consumer surplus, engineering optimization, and many other real-world applications.

Filed Under: Articles, Differential Calculus Tagged With: area between curves

Integration by Parts: Reversing the Product Rule

August 14, 2026 by Splendid Leave a Comment

After learning the product rule in differentiation, a natural question arises:

If differentiation has a product rule, does integration have a reverse process?

The answer is yes.

That reverse process is called integration by parts.

At first, the method may appear to be another formula that must be memorized. However, just as substitution is the reverse of the chain rule, integration by parts is simply the product rule running backward.

Once this connection becomes clear, the technique becomes much easier to understand.


Revisiting the product rule

Suppose we have two functions:

u(x)

and

v(x)

The product rule states:

\frac{d}{dx}(uv)=u\frac{dv}{dx}+v\frac{du}{dx}

Or, more compactly:

\boxed{(uv)'=uv'+vu'}

This formula tells us how to differentiate the product of two functions.


Turning the product rule around

Rewrite the product rule:

d(uv)=u,dv+v,du

Now rearrange it:

u,dv=d(uv)-v,du

Integrate both sides:

\int u,dv=\int d(uv)-\int v,du

The first integral is straightforward:

\int d(uv)=uv

Therefore:

\boxed{\int u,dv=uv-\int v,du}

This is the integration-by-parts formula.


What does the formula mean?

Integration by parts doesn’t magically solve difficult integrals.

Instead, it transforms one integral into another.

We exchange a complicated integral for one that is hopefully easier.

The strategy is simple:

  1. Separate the integrand into two parts.
  2. Choose one part to become u.
  3. Choose the remaining part to become dv.
  4. Differentiate u.
  5. Integrate dv.
  6. Apply the formula.

Why would we ever do this?

Consider:

\int xe^x,dx

Neither the power rule nor substitution seems helpful.

The problem contains two different kinds of functions:

  • A polynomial:
x
  • An exponential function:
e^x

Integration by parts allows us to simplify the product.


Example 1: Integrating xe^x

Choose:

u=x

Then:

du=dx

Choose:

dv=e^x,dx

Integrate:

v=e^x

Apply the formula:

\int xe^x,dx=xe^x-\int e^x,dx

Evaluate the remaining integral:

=xe^x-e^x+C

Factor:

\boxed{\int xe^x,dx=e^x(x-1)+C}

How do we choose u?

This is one of the biggest challenges.

A useful guideline is the LIATE rule.

Choose u according to the following priority:

PriorityFunction type
LLogarithmic
IInverse trigonometric
AAlgebraic
TTrigonometric
EExponential

Functions near the top usually become u.

Functions near the bottom usually become dv.


Example 2: Integrating x\sin x

Choose:

u=x

Then:

du=dx

Choose:

dv=\sin x,dx

Integrate:

v=-\cos x

Apply the formula:

\int x\sin x,dx=-x\cos x+\int\cos x,dx

Evaluate:

\boxed{\int x\sin x,dx=-x\cos x+\sin x+C}

Example 3: Integrating \ln x

How do we integrate a logarithm?

Rewrite the integral:

\int\ln x,dx=\int1\cdot\ln x,dx

Choose:

u=\ln x

Then:

du=\frac1x,dx

Choose:

dv=dx

Integrate:

v=x

Apply the formula:

\int\ln x,dx=x\ln x-\int1,dx

Therefore:

\boxed{\int\ln x,dx=x\ln x-x+C}

Without integration by parts, this integral would be difficult to evaluate.


A geometric interpretation

Think of two people carrying a heavy object.

One person represents:

u

The other represents:

dv

Instead of carrying the entire load simultaneously, one person transfers part of the load to the other.

The work is redistributed.

Integration by parts does exactly the same thing.

It redistributes mathematical complexity.


A business example

Suppose a company’s advertising expenditure is:

A(t)=t

and customer engagement grows exponentially:

E(t)=e^t

Total accumulated impact can be modeled by:

\int te^t,dt

Applying integration by parts:

=e^t(t-1)+C

The technique allows us to analyze interactions between two different growth processes.


A physics example

Suppose force changes according to:

F(t)=t\sin t

Total work can be calculated using:

\int t\sin t,dt

Again, integration by parts provides a solution.

Physics often involves products of multiple changing quantities.

This makes integration by parts an essential tool.


Integration by substitution versus integration by parts

TechniqueReverse of
SubstitutionChain rule
Integration by partsProduct rule

Substitution simplifies nested functions.

Integration by parts simplifies products.


A simple checklist

Whenever you encounter a difficult integral:

Ask Question 1:

Is one function contained inside another?

If yes, try substitution.


Ask Question 2:

Are two functions multiplied together?

If yes, try integration by parts.


The deeper philosophical idea

Differentiation breaks mathematical objects into smaller pieces.

Integration reconstructs them.

Substitution reconstructs composite functions.

Integration by parts reconstructs products.

Both techniques reveal the beautiful symmetry hidden within calculus.


The formula you should remember

Instead of memorizing:

\int u,dv=uv-\int v,du

remember the product rule:

\frac{d}{dx}(uv)=uv'+vu'

The integration formula emerges naturally.


Conclusion

Integration by parts is not an isolated technique.

It is the product rule running backward.

Whenever two functions are multiplied together, integration by parts allows us to transfer complexity from one function to another.

Perhaps the simplest way to summarize the idea is this:

The product rule takes a product apart.

Integration by parts puts the product back together.

Understanding this relationship transforms integration by parts from a memorized formula into a powerful and intuitive mathematical tool.

Filed Under: Articles, Integral Calculus

Integration by Substitution: Reversing the Chain Rule

August 14, 2026 by Splendid Leave a Comment

After learning the chain rule in differentiation, many students discover a surprising fact:

The chain rule not only helps us differentiate complicated functions, but it also teaches us how to integrate them.

This idea leads to one of the most powerful techniques in calculus:

Integration by substitution.

At first, substitution appears to be another formula that must be memorized.

In reality, it is simply the process of reversing the chain rule.

Understanding this connection makes substitution feel natural rather than mechanical.


Revisiting the chain rule

Suppose we have the function:

y=(x^2+1)^5

The chain rule tells us:

\frac{dy}{dx}=5(x^2+1)^4(2x)

Notice what happened.

The derivative contains two parts:

  • The derivative of the outer function:
5(x^2+1)^4
  • The derivative of the inner function:
2x

The chain rule combines them.


Running the chain rule backward

Now suppose we want to evaluate:

\int5(x^2+1)^4(2x),dx

Instead of asking:

How do I integrate this?

Ask a different question:

Which function would produce this expression if I differentiated it?

We already know the answer.

Differentiating produces:

5(x^2+1)^4(2x)

Therefore:

\int5(x^2+1)^4(2x),dx=(x^2+1)^5+C

Integration by substitution is simply the reverse of the chain rule.


Why do we need substitution?

Simple functions are easy to integrate.

For example:

\int x^3,dx

can be evaluated directly.

But consider:

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

The ordinary power rule doesn’t work.

The expression contains one function nested inside another.

This is exactly the situation where substitution becomes useful.


The basic idea

Suppose we have:

\int f(g(x))g'(x),dx

We define a new variable:

u=g(x)

Differentiating gives:

\frac{du}{dx}=g'(x)

Therefore:

du=g'(x),dx

The integral becomes:

\int f(u),du

After integrating, we replace u with the original expression.

This process is called u-substitution.


Example 1: A simple substitution

Evaluate:

\int2x(x^2+1)^3,dx

Step 1: Choose a substitution

Let:

u=x^2+1

Step 2: Differentiate

Differentiate both sides:

du=2x,dx

Step 3: Rewrite the integral

Substitute:

u=x^2+1

and

du=2x,dx

The integral becomes:

\int u^3,du

Step 4: Integrate

Using the power rule:

\int u^3,du=\frac{u^4}{4}+C

Step 5: Replace the variable

Substitute the original expression:

=\frac{(x^2+1)^4}{4}+C

Why does this work?

Substitution works because it temporarily hides the complicated expression.

Instead of integrating:

2x(x^2+1)^3

we integrate:

u^3

We simplify the problem and then translate the answer back into the original language.


Example 2: An exponential function

Evaluate:

\int e^{3x},dx

Choose:

u=3x

Differentiate:

du=3,dx

Therefore:

dx=\frac{du}{3}

Substitute:

\int e^{3x},dx=\int e^u\frac{du}{3}

Move the constant outside:

=\frac13\int e^u,du

Integrate:

=\frac13e^u+C

Replace u:

=\frac13e^{3x}+C

Example 3: A trigonometric function

Evaluate:

\int\sin(5x),dx

Choose:

u=5x

Differentiate:

du=5,dx

Therefore:

dx=\frac{du}{5}

Rewrite:

\int\sin(5x),dx=\frac15\int\sin(u),du

Integrate:

=-\frac15\cos(u)+C

Replace u:

=-\frac15\cos(5x)+C

A geometric interpretation

Imagine a complicated machine.

The machine receives:

x

The first stage transforms it into:

x^2+1

The second stage raises it to a power.

Differentiation follows the entire journey through the machine.

Integration by substitution temporarily enters the machine and focuses on one stage at a time.

Instead of analyzing every component simultaneously, we isolate the important transformation.


A business example

Suppose a company’s customer acquisition rate is:

r(t)=2t(t^2+100)^2

The total number of acquired customers is:

\int2t(t^2+100)^2,dt

Choose:

u=t^2+100

Then:

du=2t,dt

The integral becomes:

\int u^2,du

Integrating:

=\frac{u^3}{3}+C

Returning to the original variable:

=\frac{(t^2+100)^3}{3}+C

Substitution allows us to reconstruct the accumulated number of customers.


How to recognize when substitution should be used

Look for these patterns:

  • A function inside another function.
  • An expression raised to a power.
  • Exponential functions such as:
e^{g(x)}
  • Trigonometric functions such as:
\sin(g(x))
  • A derivative that almost appears elsewhere in the integral.

A simple checklist

When solving an integral:

Step 1: Find the inner function.

Step 2: Let the inner function become u.

Step 3: Differentiate to obtain du.

Step 4: Rewrite the integral.

Step 5: Integrate.

Step 6: Replace u with the original expression.


The connection between differentiation and integration

The relationship can be summarized as follows:

Chain rule:

\frac{d}{dx}[f(g(x))]=f'(g(x))g'(x)

Substitution:

\int f'(g(x))g'(x),dx=f(g(x))+C

The two formulas are mirror images of one another.


Conclusion

Integration by substitution is not a new idea.

It is simply the chain rule running in reverse.

Differentiation breaks a complicated function into smaller pieces.

Integration reconstructs those pieces and combines them into an accumulated quantity.

Perhaps the easiest way to remember substitution is this:

The chain rule takes a composite function apart.

Substitution puts the composite function back together.

Understanding this relationship transforms substitution from a memorized technique into an intuitive mathematical process.

Filed Under: Articles, Integral Calculus Tagged With: chain rule, integration by substitution

The Basic Rules of Integration: Understanding the Logic Behind the Formulas Instead of Memorizing Them

August 13, 2026 by Splendid Leave a Comment

Many students learn integration by memorizing formulas.

They remember rules such as:

\int x^n,dx=\frac{x^{n+1}}{n+1}+C

or

\int(f(x)+g(x)),dx=\int f(x),dx+\int g(x),dx

Unfortunately, memorization often makes integration seem mysterious.

Why do we increase the exponent by one?

Why can a constant be moved outside the integral?

Why can an expression be split into separate terms?

The answer is surprisingly simple.

Every basic integration rule follows from one fundamental principle:

Integration reconstructs an accumulated quantity from its rate of change.

If differentiation tells us how quickly something changes, integration tells us how much has accumulated.

Once we understand this idea, the rules become much easier to remember.


Integration is the reverse of differentiation

Suppose we begin with the function:

y=x^3

Differentiating gives:

\frac{dy}{dx}=3x^2

Integration simply reverses this process.

Therefore:

\int3x^2,dx=x^3+C

Think of differentiation as taking a completed building apart, brick by brick.

Integration performs the opposite task.

It reconstructs the building.


The constant rule

Consider:

\int5,dx

Ask yourself:

Which function has a derivative equal to 5?

We know that:

\frac{d}{dx}(5x)=5

Therefore:

\boxed{\int5,dx=5x+C}

Intuition

Imagine a machine producing five products every hour.

After one hour, five products have been produced.

After two hours, ten products have been produced.

After three hours, fifteen products have been produced.

The accumulated quantity grows linearly.

Integration simply reconstructs that accumulated growth.


The power rule

The power rule is the most important rule in elementary integration.

Consider:

\int x^2,dx

Instead of memorizing a formula, ask:

Which function differentiates into x^2?

We know:

\frac{d}{dx}(x^3)=3x^2

We’re close, but not quite there.

Differentiation introduced an extra factor of 3.

Therefore, we divide by 3.

\frac{d}{dx}\left(\frac{x^3}{3}\right)=x^2

Therefore:

\int x^2,dx=\frac{x^3}{3}+C

The general power rule

Suppose we want to integrate:

\int x^n,dx

Differentiation tells us:

\frac{d}{dx}(x^{n+1})=(n+1)x^n

To reverse differentiation, we divide by the new exponent.

Therefore:

\boxed{\int x^n,dx=\frac{x^{n+1}}{n+1}+C,\qquad n\neq-1}

The hidden pattern

Differentiation:

  • Multiply by the exponent.
  • Reduce the exponent by one.

Integration:

  • Increase the exponent by one.
  • Divide by the new exponent.
DifferentiationIntegration
x^5\rightarrow5x^4x^4\rightarrow\frac{x^5}{5}
x^4\rightarrow4x^3x^3\rightarrow\frac{x^4}{4}
x^3\rightarrow3x^2x^2\rightarrow\frac{x^3}{3}

Integration simply runs differentiation backward.


The special case of \frac{1}{x}

Suppose:

\int\frac{1}{x},dx

Substituting n=-1 into the power rule gives:

\int x^{-1},dx=\frac{x^0}{0}

Division by zero is impossible.

The power rule breaks down.

Instead, we ask:

Which function differentiates into \frac{1}{x}?

The answer is:

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

Therefore:

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

The constant multiple rule

Consider:

\int7x^3,dx

The constant 7 doesn’t affect the integration process.

We simply move it outside:

\int7x^3,dx=7\int x^3,dx

Applying the power rule:

=7\left(\frac{x^4}{4}\right)+C

Therefore:

\boxed{\int cf(x),dx=c\int f(x),dx}

Intuition

Suppose one factory produces ten products per hour.

Five identical factories produce fifty products per hour.

The accumulated production simply scales by a factor of five.

The constant only changes the scale.

It doesn’t change the nature of the accumulation.


The sum rule

Suppose:

\int(x^2+x),dx

We can separate the expression:

\int(x^2+x),dx=\int x^2,dx+\int x,dx

Applying the power rule:

=\frac{x^3}{3}+\frac{x^2}{2}+C

Therefore:

\boxed{\int(f(x)+g(x)),dx=\int f(x),dx+\int g(x),dx}

Intuition

Imagine two pipes filling a tank.

The first pipe contributes:

x^2

liters per minute.

The second pipe contributes:

x

liters per minute.

The total flow rate is:

x^2+x

The total accumulated water must equal:

  • Water from the first pipe.

plus

  • Water from the second pipe.

Accumulation is additive.


The difference rule

Subtraction follows exactly the same logic.

Consider:

\int(x^3-x),dx

Split the integral:

=\int x^3,dx-\int x,dx

Applying the power rule:

=\frac{x^4}{4}-\frac{x^2}{2}+C

Therefore:

\boxed{\int(f(x)-g(x)),dx=\int f(x),dx-\int g(x),dx}

Combining the rules

Most integrals use several rules simultaneously.

Consider:

\int(3x^4+5x^2-8),dx

Apply the sum rule:

=\int3x^4,dx+\int5x^2,dx-\int8,dx

Move the constants outside:

=3\int x^4,dx+5\int x^2,dx-8\int dx

Apply the power rule:

=3\left(\frac{x^5}{5}\right)+5\left(\frac{x^3}{3}\right)-8x+C

Therefore:

\boxed{\int(3x^4+5x^2-8),dx=\frac{3x^5}{5}+\frac{5x^3}{3}-8x+C}

A business example

Suppose a company’s marginal cost is:

MC(q)=50+4q

Marginal cost measures the rate at which costs increase.

To reconstruct total cost, we integrate:

C(q)=\int(50+4q),dq

Therefore:

C(q)=50q+2q^2+C

Integration allows economists to reconstruct total cost from marginal cost.


A physics example

Suppose acceleration is:

a(t)=6t

Integrating once gives velocity:

v(t)=\int6t,dt=3t^2+C

Integrating again gives position.

Physics constantly moves between rates and accumulated quantities.

Acceleration becomes velocity.

Velocity becomes position.

Each step requires integration.


The integration toolbox

RuleFormula
Constant rule\int c,dx=cx+C
Power rule\int x^n,dx=\frac{x^{n+1}}{n+1}+C
Reciprocal rule
\int\frac1x,dx=\ln</td> </tr> <tr> <td>Constant multiple rule</td> <td>[latex]\int cf(x),dx=c\int f(x),dx

Sum rule \int(f+g),dx=\int f,dx+\int g,dx Difference rule \int(f-g),dx=\int f,dx-\int g,dx


The most important lesson

Don't ask:

Which formula should I memorize?

Ask:

Which accumulated quantity would produce this rate of change?

That single question turns integration into a process of reasoning rather than memorization.


Conclusion

The basic rules of integration are not arbitrary formulas.

They arise naturally from the idea that integration reconstructs accumulated quantities from rates of change.

Increase the exponent.

Divide by the new exponent.

Separate sums into individual terms.

Scale constants independently.

Everything follows from these simple principles.

Perhaps the best way to summarize integration is this:

Differentiation converts a quantity into its growth rate.

Integration converts a growth rate back into an accumulated quantity.

Filed Under: Articles, Differential Calculus

From Growth Rate to Accumulated Quantity: Understanding Why x² Is the Total Amount and 2x Is Its Rate of Change

August 13, 2026 by Splendid Leave a Comment

One of the most beautiful ideas in calculus can be expressed through a very simple example.

Consider the function:

A(x)=x^2

Differentiating gives:

\frac{dA}{dx}=2x

At first glance, this seems like an ordinary calculus exercise.

But hidden inside these two equations is a profound relationship between growth and accumulation.

One way to interpret these equations is:

«x^2 represents the accumulated quantity.»

«2x represents the rate at which that quantity is growing.»

This simple observation provides an intuitive way to understand both differentiation and integration.


Starting with the area of a square

Imagine a square whose side length is:

x

The area of the square is:

A(x)=x^2

As the side length increases, the area also increases.

If the side length doubles, the area doesn’t merely double.

The area grows much faster.

Let’s look at a few examples.

Side length| Area
1| 1
2| 4
3| 9
4| 16
5| 25

Notice that the increase in area is not constant.

The growth itself is changing.


Differentiation measures how quickly the area is growing

Differentiating the area function gives:

\frac{dA}{dx}=2x

This derivative tells us something extremely important.

It does not tell us how much area already exists.

Instead, it tells us:

«How rapidly is the area changing at this particular value of x?»


Looking at specific values

Let’s compare the total area with its growth rate.

x| A(x)=x^2| A'(x)=2x
1| 1| 2
2| 4| 4
3| 9| 6
4| 16| 8
5| 25| 10

At:

x=5

the total area is:

A(5)=25

However, the growth rate is:

A'(5)=10

The two numbers describe different things.

Twenty-five describes how much area exists.

Ten describes how quickly the area is increasing at that moment.


An intuitive geometric explanation

Imagine increasing the side length of a square by a very small amount.

The square expands outward.

Most of the additional area appears along two edges.

Each edge contributes approximately:

x

units of new area.

Therefore, the total increase is approximately:

x+x=2x

There is also a tiny corner piece.

Its area is proportional to:

“latex” (dx)^2[/latex]

Because this term becomes extremely small, calculus ignores it when computing the derivative.

This leaves:

\frac{d}{dx}(x^2)=2x

The derivative emerges naturally from geometry.


Integration reverses the process

Suppose someone gives us only the growth rate:

2x

Can we reconstruct the original quantity?

Yes.

We integrate.

\int2x,dx=x^2+C

Integration reconstructs the accumulated quantity from its rate of change.

This is why we often say:

«Integration is the reverse of differentiation.»


But what does the number 25 actually mean?

Consider:

\int_0^5 2x,dx

Using the Fundamental Theorem of Calculus:

=x^2\Big|_0^5

Evaluating the boundaries:

=5^2-0^2

Therefore:

=25

But what does 25 represent?

It represents the change in the accumulated quantity between 0 and 5.


The meaning of accumulation

Suppose we start with a square of side length 0.

The area is:

A(0)=0

Now increase the side length to 5.

The area becomes:

A(5)=25

The change in area is:

25-0=25

Therefore:

\int_0^5 2x,dx=25

In words:

«A quantity growing at the rate 2x accumulated 25 units between 0 and 5.»


A car provides another useful analogy

Suppose:

s(t)=t^2

represents the position of a car.

Then:

v(t)=2t

represents its velocity.

The position tells us where the car is.

The velocity tells us how quickly its position is changing.

If we integrate the velocity:

\int_0^5 2t,dt=25

we obtain the change in position.

The mathematics is identical.

Only the interpretation changes.


A bank account provides another interpretation

Suppose:

B(t)=t^2

represents the balance in a bank account.

Then:

r(t)=2t

represents the rate at which money is being deposited.

Integrating the deposit rate gives:

\int_0^5 2t,dt=25

The result means:

«Twenty-five monetary units were accumulated during the first five time units.»

Again, the same mathematics appears in a completely different context.


Differentiation versus integration

The relationship can be summarized as follows:

Operation| Interpretation
Differentiation| Convert an accumulated quantity into a growth rate
Integration| Convert a growth rate into an accumulated quantity

Mathematically:

x^2\rightarrow2x

through differentiation.

And:

2x\rightarrow x^2

through integration.


The deeper philosophical insight

Calculus connects two different ways of describing the world.

One describes what exists.

The other describes how quickly it is changing.

The accumulated quantity is the complete story.

The rate of change tells us how that story is unfolding.


The simplest way to remember it

Think of it this way:

x^2

answers the question:

«How much?»

2x

answers the question:

«How fast?»

And the definite integral:

\int_0^5 2x,dx=25

answers the question:

«How much accumulated between 0 and 5?»


Conclusion

The relationship between x^2 and 2x reveals the central idea of calculus.

The function:

x^2

represents an accumulated quantity.

Its derivative:

2x

represents the instantaneous rate at which that quantity changes.

Integration then reconstructs the original quantity from its rate of change.

Ultimately, calculus teaches us that every accumulated quantity and every growth rate are two different ways of describing the same phenomenon.

And perhaps the most intuitive way to express this relationship is:

«Differentiation converts a quantity into its growth rate.»

«Integration converts a growth rate back into an accumulated quantity.»

Filed Under: Articles, Integral Calculus

If Integration Is the Reverse of Differentiation, Why Does a Definite Integral Give Us a Difference?

August 13, 2026 by Splendid Leave a Comment

While studying integration, I wrote the following example in my notebook:

y=x^2

Differentiating gives:

\frac{dy}{dx}=2x

Since integration is supposed to be the reverse of differentiation, I expected that integrating 2x would simply return the original function.

So I considered the interval [0,5] and wrote:

\int_0^5 2x,dx

The answer was:

25

At first, this result seemed puzzling.

If integration is the reverse of differentiation, why didn’t the answer remain x^2?

More importantly:

Where did the idea of taking a difference come from?

This question reveals one of the deepest ideas in elementary calculus.


The source of the confusion

We often hear the statement:

Integration is the reverse of differentiation.

The statement is true, but it is incomplete.

The confusion arises because the word integration is used to describe two different operations:

  • Indefinite integration.
  • Definite integration.

Although their notation looks similar, they answer completely different questions.


Indefinite integration really does reverse differentiation

Let’s start with the original function:

y=x^2

Differentiate it:

\frac{d}{dx}(x^2)=2x

Now integrate:

\int2x,dx

We immediately obtain:

\int2x,dx=x^2+C

This is exactly what we expected.

The original function has been recovered.

The extra constant appears because differentiation removes all constant information.

For example:

\frac{d}{dx}(x^2+5)=2x

and

\frac{d}{dx}(x^2-100)=2x

Both functions have the same derivative.

Therefore:

\int2x,dx=x^2+C

In this case, integration truly is the reverse of differentiation.


But something changes when we introduce limits

Now consider:

\int_0^5 2x,dx

This is not an indefinite integral.

It is a definite integral.

The question is no longer:

Which function produced 2x?

The question has changed to:

How much of this quantity accumulated between 0 and 5?

This is a completely different problem.


Two integrals, two questions

The notation itself tells us what we are asking.

Without limits:

\int f(x),dx

means:

Find the antiderivative.

With limits:

\int_a^b f(x),dx

means:

Measure the accumulated change between a and b.

The mathematical symbols look almost identical, but their interpretations are entirely different.


Where does the difference come from?

The answer lies in the Fundamental Theorem of Calculus.

The theorem states:

\boxed{\int_a^b f(x),dx=F(b)-F(a)}

where:

F'(x)=f(x)

In other words:

  1. Find an antiderivative.
  2. Evaluate it at the upper boundary.
  3. Evaluate it at the lower boundary.
  4. Subtract the two values.

Applying the theorem to our example

We know:

f(x)=2x

An antiderivative is:

F(x)=x^2

Therefore:

\int_0^5 2x,dx=F(5)-F(0)

Substituting:

=5^2-0^2

Therefore:

=25-0 =25

The original function hasn’t disappeared.

It is still there.

The definite integral simply calculates the difference between two values of the original function.


How should we interpret the number 25?

This is perhaps the most important question.

The number 25 does not have a universal meaning.

Its interpretation depends entirely on the context.


Interpretation 1: Change in position

Suppose:

s(t)=t^2

represents the position of a moving object.

Then:

v(t)=2t

represents its velocity.

The integral:

\int_0^5 2t,dt=25

means:

The object’s position increased by 25 units between time 0 and time 5.

Here, 25 represents a change in position.


Interpretation 2: Area under a curve

Suppose:

y=2x

is simply a mathematical graph.

Then:

\int_0^5 2x,dx=25

means:

The signed area under the curve between 0 and 5 is 25 square units.

Here, 25 represents an area.


Interpretation 3: Total production

Suppose:

r(t)=2t

represents a factory’s production rate.

Then:

\int_0^5 2t,dt=25

means:

The factory produced 25 units during the first five hours.

Here, 25 represents accumulated production.


Why doesn’t the answer remain 25 when the interval changes?

Let’s change the interval.

Consider:

\int_2^5 2x,dx

Applying the Fundamental Theorem:

=5^2-2^2 =25-4 =21

Why isn’t the answer still 25?

Because the accumulation no longer begins at zero.

The function already has a value of:

x^2(2)=4

The definite integral measures only the additional accumulation between 2 and 5.

Therefore:

25-4=21

A visual interpretation

Consider the graph:

y=2x

Between 0 and 5, the graph forms a triangle.

The triangle has:

Base:

5

Height:

10

Using geometry:

\text{Area}=\frac12\times\text{base}\times\text{height}

Therefore:

=\frac12\times5\times10 =25

The definite integral agrees perfectly with the geometric interpretation.


The hidden role of the original function

Many students think the original function disappears during definite integration.

But this isn’t true.

The original function remains hidden inside the calculation.

The computational process looks like this:

Differentiate:

x^2\rightarrow2x

Integrate indefinitely:

2x\rightarrow x^2+C

Integrate definitely:

2x\rightarrow x^2\rightarrow x^2(5)-x^2(0)\rightarrow25

The original function never disappears.

The definite integral simply evaluates how much the original function changed.


An analogy using a bank account

Suppose:

B(t)

represents your bank balance.

Your income rate is:

r(t)

Therefore:

B'(t)=r(t)

If you ask:

What is my account balance?

you reconstruct the function.

However, if you ask:

How much money did I earn between January and February?

you calculate:

B(\text{February})-B(\text{January})

You are interested in the change, not the total balance.

This is exactly what a definite integral does.


The deeper philosophical idea

Differentiation is a local concept.

It asks:

What is happening right now?

Integration is a global concept.

It asks:

What has happened over an interval?

The Fundamental Theorem of Calculus connects these two ideas.

A local rate determines a global accumulation.

And a global accumulation can be reconstructed from local rates.


The simplest way to remember the difference

When you see:

\int f(x),dx

think:

Recover the original function.

When you see:

\int_a^b f(x),dx

think:

Measure how much the original function changed between two points.

Or even more simply:

\boxed{\text{Indefinite integral}=\text{function}} \boxed{\text{Definite integral}=\text{difference}}

Conclusion

The question that inspired this discussion was:

If integration is the reverse of differentiation, why does a definite integral produce a difference rather than the original function?

The answer is that a definite integral is solving a different problem.

It is not trying to reconstruct the function.

It is measuring how much of the function accumulated between two boundaries.

The original function is still present.

It is simply evaluated at two different points:

\boxed{\int_a^b f(x),dx=F(b)-F(a)}

This formula expresses one of the most beautiful ideas in mathematics:

Differentiation tells us how something changes.

Integration tells us how much change accumulates.

And a definite integral measures that accumulated change by taking the difference between two values of the original function.

Filed Under: Articles, Integral Calculus

  • « Go to Previous Page
  • Page 1
  • Page 2
  • Page 3
  • Page 4
  • Page 5
  • Page 6
  • Interim pages omitted …
  • Page 8
  • Go to Next Page »

Primary Sidebar

Recent Posts

  • Understanding What t = 0 Means in Parametric Coordinates
  • From Cartesian Coordinates to Parametric and Polar Coordinates
  • Parametric Curves and Polar Coordinates: Moving Beyond Ordinary Coordinates
  • Calculus 1C: Coordinate Systems & Infinite Series — From Curves to Infinity
  • Differential Equations: The Next Great Chapter After Calculus

Archives

  • August 2026
  • June 2026

Categories

  • Articles
  • Coordinate Systems & Infinite Series
  • Differential Calculus
  • Early Transcendentals
  • Integral Calculus
Terms Display
optimization quotient rule power rule integration in economics mean value theorem polar coordinates limits numerical integration natural logarithm tangent integration by substitution logarithms improper integrals profit is concave downward. What does this mean? Even if profits continue to rise implicit differentiation integration secant parametric coordinates smooth functions inflection points
Person climbing a staircase. Learn Data Science from Scratch: online program with 21 courses

Footer

Calculus 1A: Differentiation

Calculus 1A: Differentiation by MITx

Calculus 1B: Integration

Calculus 1B: Integration by MITx

Calculus 1C: Coordinate Systems & Infinite Series

This website may use AI tools to assist in content creation. All articles are reviewed, edited, and fact-checked by our team before publishing. We may receive compensation for featuring sponsored products and services or when you click on links on this website. This compensation may influence the placement, presentation, and ranking of products. However, we do not cover all companies or every available product.

  • Home
  • Articles
  • Trending
  • Terms
  • Support
  • Subscribe
  • Contact