Ahmad Asaad

0xฮ›rcher โ€” Rustacean ๐Ÿฆ€ โ€” Stands with Ghaza ๐Ÿ‡ต๐Ÿ‡ธ๐Ÿ”ป โ€” Engineering student at Al-Azhar University

Our Computational Power & Ambitions

Given that computers are constantly getting faster, you might wonder if all computational problems will eventually become trivial to solve. In fact, the faster computers get, the more relevant asymptotic analysis becomes. Our computational ambitions have always grown with our computational power, so as time goes on, we will consider larger and larger problem sizes.

โ€” Tim Roughgarden. Algorithms Illuminated. Part 1

quote_image

Universal Language of Mathematics

Mathematics is essential to our understanding the invisible patterns of the universe. In 1623, Galileo wrote,

"The great book of nature can be read only by those who know the language in which it was written. And this language is mathematics."

โ€” Keith Devlin. Introduction to Mathematical Thinking

quote_image

Summation of the $n$ natural numbers from $1$ to $n$

Summation of the $n$ natural numbers from $1$ to $n$ can be calculated using this formula:

$$ \sum_{i=1}^{n}i = \frac{n(n+1)}{2} $$

and this formula is the same formula used for calculating the $n$th triangular number:

$$ T_n = \frac{n(n+1)}{2} $$

For example:

  • $ T_1 = \frac{1(1+1)}{2} = 1 $
  • $ T_2 = \frac{2(2+1)}{2} = 1 + 2 = 3 $
  • $ T_3 = \frac{3(3+1)}{2} = 1 + 2 + 3 = 6 $

Hello World!

First post on this blog.

Katex

Inline: $ Hello \enspace World! $

Outline:

$$ Hello \enspace World! $$

Mermaid

    flowchart TD
    A@{ shape: stadium, label: "Start" }
    A --> B@{ shape: lean-r, label: "print \"Hello World!\"" }
    B --> C@{ shape: stadium, label: "Exit" }