Propositional and First Order Logic.Last Updated : 13 Mar, 2018ReadDiscuss(20+)CoursesPropositional and First Order Logic.Please wait while the activity loads.If this activity does not load, try refreshing your browser. Also, this page requires javascript. Please visit using a browser with javascript enabled.If loading fails, click here to try againQuestion 1What is the logical translation of the following statement? "None of my friends are perfect." ABCDGATE CS 2013 Propositional and First Order Logic. Discuss itQuestion 1-Explanation: F(x) ==> x is my friend P(x) ==> x is perfect D is the correct answer. A. There exist some friends which are not perfect B. There are some people who are not my friend and are perfect C. There exist some people who are not my friend and are not perfect. D. There doesn't exist any person who is my friend and perfect Question 2ABCDGATE CS 2013 Propositional and First Order Logic. Discuss itQuestion 2-Explanation: Given statement is : ¬ ∃ x ( ∀y(α) ∧ ∀z(β) ) where ¬ is a negation operator, ∃ is Existential Quantifier with the meaning of "there Exists", and ∀ is a Universal Quantifier with the meaning " for all " , and α, β can be treated as predicates. here we can apply some of the standard results of Propositional and 1st order logic on the given statement, which are as follows : [ Result 1 : ¬(∀x P(x)) <=> ∃ x¬P(x), i.e. negation of "for all" gives "there exists" and negation also gets applied to scope of quantifier, which is P(x) here. And also negation of "there exists" gives "for all", and negation also gets applied to scope of quantifier ] [ Result 2 : ¬ ( A ∧ B ) = ( ¬A ∨ ¬B ) ] [ Result 3 : ¬P ∨ Q <=> P -> Q ] [ Result 4 : If P ->Q, then by Result of Contrapositive, ¬Q -> ¬P ] Now we need to use these results as shown below: ¬ ∃ x ( ∀y(α) ∧ ∀z(β) ) [ Given ] => ∀ x (¬∀y(α) ∨ ¬∀z(β) ) [ after applying Result 1 & Result 2 ] => ∀ x ( ∀y(α) -> ¬∀z(β) ) [after applying Result 3 ] => ∀ x ( ∀y(α) -> ∃z(¬β) ) [after applying Result 1] which is same as the statement C. Hence the Given Statement is logically Equivalent to the statement C. Now, we can also prove that given statement is logically equivalent to the statement in option B. Let's see how ! The above derived statement is : ∀ x ( ∀y(α) -> ∃z(¬β) ) Now this statement can be written as (or equivalent to) : => ∀ x ( ∀z(β) -> ∃y(¬α) ) [after applying Result 4 ] And this statement is same as statement B. Hence the Given statement is also logically equivalent to the statement B. So, we can conclude that the Given statement is NOT logically equivalent to the statements A and D. Hence, the correct answer is Option A and Option D. But in GATE 2013, marks were given to all for this question.Question 3What is the correct translation of the following statement into mathematical logic? “Some real numbers are rational” ABCDGATE CS 2012 Propositional and First Order Logic. Discuss itQuestion 3-Explanation: (A) "There exist some numbers which are either real OR rational" (B) "All real numbers are rational" (C) "There exist some numbers which are both real AND rational" (D) "There exist some numbers for which rational implies real" (See Propositional Logic for details) Clearly answer C is correct among allQuestion 4Which one of the following options is CORRECT given three positive integers x, y and z, and a predicate? P(x) = ¬(x=1)∧∀y(∃z(x=y*z)⇒(y=x)∨(y=1)) P(x) being true means that x is a number other than 1 P(x) is always true irrespective of the value of x P(x) being true means that x has exactly two factors other than 1 and x P(x) being true means that x is a prime number GATE CS 2011 Propositional and First Order Logic. Discuss itQuestion 4-Explanation: The predicate is evaluated as P(x) = (¬(x=1))∧(∀y(∃z(x=y*z)⇒((y=x)∨(y=1)))) P(x) being true means x ≠ 1 and For all y if there exists a z such that x = y*z then y must be x (i.e. z=1) or y must be 1 (i.e. z=x) It means that x have only two factors first is 1 and second is x itself. This predicate defines the prime number.Question 5Suppose the predicate F(x, y, t) is used to represent the statement that person x can fool person y at time t. which one of the statements below expresses best the meaning of the formula ∀x∃y∃t(¬F(x, y, t))?Everyone can fool some person at some timeNo one can fool everyone all the timeEveryone cannot fool some person all the timeNo one can fool some person at some timeGATE CS 2010 Propositional and First Order Logic. Discuss itQuestion 5-Explanation: ∀ x ∃ y ∃ t(¬ F(x,y,t)) => ∀ x ¬(∀ y ∀ t F(x,y,t)) Question 6Which one of the following is the most appropriate logical formula to represent the statement? "Gold and silver ornaments are precious". The following notations are used: G(x): x is a gold ornament S(x): x is a silver ornament P(x): x is precious∀x(P(x)→(G(x)∧S(x)))∀x((G(x)∧S(x))→P(x))∃x((G(x)∧S(x))→P(x)∀x((G(x)∨S(x))→P(x))GATE-CS-2009 Propositional and First Order Logic. Discuss itQuestion 6-Explanation: => This statement can be expressed as => For all X, x can be either gold or silver then the ornament X is precious => For all X, (G(X) v S(x)) => P(X).This solution is contributed by Anil Saikrishna Devarasetty .Question 7The binary operation ₡ is defined as follows PQP₡BTTTTFTFTFFFTWhich one of the following is equivalent to P∨Q? ¬Q₡¬PP₡¬Q¬P₡¬Q¬P₡¬QGATE-CS-2009 Propositional and First Order Logic. Discuss itQuestion 7-Explanation: P₡¬Q = Q' ⇢ P = (Q')' v P = Q v PQuestion 8Which of the above two are equivalent? II and III I and IV II and IV I and III GATE-CS-2009 Propositional and First Order Logic. Discuss itQuestion 8-Explanation: According to negation property of universal qualifier and existential quantifier Question 9Let fsa and pda be two predicates such that fsa(x) means x is a finite state automaton, and pda(y) means that y is a pushdown automaton. Let equivalent be another predicate such that equivalent (a, b) means a and b are equivalent. Which of the following first order logic statements represents the following: Each finite state automaton has an equivalent pushdown automaton. ABCDGATE CS 2008 Propositional and First Order Logic. Discuss itQuestion 9-Explanation: Considering each option :(A) If everything is a FSA, then there exists an equivalent PDA for everything.(B) It is not the case that for all y if there exist a FSA then it has an equivalent PDA.(C) Everything is a FSA and has an equivalent PDA.(D) Everything is a PDA and has exist an equivalent FSA.Thus, option (A) is correct. Please comment below if you find anything wrong in the above post.Question 10P and Q are two propositions. Which of the following logical expressions are equivalent? Only I, II and III Only I, II and IV All of I, II, III and IV Only I and II GATE CS 2008 Propositional and First Order Logic. Discuss itQuestion 10-Explanation: I and II are same by Demorgan's lawThe IIIrd can be simplified to I. since is true always 123456789 There are 89 questions to complete.You have completedquestionsquestionYour accuracy isCorrectWrongPartial-CreditYou have not finished your quiz. If you leave this page, your progress will be lost.Correct AnswerYou SelectedNot AttemptedFinal Score on QuizAttempted Questions CorrectAttempted Questions WrongQuestions Not AttemptedTotal Questions on QuizQuestion DetailsResultsDateScoreHintTime allowedminutessecondsTime usedAnswer Choice(s) SelectedQuestion Text All doneNeed more practice!Keep trying!Not bad!Good work!Perfect!