Legacy Documentation

Mathematica® Teacher's Edition (2002)

This is documentation for an obsolete product.
Current products and services
 Documentation /  Mathematica Teacher's Edition /  Built-in Functions /  Mathematical Functions /  Number Theory /

DigitCount

FilledSmallSquare DigitCount[n, b, d] gives the number of d digits in the base b representation of n.
FilledSmallSquare DigitCount[n, b] gives a list of the numbers of 1, 2, , , 0 digits in the base b representation of n.
FilledSmallSquare DigitCount[n] gives a list of the numbers of 1, 2, , 9, 0 digits in the base 10 representation of n.

FilledSmallSquare DigitCount[n] is equivalent to DigitCount[n, 10, Mod[Range[10],10]].
FilledSmallSquare Integer mathematical function (see Section A.3.10).
FilledSmallSquare See The Mathematica Book on the web: Section 3.2.4.
FilledSmallSquare See also: IntegerDigits, FromDigits, BitAnd, IntegerExponent.