Monday, March 30, 2009

yawns

No more mid-terms in NUS

I have always try to be irreligious, but spiritual
Is the rain an indication of early retirement, or that the retirement shouldn't come at all.....

fuck man missed the chance to try out my final trick.....it would have been so fun

P.S:

Picture this:
Man U decides to combine team with Liverpool, Chelsea...
simply because....
they do not have enough players?

Ferguson tells Benitez:
Hey fuck man, let us just play in England so we can win, win and win medals, i love them as i spend most of my early years getting thrashed by Wenger's kids and returning empty-handed all the time....so upset, so sians....

And if we don't play in England and decide to play out of Europe we will turned into clowns by all the clubs out there man.

Sunday, March 22, 2009

nus lameness

NUS is so freaking lame
my password must include so many fiucking shit?

Let me try to beat them in their lameness
in order to remind myself of their idiotic password protocol

i should type mine here
Its

igivemy100%

Tuesday, March 17, 2009

Euler's identity

e^{i \pi} + 1 = 0, \,\!
Only in Mathematics will such beauty exist.

The three basic arithmetic operations addition, exponential, multiplication occurs once and only once.

The five fundamental mathematical constants: 1, 0, Pi, e, i.

All in 1 equation.

most beautiful theorem in mathematics
the gold standard for mathematical beauty

Gauss: "If this formula was not immediately apparent to a student on being told it, the student would never be a first-class mathematician."

Keith Devlin: "Like a Shakespearean sonnet that captures the very essence of love, or a painting that brings out the beauty of the human form that is far more than just skin deep, Euler's equation reaches down into the very depths of existence."

Friday, March 6, 2009

project

In my project i have spotted a mistake in a post-grad math textbook and two mistakes in two PhD Thesis

Yet i can't solve the final conjecture

The only consolation is the fact that Prof Godsil and Dr Karen have failed too, which means it is still an open problem.

The only fuck thing is that Newman, Godsil, Karen all have links to University of Waterloo, Faculty of Mathematics, department of Combinatorics and optimization.





Which kinda, sorta reminds me of Goh Yunn Ting again













Fuck you bitch

Sunday, March 1, 2009

Sieve of Eratosthenes

In mathematics, the Sieve of Eratosthenes is a simple, ancient algorithm for finding all prime numbers up to a specified integer[1]. It works efficiently for the smaller primes (below 10 million) [2]. It was created by Eratosthenes, an ancient Greek mathematician. When the Sieve of Eratosthenes is used in computer programming, wheel factorization is often applied before the sieve to increase the speed.

The algorithm

  1. Create a contiguous list of numbers from two to some highest number n.
  2. Strike out from the list all multiples of two (4, 6, 8 etc.).
  3. The list's next number that has not been struck out is a prime number.
  4. Strike out from the list all multiples of the number you identified in the previous step.
  5. Repeat steps 3 and 4 until you reach a number that is greater than the square root of n (the highest number in the list).
  6. All the remaining numbers in the list are prime.