| Expression | Description | Examples |
|
An infinite sequence. |
{ 3 + (-1)^n} = {2, 4, 2, 4, ...} |
|
An infinite series. |
sum[n = 1, oo] 1/(2^n) = (1/2) + (1/4) + (1/8) + ... |
|
Limit of |
lim x->0 (x^2) = 0 |
|
Differentials.
The differential of x. The differential of y. |
dx dy |
|
y prime. The first derivative of y. |
y = x^2 y' = 2x |
|
The second derivative of y. |
y = x^2 y'' = 2 |
|
The third derivative of y. |
y = x^2 y''' = 0 |
|
f prime of x, the first derivative of f. |
f(x) = x^2 f'(x) = 2x |
|
The second derivative of f. |
f(x) = x^2 f''(x) = 2 |
|
Higher order derivatives. The
|
f(x) = x^3 f^(4)(x) = 0 |
|
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 |
|
The second derivative of y with respect to x. |
y = x^2 (d^2y)/(dx^2) = 2 |
|
Higher order derivatives. The
|
y = x^3 (d^4y)/(dx^4) = 0 |
|
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 |
|
An antiderivative of f. |
f(x) = 3x^2 F(x) = x^3 |
|
Indefinite integration. |
int(x^2) dx = (x^3) /3 + C |
|
Definite integration. |
int[0,2](x^2) dx = (x^3) /3 ]0,2 = 8/3 |
|
Multiple integration.
A double integral, in this case. |
int[0,1]int[0,2] (x+y) dydx int[0,(pi/2)]int[0,2cos(theta)]r drd(theta) |