Arithmetic/Number Operations/Multiplication

From testwiki
Revision as of 14:59, 16 December 2023 by imported>Wikigucoder (I had to remove the complex number thing again… (it is not called into here, and one certainly doesn’t need them to understand basic operations))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Multiplication is one of the four basic operations of arithmetic. The operation is usually shown by the times symbol (*). This is the act of taking a number and adding it to itself a certain number of times. Think of multiplication as a shorthand way of performing repeated addition. For example, the following equation:

5*4=20

This means, "Multiplying five by four gives twenty," or put more simply, "five times four equals twenty." In this example, 5 and 4 are the factors, and 20 is the product, the result of the multiplication.

Properties of Multiplication

Commutativity

When multiplying two numbers together, it doesn't matter what order the numbers are placed in, since the outcome will be the same. That is to say for any two numbers x and y, x*y=y*x For example, the two equations end up with the same result.

3*7=21
7*3=21

Associativity

When multiplying multiple numbers together, the order in which you multiply the numbers doesn't matter, since the outcome will be the same. For any three numbers x,y and z, (x*y)*z=x*(y*z) For example, the two equations will end up with the same result.

(2*3)*4=6*4=24
2*(3*4)=2*12=24

The Multiplicative Identity

The number 1 is known as the multiplicative identity. This means if you multiply any number with one, you end up with that original number. For example:

4*1=4
6.24*1=6.24