This factoid will talk about operations on numbers.
Operations are things you can do with numbers. Operations can be divided based on how many numbers they operate on.
Unary operators are operators that act on one number. For example, the negative (-) operator returns the negative of a number. Negative of 1 is -1 and negative of -1 is 1.
Binary operators operate on two numbers - addition, subtraction, multiplication and division are all binary operators because they operate on two numbers. For example, 1+2 = 3 and 2 x 4 = 8.
Question: Which of these are unary operations and which are binary operations?
Addition is when we combine two numbers - if we have 3 apples and get 5 more apples, we have 3 + 5 = 8 apples. Subtraction is the operation of taking away a number from another. If we have 5 bananas, and eat 2 of them, we are left with 5 - 2 = 3 bananas. Multiplication is the operation of repeatedly adding the same number a specific number of times. So if there are 3 people, and we give each 2 balls, they have 3 x 2 = 6 balls in total. Division is the operation of dividing a number of objects into another number. If we have 6 candies, and have to divide them between 2 people how many will each get? 6/2 = 3.
Absolute value is an operation where the absolute value of a number is the positive number that it contains. It is represented by abs() or by two bars | |. For example,
abs(5) = | 5 | = 5
abs(-5) = | -5 | = 5
Here are examples that show the rules of these operations with positive and negative numbers:
5 + 3 = 8 (positive number + positive number = the simple sum of the two numbers)
5 + (-3) = 5 - 3 = 2 (adding a negative number to a positive number is the same as subtracting the absolute value of the negative number from the positive number).
-5 + (-3) = -(5 + 3) = -8 (adding two negative numbers gives a negative number that is the sum of the absolute values of the two numbers.
5 - 3 = 2
5 - (-3) = 5 + 3 = 8
-5 - (-3) = -5 + 3 = -2
5 x 3 = 15
5 x (-3) = -15
-5 x (-3) = 15
12/4 = 3
(-12)/4 = -3
(-12)/(-4) = 3
12/(-4) = -3
Question: solve the following problems:
The next operation to look at is the power operation. This is the operation that involves repeated multiplication of the same number. 3 x 3 = 9. We can also state this as 3 to the power of 3 = 9 or 3 ^ 2 = 9 or 32 = 9. Similarly, 43= 4 x 4 x 4 = 64. A special case of power is that any number (other than 0) to the power of 0 is 1. So 3^0 = 1 and 4567^0 = 1.
Questions:
The next operation is called the logarithm operation, which is written as log. In one way, it is the opposite of a power operation.
So, if 10^3 = 1000, then 3 = log101000 (which we read as the logarithm of 1000 to base 10 is 3). Now, the logarithm is also a binary operator, since it operates on two numbers (in the above example, 1000 and the base : 10).
Questions:
Another operation related to the power is the root operation - since 3^2 = 9, we say that the second root or the square root of 9 is 3. This is written as √9 = 3. Since 4^3 = 64, we can say that the third root or cube root of 64 is 4. This is written as 3√64 = 4. For the square root, we use the √ symbol by itself. For higher roots like 3rd, 4th and higher, we use symbols like 3√, 4√, etc.
Questions:
We will learn many more operations in our future math factoids.
This ends factoid #5 on math operations.
Operations are things you can do with numbers. Operations can be divided based on how many numbers they operate on.
Unary operators are operators that act on one number. For example, the negative (-) operator returns the negative of a number. Negative of 1 is -1 and negative of -1 is 1.
Binary operators operate on two numbers - addition, subtraction, multiplication and division are all binary operators because they operate on two numbers. For example, 1+2 = 3 and 2 x 4 = 8.
Question: Which of these are unary operations and which are binary operations?
- 5 + 6 = 7
- abs (-72) = 72
- 4 / 2 = 2
- 5 x 6 = 30
- 12 - 5 = 7
Addition is when we combine two numbers - if we have 3 apples and get 5 more apples, we have 3 + 5 = 8 apples. Subtraction is the operation of taking away a number from another. If we have 5 bananas, and eat 2 of them, we are left with 5 - 2 = 3 bananas. Multiplication is the operation of repeatedly adding the same number a specific number of times. So if there are 3 people, and we give each 2 balls, they have 3 x 2 = 6 balls in total. Division is the operation of dividing a number of objects into another number. If we have 6 candies, and have to divide them between 2 people how many will each get? 6/2 = 3.
Absolute value is an operation where the absolute value of a number is the positive number that it contains. It is represented by abs() or by two bars | |. For example,
abs(5) = | 5 | = 5
abs(-5) = | -5 | = 5
Here are examples that show the rules of these operations with positive and negative numbers:
5 + 3 = 8 (positive number + positive number = the simple sum of the two numbers)
5 + (-3) = 5 - 3 = 2 (adding a negative number to a positive number is the same as subtracting the absolute value of the negative number from the positive number).
-5 + (-3) = -(5 + 3) = -8 (adding two negative numbers gives a negative number that is the sum of the absolute values of the two numbers.
5 - 3 = 2
5 - (-3) = 5 + 3 = 8
-5 - (-3) = -5 + 3 = -2
5 x 3 = 15
5 x (-3) = -15
-5 x (-3) = 15
12/4 = 3
(-12)/4 = -3
(-12)/(-4) = 3
12/(-4) = -3
Question: solve the following problems:
- 7 + 4 = ?
- 7 + (-4) = ?
- (-7) + (-4) = ?
- -7 + 4 = ?
- 7 x (-4) = ?
- (-7) x (-4) = ?
- 9/3 = ?
- (-9)/3 = ?
- (-9)/(-3) = ?
The next operation to look at is the power operation. This is the operation that involves repeated multiplication of the same number. 3 x 3 = 9. We can also state this as 3 to the power of 3 = 9 or 3 ^ 2 = 9 or 32 = 9. Similarly, 43= 4 x 4 x 4 = 64. A special case of power is that any number (other than 0) to the power of 0 is 1. So 3^0 = 1 and 4567^0 = 1.
Questions:
- 3 ^ 2 = ?
- 3 x 2 = ?
- 5 ^ 3 = ?
The next operation is called the logarithm operation, which is written as log. In one way, it is the opposite of a power operation.
So, if 10^3 = 1000, then 3 = log101000 (which we read as the logarithm of 1000 to base 10 is 3). Now, the logarithm is also a binary operator, since it operates on two numbers (in the above example, 1000 and the base : 10).
Questions:
- log28 = ?
- log327 = ?
Another operation related to the power is the root operation - since 3^2 = 9, we say that the second root or the square root of 9 is 3. This is written as √9 = 3. Since 4^3 = 64, we can say that the third root or cube root of 64 is 4. This is written as 3√64 = 4. For the square root, we use the √ symbol by itself. For higher roots like 3rd, 4th and higher, we use symbols like 3√, 4√, etc.
Questions:
- √25 = ?
- 3√125 = ?
- √16 = ?
We will learn many more operations in our future math factoids.
This ends factoid #5 on math operations.