What is the difference between tautology, contradictions and contingencies?

Who studies mathematics or develops algorithms should know that mathematical logic is essential for several areas of knowledge, e.g. in computing (programming), so I would like to know, what is the difference between tautology, contradictions and contingencies?

Author: Maniero, 2016-06-24

1 answers

Tautology

Tautology is a proposition whose logical value is always true.

Example:

The Proposition p ∨ (~p) is a tautology, since its logical value is always V, according to the truth-table.

insert the description of the image here

The Proposition (P Λ q) → (p → q) is a tautology, since the last column of the truth-table has only V.

insert the description of the image here

Contradiction

Contradiction is a proposition whose logical value is always false.

The Proposition P Λ (~p) is invalid,since the results with true and false always give false at the end of the column.

insert the description of the image here

The Proposition ~(P ν q) Λ (P Λ Q) is invalid, since the last column of the truth-table has only F.

insert the description of the image here

Contingency

When a proposition is neither tautological nor contrary, we call it a contingency or contingent proposition or indeterminate proposition.

Comments

Note that since a tautology is always true, its denial will always assume the logical value of falsehood, thus resulting in a contradiction.

About the word tautology:

1.Vice of language that consists of saying, in various forms, always to same thing: "The usual grammar is a series of vicious circles, an infinite tautology." (João Ribeiro, Cartas Retruidas, p. 45.)

And if you want a more complex explanation on these subjects, I suggest reading this article .

Conclusion

Tautology, contradiction and contingency are important concepts to continue the study of mathematical and computational logic.It is interesting that at the beginning of wanting to learn the art of programming,these logical parts are taught because a good programmer needs logic.

 9
Author: Falion, 2020-06-11 14:45:34