What is the expectation of the clique number of a random graph?

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











up vote
0
down vote

favorite












Suppose we have a random graph with $n$ vertices and edges that are present independently with the probability $p$. What is the expectation of its clique number?



It is quite easy to calculate the expectation for small $n$-s. For example: if $n = 1$, then the answer is $1$, if $n=2$, then $1+p$, if $n = 3$, then $1 + 3p - 3p^2 + 2p^3$... However, I failed to find any general formula for arbitrary $n$.



Any help will be appreciated.







share|cite|improve this question























    up vote
    0
    down vote

    favorite












    Suppose we have a random graph with $n$ vertices and edges that are present independently with the probability $p$. What is the expectation of its clique number?



    It is quite easy to calculate the expectation for small $n$-s. For example: if $n = 1$, then the answer is $1$, if $n=2$, then $1+p$, if $n = 3$, then $1 + 3p - 3p^2 + 2p^3$... However, I failed to find any general formula for arbitrary $n$.



    Any help will be appreciated.







    share|cite|improve this question





















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Suppose we have a random graph with $n$ vertices and edges that are present independently with the probability $p$. What is the expectation of its clique number?



      It is quite easy to calculate the expectation for small $n$-s. For example: if $n = 1$, then the answer is $1$, if $n=2$, then $1+p$, if $n = 3$, then $1 + 3p - 3p^2 + 2p^3$... However, I failed to find any general formula for arbitrary $n$.



      Any help will be appreciated.







      share|cite|improve this question











      Suppose we have a random graph with $n$ vertices and edges that are present independently with the probability $p$. What is the expectation of its clique number?



      It is quite easy to calculate the expectation for small $n$-s. For example: if $n = 1$, then the answer is $1$, if $n=2$, then $1+p$, if $n = 3$, then $1 + 3p - 3p^2 + 2p^3$... However, I failed to find any general formula for arbitrary $n$.



      Any help will be appreciated.









      share|cite|improve this question










      share|cite|improve this question




      share|cite|improve this question









      asked Jul 17 at 5:09









      Yanior Weg

      1,0661729




      1,0661729




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          Probability distributions of clique numbers are an active area of research. Most of the known results are in terms of bounds or asymptotic behavior. The following might all be of interest:



          • Clique Number of Random Geometric Graphs

          • Probability of Graph Having at Least 1 k-Clique

          • The Largest Clique Size in a Random Graph

          • And so on...

          Your problem can at least be reduced to an arguably simpler combinatorial problem. Let $a(n,k,c)$ denote the number of graphs with $n$ vertices, $k$ edges, and clique number $c$. Let $N(n)=fracn(n-1)2$ be the total number of places one of those edges could be placed.



          The probability of a graph having $k$ edges is modeled by the binomial distribution $$q(n,k)=N(n)choose kp^k(1-p)^N(n)-k.$$



          The probability of a graph with $k$ vertices having clique number $c$ is $$r(n,k,c)=fraca(n,k,c)N(n)choose k.$$



          The probability of a graph having $k$ edges AND having clique number $c$ is then $$beginalignedb(n,k,c)&=r(n,k,c)q(n,k)\&=a(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



          To find the probability of having clique number $c$, we simply sum over the variable $k$ to obtain $$beginaligneds(n,c)&=sum_k=0^Nb(n,k,c)\&=sum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



          The expected value follows the standard procedure. $$beginalignedE(n)&=sum_c=1^nccdot s(n,c)\&=sum_c=1^ncsum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



          The only really troublesome part is the combinatorial question. How does one count $a(n,k,c)$?



          One of the neat properties that we discovered in this process though is that the solution is a polynomial of maximum degree $N(n)$ with integer coefficients. This suggests a relationship to generating functions and chromatic polynomials which might allow low-ordered versions to be reasoned about in terms of roots and other qualitative properties. The roots are kind of weird even for the small examples you presented, and this could easily be a dead end as well.






          share|cite|improve this answer





















            Your Answer




            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            );
            );
            , "mathjax-editing");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "69"
            ;
            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: true,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            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%2fmath.stackexchange.com%2fquestions%2f2854150%2fwhat-is-the-expectation-of-the-clique-number-of-a-random-graph%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            2
            down vote



            accepted










            Probability distributions of clique numbers are an active area of research. Most of the known results are in terms of bounds or asymptotic behavior. The following might all be of interest:



            • Clique Number of Random Geometric Graphs

            • Probability of Graph Having at Least 1 k-Clique

            • The Largest Clique Size in a Random Graph

            • And so on...

            Your problem can at least be reduced to an arguably simpler combinatorial problem. Let $a(n,k,c)$ denote the number of graphs with $n$ vertices, $k$ edges, and clique number $c$. Let $N(n)=fracn(n-1)2$ be the total number of places one of those edges could be placed.



            The probability of a graph having $k$ edges is modeled by the binomial distribution $$q(n,k)=N(n)choose kp^k(1-p)^N(n)-k.$$



            The probability of a graph with $k$ vertices having clique number $c$ is $$r(n,k,c)=fraca(n,k,c)N(n)choose k.$$



            The probability of a graph having $k$ edges AND having clique number $c$ is then $$beginalignedb(n,k,c)&=r(n,k,c)q(n,k)\&=a(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



            To find the probability of having clique number $c$, we simply sum over the variable $k$ to obtain $$beginaligneds(n,c)&=sum_k=0^Nb(n,k,c)\&=sum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



            The expected value follows the standard procedure. $$beginalignedE(n)&=sum_c=1^nccdot s(n,c)\&=sum_c=1^ncsum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



            The only really troublesome part is the combinatorial question. How does one count $a(n,k,c)$?



            One of the neat properties that we discovered in this process though is that the solution is a polynomial of maximum degree $N(n)$ with integer coefficients. This suggests a relationship to generating functions and chromatic polynomials which might allow low-ordered versions to be reasoned about in terms of roots and other qualitative properties. The roots are kind of weird even for the small examples you presented, and this could easily be a dead end as well.






            share|cite|improve this answer

























              up vote
              2
              down vote



              accepted










              Probability distributions of clique numbers are an active area of research. Most of the known results are in terms of bounds or asymptotic behavior. The following might all be of interest:



              • Clique Number of Random Geometric Graphs

              • Probability of Graph Having at Least 1 k-Clique

              • The Largest Clique Size in a Random Graph

              • And so on...

              Your problem can at least be reduced to an arguably simpler combinatorial problem. Let $a(n,k,c)$ denote the number of graphs with $n$ vertices, $k$ edges, and clique number $c$. Let $N(n)=fracn(n-1)2$ be the total number of places one of those edges could be placed.



              The probability of a graph having $k$ edges is modeled by the binomial distribution $$q(n,k)=N(n)choose kp^k(1-p)^N(n)-k.$$



              The probability of a graph with $k$ vertices having clique number $c$ is $$r(n,k,c)=fraca(n,k,c)N(n)choose k.$$



              The probability of a graph having $k$ edges AND having clique number $c$ is then $$beginalignedb(n,k,c)&=r(n,k,c)q(n,k)\&=a(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



              To find the probability of having clique number $c$, we simply sum over the variable $k$ to obtain $$beginaligneds(n,c)&=sum_k=0^Nb(n,k,c)\&=sum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



              The expected value follows the standard procedure. $$beginalignedE(n)&=sum_c=1^nccdot s(n,c)\&=sum_c=1^ncsum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



              The only really troublesome part is the combinatorial question. How does one count $a(n,k,c)$?



              One of the neat properties that we discovered in this process though is that the solution is a polynomial of maximum degree $N(n)$ with integer coefficients. This suggests a relationship to generating functions and chromatic polynomials which might allow low-ordered versions to be reasoned about in terms of roots and other qualitative properties. The roots are kind of weird even for the small examples you presented, and this could easily be a dead end as well.






              share|cite|improve this answer























                up vote
                2
                down vote



                accepted







                up vote
                2
                down vote



                accepted






                Probability distributions of clique numbers are an active area of research. Most of the known results are in terms of bounds or asymptotic behavior. The following might all be of interest:



                • Clique Number of Random Geometric Graphs

                • Probability of Graph Having at Least 1 k-Clique

                • The Largest Clique Size in a Random Graph

                • And so on...

                Your problem can at least be reduced to an arguably simpler combinatorial problem. Let $a(n,k,c)$ denote the number of graphs with $n$ vertices, $k$ edges, and clique number $c$. Let $N(n)=fracn(n-1)2$ be the total number of places one of those edges could be placed.



                The probability of a graph having $k$ edges is modeled by the binomial distribution $$q(n,k)=N(n)choose kp^k(1-p)^N(n)-k.$$



                The probability of a graph with $k$ vertices having clique number $c$ is $$r(n,k,c)=fraca(n,k,c)N(n)choose k.$$



                The probability of a graph having $k$ edges AND having clique number $c$ is then $$beginalignedb(n,k,c)&=r(n,k,c)q(n,k)\&=a(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



                To find the probability of having clique number $c$, we simply sum over the variable $k$ to obtain $$beginaligneds(n,c)&=sum_k=0^Nb(n,k,c)\&=sum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



                The expected value follows the standard procedure. $$beginalignedE(n)&=sum_c=1^nccdot s(n,c)\&=sum_c=1^ncsum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



                The only really troublesome part is the combinatorial question. How does one count $a(n,k,c)$?



                One of the neat properties that we discovered in this process though is that the solution is a polynomial of maximum degree $N(n)$ with integer coefficients. This suggests a relationship to generating functions and chromatic polynomials which might allow low-ordered versions to be reasoned about in terms of roots and other qualitative properties. The roots are kind of weird even for the small examples you presented, and this could easily be a dead end as well.






                share|cite|improve this answer













                Probability distributions of clique numbers are an active area of research. Most of the known results are in terms of bounds or asymptotic behavior. The following might all be of interest:



                • Clique Number of Random Geometric Graphs

                • Probability of Graph Having at Least 1 k-Clique

                • The Largest Clique Size in a Random Graph

                • And so on...

                Your problem can at least be reduced to an arguably simpler combinatorial problem. Let $a(n,k,c)$ denote the number of graphs with $n$ vertices, $k$ edges, and clique number $c$. Let $N(n)=fracn(n-1)2$ be the total number of places one of those edges could be placed.



                The probability of a graph having $k$ edges is modeled by the binomial distribution $$q(n,k)=N(n)choose kp^k(1-p)^N(n)-k.$$



                The probability of a graph with $k$ vertices having clique number $c$ is $$r(n,k,c)=fraca(n,k,c)N(n)choose k.$$



                The probability of a graph having $k$ edges AND having clique number $c$ is then $$beginalignedb(n,k,c)&=r(n,k,c)q(n,k)\&=a(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



                To find the probability of having clique number $c$, we simply sum over the variable $k$ to obtain $$beginaligneds(n,c)&=sum_k=0^Nb(n,k,c)\&=sum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



                The expected value follows the standard procedure. $$beginalignedE(n)&=sum_c=1^nccdot s(n,c)\&=sum_c=1^ncsum_k=0^Na(n,k,c)p^k(1-p)^N(n)-k.endaligned$$



                The only really troublesome part is the combinatorial question. How does one count $a(n,k,c)$?



                One of the neat properties that we discovered in this process though is that the solution is a polynomial of maximum degree $N(n)$ with integer coefficients. This suggests a relationship to generating functions and chromatic polynomials which might allow low-ordered versions to be reasoned about in terms of roots and other qualitative properties. The roots are kind of weird even for the small examples you presented, and this could easily be a dead end as well.







                share|cite|improve this answer













                share|cite|improve this answer



                share|cite|improve this answer











                answered Jul 17 at 6:14









                Hans Musgrave

                1,393111




                1,393111






















                     

                    draft saved


                    draft discarded


























                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2854150%2fwhat-is-the-expectation-of-the-clique-number-of-a-random-graph%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Comments

                    Popular posts from this blog

                    What is the equation of a 3D cone with generalised tilt?

                    Color the edges and diagonals of a regular polygon

                    Relationship between determinant of matrix and determinant of adjoint?