summaryrefslogtreecommitdiff
path: root/lessons/matematika/1-exponents/1.md
diff options
context:
space:
mode:
authoraltaf-creator <dev@altafcreator.com>2024-07-18 10:39:11 +0700
committeraltaf-creator <dev@altafcreator.com>2024-07-18 10:39:11 +0700
commit599e5bb3b9cf774d4c3680644cf4bd0596fd34c0 (patch)
treeaa697860db979d4b3f82fbbf80141153aa89db26 /lessons/matematika/1-exponents/1.md
parent5905c9767d071532c90aaf703108eb6fe6d5971f (diff)
Start migrating (and rewriting) lessons, NEW FEATURE: quizzes (unfinished)
Diffstat (limited to 'lessons/matematika/1-exponents/1.md')
-rw-r--r--lessons/matematika/1-exponents/1.md41
1 files changed, 33 insertions, 8 deletions
diff --git a/lessons/matematika/1-exponents/1.md b/lessons/matematika/1-exponents/1.md
index b8224b2..16bf26b 100644
--- a/lessons/matematika/1-exponents/1.md
+++ b/lessons/matematika/1-exponents/1.md
@@ -7,13 +7,15 @@
# Exponent Operations
## Multiplication
-If an exponented number is multiplied by another exponented number, the exponents would be summed together (instead of being multiplied)
+If an exponented number is multiplied by another exponented number, the
+exponents would be summed together (instead of being multiplied)
\\( a^x \times b^y = (a \times b)^{x + y} \\)
* \\( 10^4 \times 2^2 = (10 \times 2)^{4 + 2} = 20^6 \\)
## Division
-If an exponented number is multiplied by another exponented number, the exponents would be subtracted together (instead of being divided)
+If an exponented number is multiplied by another exponented number, the
+exponents would be subtracted together (instead of being divided)
\\( a^x \div b^y = (a \div b)^{x - y} \\)
* \\( 10^3 \div 2^4 = (10 \div 2)^{(4 - 2)} = 5^2 = 25 \\)
@@ -35,13 +37,36 @@ If a number is raised to the power of **zero**, the result is **one**.
* \\( 69.420^0 = 1 \\)
## Negative Exponent
-If a number is raised to a negative power, also called as an inverse, it would be equal to...
+If a number is raised to a negative power, also called as an inverse, it would
+be equal to...
\\( a^{-b} = \dfrac{1}{a^b} \\)
-
## Fractional Exponent
-
-# Examples
-
-## Exponential Equation
+**Denominator (y)** root of the **number (a)** to the power of the **Numerator (x)**.
+
+\\( a^{\frac{x}{y}} = \sqrt[y]{a^x} \\)
+* \\( 5^{\frac{1}{2}} = \sqrt[2]{5} \\)
+* \\( 7^{\frac{2}{3}} = \sqrt[3]{7^2} \\)
+
+# Exponential Equation
+1. $$
+\begin{aligned}
+2^{x + 5} &= 64 \\\\
+2^{x + 5} &= 2^6 &\leftarrow\textnormal{ you can change 64 into an exponented two (}2^x\textnormal{)} \\\\
+x + 5 &= 6 &\textnormal{eliminate the 2s} \\\\
+x &= 6 - 5 \\\\
+&= 1
+\end{aligned}
+$$
+1. $$
+\begin{aligned}
+16^{x + 2} &= 2^5 \\\\
+(2^4)^{x + 2} &= 2^5 \\\\
+2^{4x + 8} &= 2^5 \\\\
+4x + 8 &= 5 \\\\
+4x &= 5 - 8 \\\\
+4x &= -3 \\\\
+x &= -\dfrac{3}{4}
+\end{aligned}
+$$