In the previous page I mentioned some common operations. It may seems a lot, but the operations are really connected with each other: They often work in pairs. Think of one operations "do" something to the number, then there will be another operation "undo" the work. For example, subtraction "undo" addition, so if you add 3 then subtract 3, essentially you did nothing. Those pairs are called " inverse operation " of each other. Addition and Subtraction are inverse operations Multiplication and Division are inverse operations Power and Root are inverse operations Exponential and Logarithm are inverse operations... Some operations are more "compact" way of doing the other operations: Multiplication is a compact way of doing addition, say to add 2 five times, you can either do addition: 2+2+2+2+2, or you can simply do 2*5. Now, which operations will you choose when you need to add 2 a hundred times? Power is a compact way of doing multipli...