What Do You Think About "The Proposition"
What Do You Think About "The Proposition"
MATHEMATICS COURSE
2022
What do you think about
“The proposition”
by
MASALIH ZAINAB
22/12/2022
Authored by: 马莎-92115855E129
马莎 92115855E129
Table of Contents
Introduction .............................................................................................................................................3
I. What is logic? ...................................................................................................................................4
Importance of Mathematical Logic......................................................................................................4
II. What is a proposition? .....................................................................................................................5
1. Connectives:.................................................................................................................................6
III. De Morgan’s Law: ............................................................................................................................8
1. Special Conditional Statements: ..................................................................................................8
2. Precedence order of Logical Connectives: ..................................................................................9
IV. Logical Equivalences: .....................................................................................................................10
Conclusion:.............................................................................................................................................10
2
马莎 92115855E129
Introduction
3
马莎 92115855E129
I. What is logic?
Logic is the basis of all mathematical reasoning, and of all automated reasoning.
The rules of logic specify the meaning of mathematical statements.
Importance of Mathematical Logic
The rules of logic give precise meaning to mathematical statements. These rules
are used to distinguish between valid and invalid mathematical arguments.
Apart from its importance in understanding mathematical reasoning, logic has
numerous applications in Computer Science, varying from design of digital
circuits to the construction of computer programs and verification of correctness
of programs.
Propositional logic is a branch of mathematical logic which studies the logical
relationships between propositions (or statements, sentences, assertions) taken
as a whole, and connected via logical connectives.
Propositional logic is also known by the names sentential logic, propositional
calculus and sentential calculus. It is useful in a variety of fields, including,
but not limited to:
• Workflow problems
• Computer logic gates
• Computer science
• Game strategies
• Designing electrical systems
4
马莎 92115855E129
All the above sentences are propositions, where the first two are Valid (True)
and the third one is Invalid (False).
Some sentences that do not have a truth value or may have more than one truth
value are not propositions.
For Example:
1. What time is it?
2. Go out and play.
3. x + 1 = 2.
The above sentences are not propositions as the first two do not have a truth
value, and the third one may be true or false. To represent propositions,
propositional variables are used.
We use letters to denote propositional variables (or statement variables), that is,
variables that represent propositions, just as letters are used to denote numerical
variables.
By Convention, these variables are represented by small alphabets such as p, q,
r, s, ….
The area of logic which deals with propositions is called propositional calculus
or propositional logic.
5
马莎 92115855E129
1. Connectives:
✓ Truth Table
Since we need to know the truth value of a proposition in all possible scenarios,
we consider all the possible combinations of the propositions which are joined
together by Logical Connectives to form the given compound proposition. This
compilation of all possible scenarios in a tabular format is called a truth table.
1=True; 0=False
6
马莎 92115855E129
7
马莎 92115855E129
1=True; 0=False
As we know that we can form new propositions using existing propositions and
logical connectives.
There are three related conditional statements that occur so often that they have
special names.
Statement If P, then Q
Converse If Q, then P
Contrapositive If not Q, then not P
Inverse If not P, then not Q
8
马莎 92115855E129
9
马莎 92115855E129
Conclusion:
As software engineering student, I see the propositional logic is so important in
my major since it is widely adopted in advanced search in AI in solving
complex problems.
10