Calculus is the study of changing variables.

Important Symbols

  1. The differential symbol. Means a “little bit of”. So, means a “little bit of “. Could be infinitely small.
  2. The integral symbol. Long s means “sum of”. So, means the “sum of the little bits of

On smallness

At a certain point, small values become negligible. Consider a square where represents the length of one side. The area of the square, therefore, is . Now, consider that you were to add to , meaning increasing each side of the square by . How much would the area grow by? This can be represented by the following diagram: By taking the area with , we get , which can be expanded to: . Now, note that the term is an order of magnitude smaller than even . Because it is so small, we are free to ignore it and consider it to be effectively zero. This is even more true for smaller and smaller values of .

On relative growings

Calculus is largely about how different values can grow and change in relation to one another. Consider the following example: Let represent the horizontal distance, from a wall, of the bottom end of a ladder . Let be the distance at which the top of the ladder rests on the wall. The question arises: If we were to pull the ladder further away from the wall, thereby increasing , how much would change? The following figure represents the situation: We will solve this with example data first. Suppose the ladder was so long such that where is from the wall, meets the wall above. If changes by , then, how much does change by?

#let x = 19
#let y = 180
#let dx = 1
#let L = calc.sqrt(calc.pow(x, 2) + calc.pow(y, 2))
#let z = (calc.pow(L, 2) - calc.pow(x + dx, 2))
#let dy = (y - (calc.round(calc.sqrt(z), digits: 3)))
$ x = #x "in" \
y = #y "in" \
dif x = #dx "in" \
dif y = "?" \ $
Because $y$ must decrease, we know that $h$, the new height, is:
$ h = y - dif y $
And, conversely, the distance from the wall, $l$, is:
$ l = x + dif x $
By pythagorean theorem, we know the length of the ladder is:
$ sqrt((#y)^2 + (#x)^2) = #L $
Squaring both sides gets us:
$ #y^2 + #x^2 = #L^2 $
Becuase the length of the ladder must remain constant, the new \
height must be:
$
(y - dif y)^2
= (#L)^2 - (#(x + dx))^2
= #(calc.pow(L, 2)) - #calc.pow(x + dx, 2)
= #z
$
Taking the square root,
$ y - dif y = #(calc.round(calc.sqrt(z), digits: 3)) $
So, $dif y$ is:
$ #(calc.round(dy, digits: 3)) $
 
This makes the ratio at which y changes in relation to x, or:
$ (dif y) / (dif x) = -#(calc.round(dy, digits: 3)) / #dx $

The above example also delivers a key intuition: in order for to make any sense, y and x must have some relation. In this example, the relation was the following:

So, because there is a relation, a change in x affecting y by some amount makes sense.

Simplest Cases

Power Rule

Power rule is defined as the following:

I will not provide a formal proof for this rule now, just an example as to how it may work internally:

Consider
$ y = x^2 $
We know that if $x$ grows, $x^2$ grows, so $y$ grows
$ y + dif y = (x + dif x)^2 $
By expansion,
$ y + dif y = x^2 + (2x dif x) + (dif x)^2 $
By the discussion on smallness, $(dif x)^2$ is simply too small to matter \
Moreover, we said before $y = x^2$. Let us substitute:
$ x^2 + dif y = x^2 + (2x dif x) $
Simplifying,
$ dif y = 2x dif x $
So,
$ (dif y) / (dif x) = 2x $

Sources

Much of this note comes from one source: Calculus Made Easy by Silvanus P. Thompson This is an attempt to intuitively explain fundamental concepts of calculus rather than going through rigorous math.