Paradox is Truth

home | about | principles | recommend | reading | buddhism

Reasoning Styles for Software Engineers

How different software engineers reason about code and software.

graph TD subgraph Deductive e[Logic] --> f[Necessary Observation] end subgraph Adbuctive c[Data] --> d[Inferred Conclusion] end subgraph Inductive a[Data] --> b[Probable Conclusion] end

I recently joined an early stage startup as a senior engineer, and was surprised at the different styles of reasoning I encountered - particularly when they didn’t align with mine!

Different reasoning styles exist - instead of being confused, we can use the language and understanding from the philosophy of how others reason:

  1. use data to come to conclusions (inductive),
  2. to not rely on explanatory reasoning (abductive),
  3. prefer to use logic over data (deductive).

Roots

All three styles of reasoning are based on the Latin ducere meaning to lead:

  1. inductive = prefix in means “toward” - induction leads you to a conclusion,
  2. abductive = prefix ab means “away” - abduction leads you to take away the best explanation,
  3. deductive = prefix de means “from” - deductive derives conclusions from logic.

1 - Inductive Reasoning

Inductive reasoning is reasoning from data to a theory.

Inductive reasoning moves from the specific to the general - observations (data) give rise to generalizations (conclusions).

Because data can never be confirmed to be complete, inductive reasoning can only lead us to probable conclusions.

Examples of Inductive Reasoning

Browser incompatibility:

Database upgrade:

Failing database upgrades:

2 - Adbuctive Reasoning

Abductive reasoning is similar to inductive - both methods reason from data to theory.

Adbuctive reasoning is different than inductive because it relies on explanatory reasoning - the explanation we make is not present in the data.

Unlike the inductive case, in abductive reasoning our explanation doesn’t come from the data itself - instead it is our best guess at what explains the data.

Examples of Abductive Reasoning

Browser incompatibility:

Database upgrade:

3 - Deductive Reasoning

Deductive reasoning is reasoning from theory to data.

Deductive reasoning moves from general premises to specific observations - generalizations give rise to observations.

Deductive reasoning starts with theories or premises about the world, and allows us generate conclusion that are necessarily true (if the premises are true). Unlike with the data that we use in inductive and abductive reasoning, there is no uncertainty about logic.

Examples of Deductive Reasoning

Browser incompatibility:

Database upgrade:


Thanks for reading!