View Categories

Basic Math

What is Algebra? #

Algebra is a branch of mathematics that uses symbols (like x, y) to represent numbers and relationships.

Basic Algebra Concepts #

Variables: Symbols for unknown values (x, y)
Constants: Fixed values (5, 10)
Expression: Combination of numbers & variables → 2x + 3
Equation: Two expressions equal → 2x + 3 = 7

Solving Linear Equation #

Example: #

2x+3=72x + 3 = 7

Solution:

2x=732x=4x=22x = 7 – 3 2x = 4 x = 2

What are Exponents? #

Exponents represent repeated multiplication.

Example: #

23=2×2×2=82^3 = 2 × 2 × 2 = 8

Laws of Exponents #

  • Product Rule:
    a^m × a^n = a^(m+n)
  • Division Rule:
    a^m / a^n = a^(m-n)
  • Power Rule:
    (a^m)^n = a^(m×n)
  • Zero Power:
    a^0 = 1

. What are Logarithms? #

Logarithms are the inverse of exponents.

They answer:

“To what power should the number be raised?”

Example:

log2(8)=3log₂(8) = 3

Because:

23=82^3 = 8

Common Log Rules #

  • log(a × b) = log(a) + log(b)
  • log(a / b) = log(a) - log(b)
  • log(a^n) = n log(a)

Simple Python Example

import math

# Exponent
print(2**3)   # 8

# Logarithm (base 2)
print(math.log2(8))   # 3
  • Algebra: Works with variables and equations
  • Exponents: Repeated multiplication
  • Logarithms: Reverse of exponents

Simple idea:
Exponent → Multiply
Log → Find power

💬
AIRA (AI Research Assistant) Neural Learning Interface • Drag & Resize Enabled
×