meaning of (r .⊃. s ⊃ r) [the syntax meaning]

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












I'm trying to to determine whether the following is a tautology, contingency, or contradictory:




(p ⊃ q) ∨ (q ⊃ p) .⊃. (r .⊃. s ⊃ r)




This is school work. I'm getting that it's a tautology, but only through looking at patterns of solutions of textbook problems and exercises. I would like to know what exactly is meant by the dot prior and after the material implication (.⊃.)?



I understand that material implication - in a truth table - has false only when p is true and q is false. I also understand the or operator where it's true when either both or one of the two, namely: p or q is true. I just need to understand what the dots are supposed to mean. I couldn't find good explanations online.










share|improve this question



























    up vote
    1
    down vote

    favorite












    I'm trying to to determine whether the following is a tautology, contingency, or contradictory:




    (p ⊃ q) ∨ (q ⊃ p) .⊃. (r .⊃. s ⊃ r)




    This is school work. I'm getting that it's a tautology, but only through looking at patterns of solutions of textbook problems and exercises. I would like to know what exactly is meant by the dot prior and after the material implication (.⊃.)?



    I understand that material implication - in a truth table - has false only when p is true and q is false. I also understand the or operator where it's true when either both or one of the two, namely: p or q is true. I just need to understand what the dots are supposed to mean. I couldn't find good explanations online.










    share|improve this question

























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I'm trying to to determine whether the following is a tautology, contingency, or contradictory:




      (p ⊃ q) ∨ (q ⊃ p) .⊃. (r .⊃. s ⊃ r)




      This is school work. I'm getting that it's a tautology, but only through looking at patterns of solutions of textbook problems and exercises. I would like to know what exactly is meant by the dot prior and after the material implication (.⊃.)?



      I understand that material implication - in a truth table - has false only when p is true and q is false. I also understand the or operator where it's true when either both or one of the two, namely: p or q is true. I just need to understand what the dots are supposed to mean. I couldn't find good explanations online.










      share|improve this question















      I'm trying to to determine whether the following is a tautology, contingency, or contradictory:




      (p ⊃ q) ∨ (q ⊃ p) .⊃. (r .⊃. s ⊃ r)




      This is school work. I'm getting that it's a tautology, but only through looking at patterns of solutions of textbook problems and exercises. I would like to know what exactly is meant by the dot prior and after the material implication (.⊃.)?



      I understand that material implication - in a truth table - has false only when p is true and q is false. I also understand the or operator where it's true when either both or one of the two, namely: p or q is true. I just need to understand what the dots are supposed to mean. I couldn't find good explanations online.







      logic philosophy-of-logic symbolic-logic






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 54 mins ago

























      asked 1 hour ago









      wa7d

      305




      305




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          The dots function like parentheses: they disambiguate an otherwise ambiguous expression. In this case the expression is equivalent to:




          ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r))




          Note that without the dots the consequent would be:




          (r ⊃ s ⊃ r)




          Which is ambiguous between the following two:




          ((r ⊃ s) ⊃ r)



          (r ⊃ (s ⊃ r))




          The dots just tell you which connective is the main one.






          share|improve this answer




















          • I kind of wish there was a universally agreed upon notation. That would be one way to disambiguate. Thanks!
            – wa7d
            5 mins ago

















          up vote
          2
          down vote













          The use of dots like that is an alternative to using nested parentheses. Putting dots around a connective indicates that its binding priority is lower than that of another connective in the sentence. Your sentence could also be written ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r)).



          To give a simpler example:



          A ∨ B ⊃ C



          is syntactically ambiguous. It could mean



          (A ∨ B) ⊃ C



          or



          A ∨ (B ⊃ C)



          An alternative way to specify the first version would be to write:



          A ∨ B .⊃. C



          It is a matter of style as to which you prefer, but the dot notation is not as common as it used to be.






          share|improve this answer




















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "265"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fphilosophy.stackexchange.com%2fquestions%2f55759%2fmeaning-of-r-%25e2%258a%2583-s-%25e2%258a%2583-r-the-syntax-meaning%23new-answer', 'question_page');

            );

            Post as a guest






























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            2
            down vote



            accepted










            The dots function like parentheses: they disambiguate an otherwise ambiguous expression. In this case the expression is equivalent to:




            ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r))




            Note that without the dots the consequent would be:




            (r ⊃ s ⊃ r)




            Which is ambiguous between the following two:




            ((r ⊃ s) ⊃ r)



            (r ⊃ (s ⊃ r))




            The dots just tell you which connective is the main one.






            share|improve this answer




















            • I kind of wish there was a universally agreed upon notation. That would be one way to disambiguate. Thanks!
              – wa7d
              5 mins ago














            up vote
            2
            down vote



            accepted










            The dots function like parentheses: they disambiguate an otherwise ambiguous expression. In this case the expression is equivalent to:




            ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r))




            Note that without the dots the consequent would be:




            (r ⊃ s ⊃ r)




            Which is ambiguous between the following two:




            ((r ⊃ s) ⊃ r)



            (r ⊃ (s ⊃ r))




            The dots just tell you which connective is the main one.






            share|improve this answer




















            • I kind of wish there was a universally agreed upon notation. That would be one way to disambiguate. Thanks!
              – wa7d
              5 mins ago












            up vote
            2
            down vote



            accepted







            up vote
            2
            down vote



            accepted






            The dots function like parentheses: they disambiguate an otherwise ambiguous expression. In this case the expression is equivalent to:




            ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r))




            Note that without the dots the consequent would be:




            (r ⊃ s ⊃ r)




            Which is ambiguous between the following two:




            ((r ⊃ s) ⊃ r)



            (r ⊃ (s ⊃ r))




            The dots just tell you which connective is the main one.






            share|improve this answer












            The dots function like parentheses: they disambiguate an otherwise ambiguous expression. In this case the expression is equivalent to:




            ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r))




            Note that without the dots the consequent would be:




            (r ⊃ s ⊃ r)




            Which is ambiguous between the following two:




            ((r ⊃ s) ⊃ r)



            (r ⊃ (s ⊃ r))




            The dots just tell you which connective is the main one.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 21 mins ago









            Eliran H

            3,80621032




            3,80621032











            • I kind of wish there was a universally agreed upon notation. That would be one way to disambiguate. Thanks!
              – wa7d
              5 mins ago
















            • I kind of wish there was a universally agreed upon notation. That would be one way to disambiguate. Thanks!
              – wa7d
              5 mins ago















            I kind of wish there was a universally agreed upon notation. That would be one way to disambiguate. Thanks!
            – wa7d
            5 mins ago




            I kind of wish there was a universally agreed upon notation. That would be one way to disambiguate. Thanks!
            – wa7d
            5 mins ago










            up vote
            2
            down vote













            The use of dots like that is an alternative to using nested parentheses. Putting dots around a connective indicates that its binding priority is lower than that of another connective in the sentence. Your sentence could also be written ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r)).



            To give a simpler example:



            A ∨ B ⊃ C



            is syntactically ambiguous. It could mean



            (A ∨ B) ⊃ C



            or



            A ∨ (B ⊃ C)



            An alternative way to specify the first version would be to write:



            A ∨ B .⊃. C



            It is a matter of style as to which you prefer, but the dot notation is not as common as it used to be.






            share|improve this answer
























              up vote
              2
              down vote













              The use of dots like that is an alternative to using nested parentheses. Putting dots around a connective indicates that its binding priority is lower than that of another connective in the sentence. Your sentence could also be written ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r)).



              To give a simpler example:



              A ∨ B ⊃ C



              is syntactically ambiguous. It could mean



              (A ∨ B) ⊃ C



              or



              A ∨ (B ⊃ C)



              An alternative way to specify the first version would be to write:



              A ∨ B .⊃. C



              It is a matter of style as to which you prefer, but the dot notation is not as common as it used to be.






              share|improve this answer






















                up vote
                2
                down vote










                up vote
                2
                down vote









                The use of dots like that is an alternative to using nested parentheses. Putting dots around a connective indicates that its binding priority is lower than that of another connective in the sentence. Your sentence could also be written ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r)).



                To give a simpler example:



                A ∨ B ⊃ C



                is syntactically ambiguous. It could mean



                (A ∨ B) ⊃ C



                or



                A ∨ (B ⊃ C)



                An alternative way to specify the first version would be to write:



                A ∨ B .⊃. C



                It is a matter of style as to which you prefer, but the dot notation is not as common as it used to be.






                share|improve this answer












                The use of dots like that is an alternative to using nested parentheses. Putting dots around a connective indicates that its binding priority is lower than that of another connective in the sentence. Your sentence could also be written ((p ⊃ q) ∨ (q ⊃ p)) ⊃ (r ⊃ (s ⊃ r)).



                To give a simpler example:



                A ∨ B ⊃ C



                is syntactically ambiguous. It could mean



                (A ∨ B) ⊃ C



                or



                A ∨ (B ⊃ C)



                An alternative way to specify the first version would be to write:



                A ∨ B .⊃. C



                It is a matter of style as to which you prefer, but the dot notation is not as common as it used to be.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 16 mins ago









                Bumble

                6,9882830




                6,9882830



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fphilosophy.stackexchange.com%2fquestions%2f55759%2fmeaning-of-r-%25e2%258a%2583-s-%25e2%258a%2583-r-the-syntax-meaning%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Comments

                    Popular posts from this blog

                    Long meetings (6-7 hours a day): Being “babysat” by supervisor

                    Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

                    Confectionery