Divisors[n] gives a list of the integers that divide n.
DivisorSum[n, form] represents the sum of form[i] for all i that divide n.DivisorSum[n, form, cond] includes only those divisors for which cond[i] gives True.
DMSList
(Built-in Mathematica Symbol) DMSList[\[Theta]] converts an angle \[Theta] given in decimal degrees to a DMS list {degree, minute, second}.DMSList["dms"] converts a DMS string to a DMS list {degree, ...
DMSString[\[Theta]] converts an angle \[Theta] given in decimal degrees to a degrees-minutes-seconds string.DMSString[{\[Phi], \[Lambda]}] converts latitude and longitude ...
D
(Built-in Mathematica Symbol) D[f, x] gives the partial derivative \[PartialD]f/\[PartialD]x. D[f, {x, n}] gives the multiple derivative \[PartialD]^n f/\[PartialD]x^n. D[f, x, y, ...] differentiates f ...
DockedCells is an option for notebooks that gives a list of cells that are to be displayed "docked" at the top of the notebook.
DocumentNotebook[{cell_1, cell_2, ...}] represents a complete document notebook in the Mathematica front end.
Do
(Built-in Mathematica Symbol) Do[expr, {i_max}] evaluates expr i_max times. Do[expr, {i, i_max}] evaluates expr with the variable i successively taking on the values 1 through i_max (in steps of 1). ...
DotDashed is a graphics directive specifying that lines that follow should be drawn dot-dashed.
DotEqual[x, y, ...] displays as x \[DotEqual] y \[DotEqual] ....