Mathematics

NP=P Solved! $1M Millennium Prize?

NP=P Solved! $1M Millennium Prize?

Vinay Deolalikar from HP Labs claims proof of Millenium Prize problem P=NP, and (potential) $1M prize (pending peer review)! This deceptively simple little bugger (think e=mc^2) has, until now,…
The Chaos Theory Of Heart Attacks

The Chaos Theory Of Heart Attacks

Chaos is the disorder of a dynamical system but it is not completely unpredictable.   Researchers are convinced that locating the origin of chaos and watching it develop might allow science to…
Collatz sequences

Collatz sequences

I am playing with Coq and Isabelle now :) Formalizing the following: fun p(a) = if (p(a) % 2 = 0) then (p(a div 2)) else (a).The greatest divisor of a, which is power of two = p(a). I want to show…
Topological identicalness of computer programs

Topological identicalness of computer programs

(updated - more formal, removed some parts and improved general clarity) Over years, I come again and again back to Halting Problem and it's unsolvability ..now I have created a system, which is…
Halting problem solver on 1D cellular automata

Halting problem solver on 1D cellular automata

Let's say we have 1D cellular automata, bounded at beginning. The following is solution for halting problem - mathematically unproven, somewhat open here and there, but basically very near to what I…
Cellular Automata based halting checker

Cellular Automata based halting checker

The following is based on my idea that there are two main problems related to halting problem: That you can not check if program does not halt. You can always check if it does. That the finite state…