Calculus¶
12 built-in function(s) in this category.
D— D[f, x] gives the partial derivative of f with respect to x. (Stable)Derivative— f' represents the derivative of a function f of one argument. (Stable)DifferenceDelta— DifferenceDelta[f, i] gives the forward difference (f /. i -> i+1) - f, the discrete analogue of D. It is the left inverse of indefinite Sum. (Stable)Dt— Dt[f] gives the total derivative of f. (Stable)FindMaximum— FindMaximum[f, {x, x0}] (Stable)FindMinimum— FindMinimum[f, {x, x0}] (Stable)FindRoot— FindRoot[f, {x, x0}] (Stable)Integrate— Integrate[f, x] gives the indefinite integral of f with respect to x. (Partial)Limit— Limit[f, x -> a] (Stable)PolynomialQuotientRemainder— PolynomialQuotientRemainder[p, q, x] returns {Quotient, Remainder} (Stable)SubresultantPolynomialRemainders— SubresultantPolynomialRemainders[a, b, x] gives the polynomial-remainder (Stable)Sum— Sum[f, {i, imax}] gives the sum of f for i from 1 to imax. Sum[f, {i, imin, imax}], Sum[f, {i, imin, imax, di}] and Sum[f, {i, {i1, i2, ...}}] use the standard iterator forms; multiple iterators give nested sums. Sum[f, i] gives the indefinite sum (antidifference). Symbolic and infinite sums are evaluated in closed form via Method -> "Polynomial" | "Geometric" | "Gosper". (Partial)