diff options
Diffstat (limited to 'lessons/matematika/1-exponents/1.md')
-rw-r--r-- | lessons/matematika/1-exponents/1.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lessons/matematika/1-exponents/1.md b/lessons/matematika/1-exponents/1.md new file mode 100644 index 0000000..5dc2a6e --- /dev/null +++ b/lessons/matematika/1-exponents/1.md @@ -0,0 +1,27 @@ +# Exponents +\\( x^n = x_1 \times x_2 \times\ \cdot\cdot\cdot\ \times x_n \\) + +## Examples +* \\(2^5 = 2 \times 2 \times 2 \times 2 \times 2 = 32 \\) +* \\(5^7 = 5 \times 5 \times 5 \times 5 \times 5 \times 5 \times 5 = 78125 \\) + +# Exponent Operations +## Multiplication +\\( a^x \times b^y = (a \times b)^{x + y} \\) +* \\( 10^4 \times 2^2 = (10 \times 2)^{4 + 2} = 20^6 \\) + +## Division +\\( a^x \div b^y = (a \div b)^{x - y} \\) +* \\( 10^3 \div 2^4 = (10 \div 2)^{(4 - 2)} = 5^2 = 25 \\) + +## Exponent + +## Zero Exponent + +## Negative Exponent + +## Fractional Exponent + +## Examples + +# Exponential Equation |