Skip to content

Latest commit

 

History

History
105 lines (60 loc) · 2.35 KB

arithmetic.rst

File metadata and controls

105 lines (60 loc) · 2.35 KB

Arithmetic

Subsets of non-complex numbers

  • Natural numbers :

    1, 2, 3, 4, 5, ...

  • Prime numbers :

    A prime number (or a prime) is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.1

    1, 2, 3, 5, 7, 11, ...

  • Integers :

    ...,  − 2,  − 1, 0, 1, 2, ...

  • Rational numers :

    $\frac{x}{y} | x, y \in \mathbb{Z}$

  • Irrational numbers 𝕀:

    non-rational real numbers, e.g. $\sqrt{2}, e, \pi, ...$

  • Real numbers :

    ℚ ∪ 𝕀

Order of operations

  1. exponents and roots
  2. multiplication and division
  3. addition and subtraction

Powers or Integer exponents2

Base definitions

b1 = b

bn + 1 = bn * b

b0 = 1

$b^{-n} = \displaystyle\frac{1}{b^n}$

$b^{n} = \displaystyle\frac{b^{n+1}}{b}, n \geq 1$

Properties

bm + n = bm * bn

(bm)n = bm * n

(b ⋅ c)n = bn ⋅ cn

Roots or Rational exponents3

$\displaystyle b^{\frac{u}{v}} = (b^u)^{\frac{1}{v}} = \sqrt[v]{b^u}$

$\displaystyle \sqrt[n]{ab} = \sqrt[n]{a}\sqrt[n]{b}$

$\displaystyle \sqrt[n]{\frac{a}{b}} = \frac{\sqrt[n]{a}}{\sqrt[n]{b}}$

Logarithms4

logbx = y, ifby = x

logb(xy) = logbx + logby

$\displaystyle \log_b \frac{x}{y} = \log_b x - \log_b y$

logb(xn) = nlogbx

$\displaystyle \log_b \sqrt[n]{x} = \frac{\log_b x}{n}$


  1. https://en.wikipedia.org/wiki/Prime_number

  2. https://en.wikipedia.org/wiki/Exponentiation#Integer_exponents

  3. https://en.wikipedia.org/wiki/Nth_root#Identities_and_properties

  4. https://en.wikipedia.org/wiki/Logarithm#Logarithmic_identities