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:
- use data to come to conclusions (inductive),
- to not rely on explanatory reasoning (abductive),
- prefer to use logic over data (deductive).
Roots
All three styles of reasoning are based on the Latin ducere meaning to lead:
- inductive = prefix in means “toward” - induction leads you to a conclusion,
- abductive = prefix ab means “away” - abduction leads you to take away the best explanation,
- 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:
- observation = all our observed website crashes are to browser incompatibility,
- conclusion = any website crash is likely due to browser incompatibility.
Database upgrade:
- observation = we have upgraded our database to an untested beta version, which is reported to be slow,
- conclusion = our product will likely now be slow.
Failing database upgrades:
- observation = out of the last five database upgrades, four of them have failed and caused system downtime.
- conclusion: there is a high probability that future database upgrades may fail and cause system downtime.
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:
- observation = our website has crashed,
- conclusion = our best guess is that this is due to browser incompatibility.
Database upgrade:
- observation = we have upgraded our database to an untested beta version,
- conclusion = our product will likely be slow, as beta versions are often unoptimized.
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:
- premises = our frontend framework is incompatible with Internet Explorer a new customer is using Internet Explorer.
- conclusion = our website will crash when this customer uses the product.
Database upgrade:
- premises = our database upgrade will move us from a non-relational to a relational database, relational databases are slow with nested data, our data is nested,
- conclusion = our new database will be slow.
Thanks for reading!