Skip to content

09. Limits(Intuitive Introduction)

Dated: 30-10-2024

Tangent Problem

Pasted image 20240814164829.png
Given a graph and a point, find tangent to the graph at that point.

The problem gave rise to differential calculus.

Area Problem

Pasted image 20240814165139.png
Given a graph, find area under it in interval1 \([a, b]\).
This problem gave rise to integral calculus.

Area as a Limit

We can find the area under a curve by dividing it into smaller and smaller rectangles.
And then taking the sum of the area of these rectangles, we get our area.
Pasted image 20240814171719.png

Limits

Imagine a function2

\[f(x) = \frac{\sin(x)}{x}\]

Notice how it is undefined at \(x = 0\).
This is where the Limit comes into play.

\[\frac{\sin(x)}{x} = undefined\]

To check if a limit exists, meaning what does the function2 approaches, we check from both left and right directions on the x-axis.

From Right

What does the function2 approaches as \(x\) approach to 0 from right direction.

\[\lim_{x \rightarrow 0^+}\frac{\sin(x)}{x} = 1\]

From Left

What does the function2 approaches as \(x\) approach to 0 from left direction.

\[\lim_{x \rightarrow 0^-}\frac{\sin(x)}{x} = 1\]

Therefore, to check the existence of lim,

\[\lim_{x \rightarrow 0^-}\frac{\sin(x)}{x} = \lim_{x \rightarrow 0^+}\frac{\sin(x)}{x} = 1\]

References

Read more about notations and symbols.


  1. Read more about intervals

  2. Read more about functions