in ,

Calculus Explained with pics and gifs, Hacker News

Calculus Explained with pics and gifs, Hacker News


Calculus is just a fanciful name for the study of change in maths. Calculus in general refers to the branch of maths that was made famous by Newton in the 17 th century. Don’t confuse it withLambda calculus,propositional calculus, andunicorns, which are completely different things.

To understand calculus, one needs to be able to visualize the concepts offunction,limit,Differentiation, andintegration.

● ● ●

1. What is a function?

functioncan be seen as a machine that takes in value and gives you back another value. It is what we use in maths to map numbers (input) to other numbers (output).

[ f(input)=output ]

A function is normally defined by an equation like this:

[f(x)=x 10]

Now if you put 2 into this function you will get 12 in return.

[f(2)=12]

The set of numbers that you can put into a function is known as thedomainof the function. If you’d like to have a more in-depth understanding of function (eg its formal definition), check outmy article on set theory. (You will probably love it!)

2. What is a limit?

limitis the number you are “expected” to get from a function (or algebraic expression) when it takes in a certain input. By “expected” it is referring to the expectation of the output when (x )“approaches” a certain value .

Here is an example where the limit (the expected output) is the same as the actual output.

[lim_{xrightarrow 2}frac{5^x}{25}=1]

The limit above is often read as “the limit of ( frac {5 ^ x} {25} )as (x )approaches 2 is 1 ”. You can visualize “ (x )approaches 2 ”as a dot moving along the graph towards where (x=2 )(and, as you can see, ( y=1 )).

Now take this function for example:

[f(x)=frac{(x^2-3x)^2}{x-3}]

Division by 0 is undefined. We would get (undefined )when we put 3 into the function.

[f(3)=frac{(3^2-3 cdot 3)^2}{3-3}=undefined ]

This is also why there is a hole in the graph of (f (x) ).

But looking at the graph, we can see that 0 is the expected value when (x ) (approaches 3.)

[lim_{xrightarrow 3}f(x)=0 ]

To compute the limit when the actual output is undefined, in normal case we simply need to simplify the algebraic expression to avoid division by 0. And then put the value (x )is approaching into the function as (x ).

[frac{(x^2-3x)^2}{x-3}=frac{x^4-6x^3 9x^2}{x-3}=frac{x^2(x-3)^2}{x-3}=x^2(x-3)]

[lim_{xrightarrow 3}frac{(x^2-3x)^2}{x-3}=lim_{xrightarrow 3} x^2(x-3)=3^2(3-3)=0]

If you would like to learn more about limit, feel free to check out my essayWhat do we talk about when we talk about limit.

3. What is differentiation?

Differentiation is a fanciful name for the process of obtaining aDerivative. And a derivative is a function that gives you the “slope” (or rate of change) of another function at a certain point.

Basically, differentiation can be seen as a machine that takes in a function and gives you back another function.

We all know that the slope of a linear equation / function has a constant value. It has the same rate of change at every point on the line. So the graph of a linear equation / function is indeed a straight line.

For every value of 1 added to the input, a value of the slope (in this case, 4) would be added to the output.

The change between input and output is always in the ratio of 1 to (m ), where (m )is the value for the slope. Adding 0.1 to the input will trigger a change of ( 0.1m )in the output, etc.

[begin{align}f(5)&=8 \\f(6) &=f(5) 1 times 4=12 \\f(5.1) &=f(5) 0.1times 4=8.4 \\f(5.02) &=f(5) 0.02 times 4=8.08 end{align}]

But this is only true for linear function. For functions that are not linear, every point doesn’t have a constant rate of change. Take a look at the function (f (x)=2 ^ x ).

[begin{align}f(3)&=8 \\f(4)&=16 \\f(5)&=32 \\ f(6)&=64 \\ f(7)&=128 end{align}]

This is when we cannot use a constant to represent the “slope”: we need to use a function that gives us different “slope” (rate of change) at different point. Or rather, we shouldn’t even call it a “slope” anymore since the rate of change is not constant. We call it derivative.

If you are still trying to get your head around what it means by “the rate of change is not constant”, imagine a cat at rest starts to accelerate constantly at (1m / s ^ 2 ). Three seconds later it would be moving at the speed of (3m / s ). So far the rate of change in its speed is constant. But when the cat begins to slow down, the rate of change would no longer be constant.

4. How to find the derivative of a function?

The rate of change at a certain point in the function can be visualized as a straight line across the point.

This is normally called thetangent line at a certain point.

Since a non-linear function doesn’t have a constant rate of change, it means that every point of the function needs a different straight line to represent the rate of change.

To find the derivative of a function is to find another function that will output a value at every point, which can be represented by a corresponding straight line.

The rate of change at point (x )is therefore sometimes also known as the derivative at point (x ).

To get the straight line that represents the derivative at a certain point, one way to do it is to first locate 2 different points on the graph and draw a line across them.

Some people refer to this line as asecant line.

This line represents a value. It represents the rate of change if the 2 points belong to a linear function.

But now this function is not linear. So this line is not accurate at all if we try to use it to represent the rate of change at any one of the 2 points.

Apparently, the closer the 2 points are, the more accurate the line is in representing the rate of change at any one point.

With that in mind, let’s start off with a line that cuts across 2 points (A and B), and shift the line accordingly as we shift B towards A along the graph. By the time B is at the same point as A, we would have a line that can accurately represent the rate of change at point A – we would have a line that represents the derivate of the function at point A.

By turning the process above into a function (denoted by (f ‘(x) )), this function would be the derivative of the function of the graph (denoted by (f (x) )).

[begin{align}slope &=frac{y_B-y_A}{x_B-x_A}\\f'(x) &=lim_{hrightarrow 0}frac{f(x h)-f(x)}{(x h)-x}end{align}]

Here we are denoting the coordinate of point B as ((x h, f (x h)) ). And what we are doing is obtaining a value for the straight line (the “slope” / derivative) at point A as we shift point B to A by making (h )approach 0. So the coordinate becomes ((x 0, f (x 0)) ), which is the coordinate for point A.

This is the modern definition of derivative in terms of limit.

Besides (f ‘(x) )[aka Lagrange’s notation], here is another common notation for differentiation:

[frac{d}{dx}f(x)]

Gottfried Wilhelm Leibniz, a great German mathematician, came up with this notation in the 17 th century when he was still alive. He came up with it by seeing (dx )as aninfinitesimal (infinitely small)change in (x )[the input of(f(x))]. And the single (d )at the numerator here is supposed to be merged with (f (x) )to indicate an infinitesimal change in (f (x) )[the output of(f(x))]. ( frac {d} {dx} f (x) )is sometimes written as ( frac {dy} {dx} ), where (y )stands for the output of (f (x) ).

This is actually a more (Ancient) way of defining a derivative: a derivative tells you the rate of change of the output at an infinitesimal scale as the input changes. Therefore it is (dy )[or(d f(x))] divided by (dx )– an infinitesimal change in (f (x) ), divided by an infinitesimal change in (x ). So we are defining derivative in terms of a fraction ( ( frac {dy} {dx} )) here , instead of a limit.

We call this way of thinking about derivativenon -standard analysis.

Let’s say we want to get the derivative of (x ^ 3 ). The straightforward way to do it is to compute the limit.

[begin{align}frac{d}{dx} x^3 &=lim_{arightarrow 0}frac{(x a)^3-x^3}{(x a)-x} \&=lim_{arightarrow 0}frac{a(3x^2 a(3x a))}{a} \&=lim_{arightarrow 0} 3cdot x^2 a(3x a) \&=3cdot x^2 0(3x 0) \&=3 cdot x^2end{align}]

But we can speed up the process by using shortcuts like this.

[begin{align}frac{d}{dx} x^n &=n(x^{n-1}) \ frac{d}{dx} x^3 &=3(x^{3-1})=3 cdot x^2 end{align}]

Here is a list of famous shortcuts for differentiation.

( frac {d} {dx} c=0 )

( frac {d} {dx} cf (a)=c frac {d} {dx} f (a) )

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

( frac { d} {dx} cx=c )

“Power rule”
( frac {d} {dx} x ^ n=nx ^ {(n-1)} )

“Sum rule”
( frac {d} {dx} f (x) g (x)=f ‘(x) g’ (x) )

“Product rule ”
( frac {d} {dx} f (x) cdot g (x)=f ‘(x) g (x) g’ (x) f (x) )

“Chain rule”
( frac {d} {dx} f (g (x))=f ‘(g (x)) g’ (x) )

“Quotient rule”
( frac {d} {dx} frac {f (x)} {g (x)}= frac {f ‘(x) g (x) – g’ (x) f (x)} {g ( x) ^ 2} )

( frac {d} {dx} frac {1} {x }= frac {-f ‘(x)} {x ^ 2} )

( frac {d} {dx} c_1 {^ {ax}}=c_1 {^ {ax}} ln (c_1) a )

( frac {d} {dx} e ^ x=e ^ x ln (e)=e ^ x )

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

( frac {d} {dx} log_c (x_2)= frac {1} {x_2 ln {c}} )

( frac {d} {dx} ln (x_1)= frac {1} {x_1} )

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

( frac {d} {dx} sin ( x)=cos (x) )

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

( frac {d} {dx} tan (x)=-sec ^ 2 (x) )

( frac {d} {dx} sec (x)=sec (x) tan (x) )

( frac {d} {dx} csc (x)=-csc (x) cot (x) )

( frac {d} {dx} cot (x)=-csc ^ 2 (x) )

(c )is a constant. (c_1 )is a constant (>0 ).
(n )is an integer.
(x_1 ) (is a variable) (>0 ).
(x_2 ) (is a variable) (>0 )but ( neq 1 ).

These shortcuts can all be derived from the limit of ( frac {f (x h) -f (x)} {(x h) -x} )above. They are sometimes referred to as“Differentiation rules”. Calling them “rules” certainly makes them sound like some fundamental principles in calculus, but the truth is they are merely shortcuts to speed things up.

● ● ●

5. Introducing anti-differentiation

I shall now introduce a new concept calledAnti-differentiation. It is just the inverse of differentiation. It can be seen as a machine that takes in a function, (g (x) ), and give you back another function, (f (x) ), whose derivative is (g (x) ). Here, (g (x) )is known as the (Anti-derivative) ************************************************** (of (f (x) ).

Apparently, we will get the same derivative when differentiating functions that are only different at the part where it adds (or subtracts) a constant.

[begin{align}frac{d}{dx} x^2 100 &=2x \ frac{d}{dx} x^2 49 &=2x \ frac{d}{dx} x^2 &=2x end{align}]

As shown above, we can see that no matter what the constant is, it would always give us back the same function if we differentiate it. So, in order to be technically correct, we would need to put a placeholder, ( C ), in the end of the function to indicate that the anti-derivative can be any function that plus some constant (or minus some constant for cases when (C )is negative).

[begin{align}f(x) &=2x \ frac{d}{dx} g(x) &=f(x) \ g(x) &=x^2 C end{align}]

6. What is integration?

Integration is a fanciful name for the process of findingintegral. Integral here is referring to eitherindefinite integral, ordefinite integral. (Therefore sometimes we say indefinite integration or definite integration just to be specific.)

Indefinite integralis fundamentally equivalent to anti-derivative. They are basically the same thing.

[begin{align}frac{d}{dx}f(x) C=g(x) \\ int g(x) dx=f(x) C end{align}]

This is shown in thefirst fundamental theorem of calculus.

(dx )in the equation indicates that (x )is the input we are integrating (g (x) )with respect to. A function can take in more than one input [e.g.(f(x,q)=x^2 q^3)] so there are times when it is crucial to specify which input we are integrating the function with respect to [e.g. Is it(x)or(q)? Integrating the function with respect to a different input would give us a different result].

Definite integralcan be defined as the difference between 2 identical anti-derivatives that take in different inputs.

[int_a^b g(x) dx=f(b)-f(a) ]

This is often read as “the definite integral of g (x) from a to b”.

This definition of definite integral is derived from thesecond fundamental theorem of calculus.

(a )here is sometimes referred to as the lower limit, while (b )is referred to as the upper limit.

Here is another way to define what a definite integral is. Imagine you want to find out the area of ​​the region under a curve in a graph.

You can approximate the area of ​​the region by drawing rectangles under the curve and adding the area of ​​these rectangles together. The smaller the width of the rectangle is, the more rectangle there would be, and the more accurate the approximation would be.

This can actually be written into a summation. Here (n )is the number of rectangles.

[sumlimits_{i=1}^n(frac{b-a}{n})cdot g(a frac{b-a}{n}i)]

This is known as theRiemann sum. ( frac {ba} {n} )is the width of each rectangle, and (g (a frac {ba} {n} i) )is the height.

We would be able to find the actual value for the area if we get the limit as (n ), the number of rectangle, goes toinfinity. Infinity here can be imagined as a theoretically enormous number that is bigger than every real number on the (number line) . This limit is another way of definingdefinite integral.

[int_a^b g(x) dx=lim_{nrightarrow infty} sumlimits_{i=1}^n(frac{b-a}{n})cdot g(a frac{b-a}{n}i)]

Integral defined in this way is often known asRiemann integral. When the limit exists, we say the function is Riemann-integrable. When a function is not Riemann-integrable, it doesn’t mean it is completely not integrable. It really just depends on how we define “integral”. In a branch of maths known asreal analysis, integration is normally definedin the Lebesgue’s way, different from the Riemann’s way above. Functions that can be integrated in the Lebesgue’s way are Lebesgue-integrable. One typical example for a function that is not Riemann-integrable but Lebesgue-integrable is thenowhere continuous function.

In the limit above, we are getting the area of ​​region underneath the graph of (g (x) )from (A )to (B ). And this is actually equivalent to “stacking up” the rate of changes of its anti-derivative, (f (x) ), at every point from (A )to (B ). Therefore we are actually getting the difference between (f (a) )and (f (b) ). This is why definite integral of (g (x) )is able to give us the area from point (A )to (B )in the graph of (g (x) ): definite integral is giving us the overall change in value from (f (a) )to (f (b) ).

This is precisely why (dx )is there as a part of the integral notation ( int f (x) dx ). In the logic that differentiation is defined as ( frac {df (x)} {dx}=g (x) ), we can see that (g (x) dx=df (x) ), where (d )is an infinitesimal change interpreted as ( frac {1} { infty} ). The relation of every (x )and (y )in the function (f (x) )[how(x)changes affects(y)changes, vice versa] can therefore be constructed by indeterminately1 (summing up) *************************************************************************************************************** (2) the infinite num ber of infinitesimal “slices” of its derivative (g (x) ), with each infinitesimal “slice” being A nonspecific (3) (y )(4) multiplied by an infinitesimal change in (x ), (dx ), that governs the value of the corresponding (y ).

indeterminately 1) : this is why it is calledIndefiniteintegration. We are getting a result in terms of a variable, rather than getting an actual value. summing up (2) : this is what ( int )indicates in the notation. nonspecific (3) : thus it is [the output of(f(x))] ************************************************************************************************* (indefinite) integration. What matters is the relation in terms of (x ), not the actual value. (y )(4) : this (y )is the (y )from (g (x) ).

7. How to find the definite integral of a function from (a )to (b )?

Computing the limit of a Riemann sum can really be a tedious thing to do. So what we normally do is to find the indefinite integral first before putting (a )and (b )into the indefinite integral and getting the difference between them (using the definition of definite integral from the 2nd fundamental theorem of calculus mentioned

[g(x)=x^4 \ int g(x) dx=frac{x^5}{5} C \ int_2^3 g(x) dx=frac{3^5}{5}-frac{2^5}{5}=42.2 ]

Of course , it isnot always necessary to get the indefinite integral first (it is possible to arrive at an answer after some transformations of the definite integral).

8. How to find the indefinite integral (anti-derivative) of a function?

Apparently, we can reverse the differentiation shortcuts / rules above and turn them into integration shortcuts / rules. But sometimes a little bit of creativity is required for integration. Let’s take a look at the reverse –chain-rule.

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

Things don ‘t always come in a perfect bundle. To use reverse-chain-rule, most of the time we need to see the algebraic structure as (f ‘(g (x)) )and compute (g ‘(x) )on our own.

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

Here is an example. Let’s say we need to solve this indefinite integral.

[int frac{3}{(2x 1)^2} dx]

We can see (f ‘(x) )as ( frac {3} {x ^ 2} )and (g (x) )as (2x 1 ).

[int frac{3}{(2x 1)^2} dx=int f'(g(x)) dx]

What we need to do now is to obtain (f (x) )by integrating (f ‘(x) ), and obtain (g ‘(x) )by differentiating (g (x) ).

[f(x)=int f'(x) dx=int frac{3}{x^2} dx=frac{-3}{x}]

[g'(x)=frac{d}{dx} g(x)=frac{d}{dx} 2x 1=2]

[begin{align}int frac{3}{(2x 1)^2} dx&=frac{1}{g'(x)} cdot f'(g(x)) \&=frac{1}{2} cdot frac{-3}{2x 1} C end{align}]

So if we need to solve the definite integral ( int_0 ^ 1 frac {3} {(2x 1) ^ 2} dx ), we just put the two values ​​into the indefinite integral and get the difference like this:

[begin{align}int_a^b frac{3}{(2x 1)^2} dx &=frac{1}{2} cdot ( frac{-3}{2 cdot b 2} – frac{-3}{2 cdot a 2}) \\ int_0^1 frac{3}{(2x 1)^2} dx &=frac{1}{2} cdot (frac{-3}{2 cdot 1 2} – frac{-3}{2 cdot 0 2}) \&=frac{1}{2} cdot 2=1 end{align}]

This technique (reversing chain rule) is known asintegration by substitution, or, (u )– substitution, where (g (x) )is often written as (u ).

The truth is: finding an indefinite integral can be really hard sometimes. Aside from the fact that there isn’t an “absolute” way of humanly doing it, there is actually a rigorous mathematical reason behind it. The set of functions we humans love to do differentiation on is normally closed under differentiation. This means if we differentiate a function, we should anticipate to get back a similar function (eg differentiating anelementary functiongives us back an elementary function) . But it is not the case for integration. It is possible to integrate an elementary function, and get a non-elementary function in return (eg ( int e ^ {x ^ 2} dx )). And as we can see, definite integration is more of a local operation, while indefinite integration is a global operation. This is why sometimes it makes more sense to solve a definite integral using transformations and techniques, arriving at the answer without having to compute the indefinite integral. There are respected individuals (egVladimir Reshetnikov,Cleoon Maths StackExchange) who are amazingly good at it.

● ● ●

9. Bonus: Partial derivative

When a function has more than one input value, we call it a multivariable function.

[f(x_1,x_2)=3x_1 x_2]

The graphs of functions that take in 1 input are lines in a 2D plane, while the graphs of functions that take in 2 inputs are surfaces in a 3D space, etc.

To differentiate functions like this, we find the derivative with respect to one of the variables (denoted by (x_i )in this case). This type of derivative is known as a partial derivative.

[frac{partial}{partial x_i}f(x_1,x_2..x_i..x_n)]

Finding a partial derivative is very similar to finding a normal derivative: we get the limit as x approaches 0. But instead of having just (f (x a) -f (x) ), we have (f (x_1, x_2..x_i a..x_n) -f (x_1 , x_2..x_i..x_n) ), since the function takes in more than one input.

[begin{align}& frac{partial}{partial x_i}f(x_1,x_2..x_i..x_n) \ &=lim_{arightarrow 0}frac{f(x_1,x_2..x_i a..x_n)-f(x_1,x_2..x_i..x_n)}{(x_i a)-x_i}end{align}]

To do a partial differentiation, we simply pretend that other variables in the function are constants as we differentiate the function with respect to the chosen input. Here is an example.

[begin{align}f(x,a,b,c) &=x^5 2ax 10b^{9} log_{a}(c) \\ frac{partial}{partial x} f(x,a,b,c) &=frac{partial}{partial x} (x^5 2ax 10C^{9} log_{C}(C)) \ &=frac{partial}{partial x} (x^5 2Cx C) \ &=5x^4 2C \ &=5x^4 2a end{align}]

added on 29 th Oct, at 5PM (SG Timezone, 8): [edited a couple of times around 8 30PM to express the idea of tangent space in a more clear and concise way. And corrected some mistakes I made in the analogy of tangent plane.] Upon differentiating the function, we need to replace the remaining (C )back with the corresponding variables.

[begin{align} g(x,a,b,c) &=frac{partial}{partial x} f(x,a,b,c) \ &=5x^4 2C=5x^4 2a end{align}]

Basically, ( frac { partial} { partial x} f (x, a, b, c) )tells you about how an infinitesimal change in the input (x )would affect the output (f (x, a, b, c) )when (a ), (b )and (c )remains unchangeab le. To get the numerical value for the derivative, it is sometimes necessary to put an actual value into these variables.

[begin{align} g(1,2,0,0) &=629 \g(1,3,0,0) &=631 end{align}]

The derivative of functions with 1 input at one point ( (x, f (x) )) can be represented by atangent lineswhen (x )is specified. Meanwhile, the representation for the derivative of functions with 2 inputs at points ( (x_1, x_2, f (x_1, x_2) )) where (x_1 )is specified is a plane (tangent plane), for functions with 3 input it is a3D space (3D) tangent space), etc.

In normal differentiation (single-input functions). To obtain a numerical value for the rate of change at a certain point is to obtain the slope of the tangent line at that point: there is only 1 slope because there is only one single line going across one singlepoint, ((x, f (x)) ). To do it we just need to specify (x )Since (f (x) )is only dependent on (x ).

The graph of a two-variable function is a 2 dimensional surface in 3 dimensional space, so each point can be represented by ((x_1, x_2, f (x_1, x_2)) ), where the value of (f (x_1, x_2) )is dependent to both (x_1 )and (x_2 ).

The derivative with respect to any one of the variable (eg (x_1 )) when the variable (this case, (x_1 )) is specific is a value dependent to ( f (x_1, x_2) )and (x_2 ). So it is no longer a tangent line across one point, but a tangent plane across infinitely many points whose (x_1= text {the specific value} ). This is why, if we want to get an actual numerical value for the slope, we need to specify (x_2 )

The same applies to tangent of higher dimensions.

If you are interested in learning more about calculus, check outCalculus OnebyJim FowleronCoursera. It is truly amazing for beginners. For courses that cover more advanced topics in calculus and other areas of maths that use calculus, check out the ones byMIT OpenCourseWare. You’d probably findPauls Online Notesuseful too.

Brave Browser
Read More
Payeer

What do you think?

Leave a Reply

Your email address will not be published. Required fields are marked *

GIPHY App Key not set. Please check settings

Euro 2020 draw: England in group with Croatia while Wales meet Italy – as it happened – The Guardian, Theguardian.com

Euro 2020 draw: England in group with Croatia while Wales meet Italy – as it happened – The Guardian, Theguardian.com

Garbage Collection, Hacker News