| Expression | Description | Examples |
| {a_n} = {a_1,a_2,...,a_n,...} |
An infinite sequence. |
{3+(-1)^n} = {2,4,2,4,...} |
| sum[n=1,oo] a_n = a_1+a_2+...+a_n+... |
An infinite series. |
sum[n=1,oo] 1/(2^n) = (1/2)+(1/4)+(1/8)+... |
| lim x->c f(x) | Limit of f(x) as x approaches c. |
lim x->0 (x^2) = 0 |
| dx , dy | Differentials.
The differential of x. The differential of y. |
dx dy |
| y' | y prime. The first derivative of y. | y=x^2 y'=2x |
| y'' | The second derivative of y. | y=x^2 y''=2 |
| y''' | The third derivative of y. | y=x^2 y'''=0 |
| f'(x) | f prime of x, the first derivative of f. | f(x)=x^2 f'(x)=2x |
| f''(x) | The second derivative of f. | f(x)=x^2 f''(x)=2 |
| f^(n)(x) | Higher order derivatives. The
|
f(x)=x^3 f^(4)(x)=0 |
| dy/dx d/dx[f(x)] |
Another commonly used notation for derivatives. The first is read ``the derivative of y with respect to x.'' | y=x^2 dy/dx = 2x d/dx[x^2] = 2x |
| (d^2y)/(dx^2) | The second derivative of y with respect to x. | y=x^2 (d^2y)/(dx^2) = 2 |
| (d^ny)/(dx^n) | Higher order derivatives. The
|
y=x^3 (d^4y)/(dx^4) = 0 |
| pz/px p/px [f(x,y)] |
Partial derivatives. The first is read ``the partial of z with respect to x.'' |
z = x^2 + xy pz/px = 2x+y p/px [x^2 + xy] = 2x+y |
| F | An antiderivative of f. | f(x) = 3x^2 F(x) = x^3 |
| int(f(x)) dx | Indefinite integration. |
int(x^2) dx = (x^3)/3 + C |
| int[a,b](f(x)) dx | Definite integration. |
int[0,2](x^2) dx = (x^3)/3 [0,2] = 8/3 |
| int[a,b]int[c,d]( f(x,y) ) dydx | Multiple integration.
A double integral, in this case. |
int[0,1]int[0,2] (x+y) dydx int[0,(pi/2)]int[0,2 cos(theta)] r drd(theta) |