{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same catalogue, so a page rendered by a non-owner points its canonical at the owner instead of competing with it. Falls back to this site for static/self-owned pages. #}
🍋
Menu
Math

Boolean Algebra

A branch of algebra operating on true/false values using AND, OR, NOT operators, foundational to digital logic.

Chi tiết kỹ thuật

Boolean Algebra answers 'to what power must the base be raised to produce this value?' Common bases: natural log (ln, base e ≈ 2.718), common log (log10), and binary log (log2, used in computing for bit-depth and information theory). Logarithmic scales are used for pH (chemistry), decibels (audio), Richter magnitude (seismology), and algorithm complexity analysis (O(log n)). The slide rule — the engineer's calculator before electronics — operated entirely on logarithmic principles.

Ví dụ

```
Logarithm identities:

  log_b(x) = y  means  b^y = x

  log₁₀(1000) = 3   (10³ = 1000)
  log₂(256)   = 8   (2⁸ = 256)
  ln(e)       = 1   (e¹ = e ≈ 2.718)

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

Công cụ liên quan

Thuật ngữ liên quan