Skip to main content

Does science exist, if God doesn't?

Scientists have always been believed to have a distinct attribute - reasoning. 

A couple of days ago, I was exploring the ways to prove something scientifically. Proof by induction, by contradiction, direct proofs. For the sake of curiosity, I started digging in deep to find out if there's something that has been accepted but not yet proven. My findings turned out to be shocking. Let me introduce a few examples first:

When studying system of Numbers, we have established that numbers exists, like Natural numbers. Then we further devise certain rules to make them usable. Like Rule A: 1 is a Natural number. Rule B: adding 1 to a Natural number gives us a Natural number. But is there a mathematical proof that  N + 1 = N? A common mind would call this a senseless question, claiming that it is obvious. But mathematics doesn't function on how correct something feels. It demands complete proof to declare something "obvious".

The answer is that there is no proof because we assume these rules to be true. This is not the only assumption we make. In primary arithmetic, x + (y - z) = (x + y) - z is also assumed to be true, same applies to trigonometry, algebra, calculus and other branches of mathematics. Such assumptions are called axioms and all mathematics is built upon these axioms. This leads us to another question: "why do we accept them to be true if there is no absolute proof?". Simply, because there is no proof that these axioms are false. Because they appeared to be true for every known number that could be applied on them.

Another, somehow complicated example is from complexity theory. Theorists believe that all the P-type problems (problems that can be solved in polynomial time) are a subset of NP-type problems, meaning that a polynomial time solution exists for non-deterministic machines, if it exists for deterministic machines. But there is no absolute proof that this postulate will be true for each and every problem.

The deeper we go, the more we learn that these axioms have no basis other than that they are self-proving and that all science exists on these assumptions.

Let us now devise an axiom that for every ongoing event E, there exists an initiator. This axiom is evidently true for any event that occurs in real life. Now we can further define another rule that if E occurred because of another event D, then there exists an initiator for D as well. Modifying the same a little further, if an object A exists, it exists as a result of an event E, caused by an initiator. This can be proven wrong iff an object is ever observed that was not caused by any event, or an event occurs by itself without any external influence.

Now if the Universe exists, there must have been a mega event that caused it, initiated by an initiator. This is our axiom. If Mathematics - the mother of all Sciences - is built upon axioms that are believed to be true unless proven wrong, then is there any reason to deny the above axiom, especially when we have observed billions of events following the same rules? This isn't a new question. Just another way of asking it. Why is the fashion of accepting axioms not same when it comes to proving existence of God, the Grand designer of the Universe, or even Multiverse?"

Answers?

Comments

Popular posts from this blog

A faster, Non-recursive Algorithm to compute all Combinations of a String

Imagine you're me, and you studied Permutations and Combinations in your high school maths and after so many years, you happen to know that to solve a certain problem, you need to apply Combinations. You do your revision and confidently open your favourite IDE to code; after typing some usual lines, you pause and think, then you do the next best thing - search on Internet. You find out a nice recursive solution, which does the job well. Like the following: import java.util.ArrayList; import java.util.Date; public class Combination {    public ArrayList<ArrayList<String>> compute (ArrayList<String> restOfVals) {       if (restOfVals.size () < 2) {          ArrayList<ArrayList<String>> c = new ArrayList<ArrayList<String>> ();          c.add (restOfVals);          return c;       }       else {          ArrayList<ArrayList<String>> newList = new ArrayList<ArrayList<String>> ();          for (String

How to detach from Facebook... properly

Yesterday, I deactivated my Facebook account after using it for 10 years. Of course there had to be a very solid reason; there was, indeed... their privacy policy . If you go through this page, you might consider pulling off as well. Anyways, that's not what this blog post is about. What I learned from yesterday is that the so-called "deactivate" option on Facebook is nothing more than logging out. You can log in again without any additional step and resume from where you last left. Since I really wanted to remove myself from Facebook as much as I can, I investigated ways to actually delete a Facebook account. There's a plethora of blogs on the internet, which will tell you how you can simply remove Facebook account. But almost all of them will either tell you to use "deactivate" and "request delete" options. The problem with that is that Facebook still has a last reusable copy of your data. If you really want to be as safe from its s

A step-by-step guide to query data on Hadoop using Hive

Hadoop empowers us to solve problems that require intense processing and storage on commodity hardware harnessing the power of distributed computing, while ensuring reliability. When it comes to applicability beyond experimental purposes, the industry welcomes Hadoop with warm heart, as it can query their databases in realistic time regardless of the volume of data. In this post, we will try to run some experiments to see how this can be done. Before you start, make sure you have set up a Hadoop cluster . We will use Hive , a data warehouse to query large data sets and a adequate-sized sample data set, along with an imaginary database of a travelling agency on MySQL; the DB  consisting of details about their clients, including Flight bookings, details of bookings and hotel reservations. Their data model is as below: The number of records in the database tables are as: - booking: 2.1M - booking_detail: 2.1M - booking_hotel: 1.48M - city: 2.2K We will write a query that