




























































































Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An overview of discrete mathematics, focusing on logic, predicates, and quantifiers. It covers topics such as propositions, logical connectives, truth tables, logical equivalences, predicates, quantifiers, and rules of inference. Definitions, examples, and symbolic representations to illustrate key concepts. It is suitable for students studying discrete mathematics or computer science, offering a structured introduction to the fundamental principles of mathematical logic and reasoning. This resource is designed to enhance understanding and application of discrete mathematical concepts in various fields. The document also includes exercises and examples to reinforce learning and comprehension. It is a valuable resource for students seeking to grasp the basics of discrete mathematics and its applications.
Typology: Lecture notes
1 / 103
This page cannot be seen from the preview
Don't miss anything!





























































































A set is called countable , if it is finite or countably infinite. A set that is not countable is uncountable
A set S is countable if there is a bijection
The sets in the discrete mathematics are often finite or countable, whereas those in continuous mathematics are often uncountable. 8/19/ Indian Institute of Information Technology, Kottayam 2
Discrete Mathematics is the study of discrete objects and the relationships that bind them. Importance of discrete mathematics is that information is stored and manipulated by computing machines in a discrete fashion. Discrete Mathematics provides the mathematical foundation for many computer science courses. Data structures Algorithms Data base Theory Automata Theory^ Compiler Theory Computer Security Operating Systems 8/19/ Indian Institute of Information Technology, Kottayam 4
Basic Concepts
In computing, there are two primary types of computers: digital and analog. Digital computers process information in binary digits or bits, while analog computers process information in continuously varying physical quantities such as voltage or current. Digital computers process the discrete object 0 and 1, whereas analog computers process continuous data(data obtained through measurement). 8/20/2024 Indian Institute of Information Technology, Kottayam 3
Discrete Mathematics is the study of discrete objects and the relationships that bind them. Importance of discrete mathematics is that information is stored and manipulated by computing machines in a discrete fashion. Discrete Mathematics provides the mathematical foundation for many computer science courses. Data structures Algorithms Data base Theory Automata Theory Compiler Theory Computer Security Operating Systems 8/20/2024 Indian Institute of Information Technology, Kottayam 4
A proposition (statement) is a declarative sentence that is either true or false, but not both. Example
Atomic Statement Declarative sentences which cannot be further split into simpler sentences are called atomic statements. Example: Rana is a boy Note: Atomic statements do not contain connectives. Five basic connectives 8/20/2024 Indian Institute of Information Technology, Kottayam 7 S.N English Language Logical connectives Type of operator Symbols 1 and Conjuction binary ⋀ 2 or Disjunction binary ⋁ 3 not Negation Unary ¬ 4 If then Implication or conditional binary → 5 If and only if Biconditional binary (^) ⟷
The conjuction of two statement p and q is the statement p⋀q which is read as ‘p and q’. The statement p⋀q has the truth value (T) whenever both p and q have truth value (T) otherwise it has the truth value (F). Truth table Translate the statement ‘Guru and Roy went up the hill’ into symbolic form. Solution: Let p: Guru went up the hill q: Roy went up the hill Then the statement can be written in symbolic form as p⋀q. 8/20/2024 Indian Institute of Information Technology, Kottayam 9 p q p ⋀ q T T T T F F F T F F F F
Disjunction(Or) The disjuction of two statement p and q is the statement p⋁q which is read as ‘p or q’. The statement p⋁q has the truth value (F)only when both p and q have truth value (F) otherwise it has the truth value (T). Truth table Translate the statement ‘There is something wrong with the bulb or with the wiring’ into symbolic form. Solution: Let p: There is something wrong with the bulb q: Wrong with the wiring Then the statement can be written in symbolic form as p⋁q. 8/20/2024 Indian Institute of Information Technology, Kottayam 10 p q p ⋁ q T T T T F T F T T F F F
The negation of a statement is generally formed by introducing the word ‘not’ at a proper place in the statement. If p denotes a statement, then the negation of p is written as
Truth table p: Mumbai is a city ¬p : Mumbai is not a city 8/20/2024 Indian Institute of Information Technology, Kottayam 12 p ¬p T F F T
Two propositions p and q can be combined to form statements of the form: If p, then q, such a statement is an implication, denoted by p →q. The component p is the hypothesis of the implication and q the conclusion. The statement p →q has a truth value F when q has the truth value F and p has truth value T, otherwise it has truth value T. p q p → q T T T T F F F T T F F T 8/20/2024 Indian Institute of Information Technology, Kottayam 13