When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Erdős–Tenenbaum–Ford constant - Wikipedia

    en.wikipedia.org/wiki/Erdős–Tenenbaum–Ford...

    The Erdős–Tenenbaum–Ford constant is a mathematical constant that appears in number theory. [1] Named after mathematicians Paul Erdős, Gérald Tenenbaum, and Kevin Ford, it is defined as

  3. Multiplication table - Wikipedia

    en.wikipedia.org/wiki/Multiplication_table

    Multiplication table from 1 to 10 drawn to scale with the upper-right half labeled with prime factorisations In mathematics , a multiplication table (sometimes, less formally, a times table ) is a mathematical table used to define a multiplication operation for an algebraic system.

  4. Lookup table - Wikipedia

    en.wikipedia.org/wiki/Lookup_table

    In 493 AD, Victorius of Aquitaine wrote a 98-column multiplication table which gave (in Roman numerals) the product of every number from 2 to 50 times and the rows were "a list of numbers starting with one thousand, descending by hundreds to one hundred, then descending by tens to ten, then by ones to one, and then the fractions down to 1/144 ...

  5. Help:Table - Wikipedia

    en.wikipedia.org/wiki/Help:Table

    the basic code for a table row; code for color, alignment, and sorting mode; fixed texts such as units; special formats for sorting; In such a case, it can be useful to create a template that produces the syntax for a table row, with the data as parameters. This can have many advantages: easily changing the order of columns, or removing a column

  6. Multiplication algorithm - Wikipedia

    en.wikipedia.org/wiki/Multiplication_algorithm

    It requires memorization of the multiplication table for single digits. This is the usual algorithm for multiplying larger numbers by hand in base 10. A person doing long multiplication on paper will write down all the products and then add them together; an abacus-user will sum the products as soon as each one is computed.

  7. Quaternion - Wikipedia

    en.wikipedia.org/wiki/Quaternion

    Constraining any such multiplication table to have the identity in the first row and column and for the signs of the row headers to be opposite to those of the column headers, then there are 3 possible choices for the second column (ignoring sign), 2 possible choices for the third column (ignoring sign), and 1 possible choice for the fourth ...

  8. Cayley table - Wikipedia

    en.wikipedia.org/wiki/Cayley_table

    The group {1, −1} above and the cyclic group of order 3 under ordinary multiplication are both examples of abelian groups, and inspection of the symmetry of their Cayley tables verifies this. In contrast, the smallest non-abelian group, the dihedral group of order 6, does not have a symmetric Cayley table.

  9. Rijndael MixColumns - Wikipedia

    en.wikipedia.org/wiki/Rijndael_MixColumns

    Commonly, rather than implementing Galois multiplication, Rijndael implementations simply use pre-calculated lookup tables to perform the byte multiplication by 2, 3, 9, 11, 13, and 14. For instance, in C# these tables can be stored in Byte[256] arrays. In order to compute p * 3. The result is obtained this way: result = table_3[(int)p]