From 3d0ccfba34d6371b41e877189b78599ae7b2f98a Mon Sep 17 00:00:00 2001 From: altaf-creator Date: Sat, 16 Mar 2024 17:48:01 +0700 Subject: new branch! decided to revive this old project. lessons now support markdown, rebrand? --- lessons/matematika/1-exponents/1-id.md | 0 lessons/matematika/1-exponents/1.md | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 lessons/matematika/1-exponents/1-id.md create mode 100644 lessons/matematika/1-exponents/1.md (limited to 'lessons/matematika/1-exponents') diff --git a/lessons/matematika/1-exponents/1-id.md b/lessons/matematika/1-exponents/1-id.md new file mode 100644 index 0000000..e69de29 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 -- cgit v1.2.3