Calculating number of edges in a graph

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











up vote
1
down vote

favorite












The prompt is to find the number of edges of graph with $36$ vertices given that from every $4$ vertices, at least $2$ of them have to have an edge between them. We must prove that the graph G has at least 105 edges or find some non-trivial lower limit on the number of edges.



If we join $2$ vertices of all the $36$ vertices, we are left with $18$ edges, how is this possible, how should I go on about solving a problem like this?
I know that $2|E| = deg(v)$ by handshake theorem, how should I find the degree of each vertex here?







share|cite|improve this question






















  • If you divide up the 36 vertices into pairs $1,2, 3,4, 5,6, dots$ and connect every pair by an edge, that doesn't accomplish the task in the prompt: the four vertices $1,3,5,7$ have no edges between them.
    – Misha Lavrov
    Aug 26 at 21:40














up vote
1
down vote

favorite












The prompt is to find the number of edges of graph with $36$ vertices given that from every $4$ vertices, at least $2$ of them have to have an edge between them. We must prove that the graph G has at least 105 edges or find some non-trivial lower limit on the number of edges.



If we join $2$ vertices of all the $36$ vertices, we are left with $18$ edges, how is this possible, how should I go on about solving a problem like this?
I know that $2|E| = deg(v)$ by handshake theorem, how should I find the degree of each vertex here?







share|cite|improve this question






















  • If you divide up the 36 vertices into pairs $1,2, 3,4, 5,6, dots$ and connect every pair by an edge, that doesn't accomplish the task in the prompt: the four vertices $1,3,5,7$ have no edges between them.
    – Misha Lavrov
    Aug 26 at 21:40












up vote
1
down vote

favorite









up vote
1
down vote

favorite











The prompt is to find the number of edges of graph with $36$ vertices given that from every $4$ vertices, at least $2$ of them have to have an edge between them. We must prove that the graph G has at least 105 edges or find some non-trivial lower limit on the number of edges.



If we join $2$ vertices of all the $36$ vertices, we are left with $18$ edges, how is this possible, how should I go on about solving a problem like this?
I know that $2|E| = deg(v)$ by handshake theorem, how should I find the degree of each vertex here?







share|cite|improve this question














The prompt is to find the number of edges of graph with $36$ vertices given that from every $4$ vertices, at least $2$ of them have to have an edge between them. We must prove that the graph G has at least 105 edges or find some non-trivial lower limit on the number of edges.



If we join $2$ vertices of all the $36$ vertices, we are left with $18$ edges, how is this possible, how should I go on about solving a problem like this?
I know that $2|E| = deg(v)$ by handshake theorem, how should I find the degree of each vertex here?









share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Aug 26 at 22:48







user550230

















asked Aug 26 at 21:32









Archetype2142

462313




462313











  • If you divide up the 36 vertices into pairs $1,2, 3,4, 5,6, dots$ and connect every pair by an edge, that doesn't accomplish the task in the prompt: the four vertices $1,3,5,7$ have no edges between them.
    – Misha Lavrov
    Aug 26 at 21:40
















  • If you divide up the 36 vertices into pairs $1,2, 3,4, 5,6, dots$ and connect every pair by an edge, that doesn't accomplish the task in the prompt: the four vertices $1,3,5,7$ have no edges between them.
    – Misha Lavrov
    Aug 26 at 21:40















If you divide up the 36 vertices into pairs $1,2, 3,4, 5,6, dots$ and connect every pair by an edge, that doesn't accomplish the task in the prompt: the four vertices $1,3,5,7$ have no edges between them.
– Misha Lavrov
Aug 26 at 21:40




If you divide up the 36 vertices into pairs $1,2, 3,4, 5,6, dots$ and connect every pair by an edge, that doesn't accomplish the task in the prompt: the four vertices $1,3,5,7$ have no edges between them.
– Misha Lavrov
Aug 26 at 21:40










1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










Consider the set of all subgraphs of $G$ that have four vertices. There are $36choose 4$ such graphs. For each such subgraph $H$, count the number of edges $e(H)$ in it. Then calculate $sum_H e(H)$ in two ways. One way is to note that every edge appears $34 choose 2$ many times. So $sum_H e(H)=e(G) times 34 choose 2$. On the other hand, each subgraph $H$ has at least one edge, so $sum_H e(H) geq 36 choose 4$. In other words,



$$e(G) times 34 choose 2 geq 36 choose 4.$$



Simplifying both sides gives $e(G) geq 105$.






share|cite|improve this answer




















  • Why does every edge appear $binom342$ times and not $binom362$?
    – Archetype2142
    Aug 27 at 7:08






  • 1




    Because that edge already has two vertices and to make a subgraph with four vertices we need two other vertices out of the remaining 34.
    – Marco
    Aug 27 at 10:54










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%2f2895545%2fcalculating-number-of-edges-in-a-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
1
down vote



accepted










Consider the set of all subgraphs of $G$ that have four vertices. There are $36choose 4$ such graphs. For each such subgraph $H$, count the number of edges $e(H)$ in it. Then calculate $sum_H e(H)$ in two ways. One way is to note that every edge appears $34 choose 2$ many times. So $sum_H e(H)=e(G) times 34 choose 2$. On the other hand, each subgraph $H$ has at least one edge, so $sum_H e(H) geq 36 choose 4$. In other words,



$$e(G) times 34 choose 2 geq 36 choose 4.$$



Simplifying both sides gives $e(G) geq 105$.






share|cite|improve this answer




















  • Why does every edge appear $binom342$ times and not $binom362$?
    – Archetype2142
    Aug 27 at 7:08






  • 1




    Because that edge already has two vertices and to make a subgraph with four vertices we need two other vertices out of the remaining 34.
    – Marco
    Aug 27 at 10:54














up vote
1
down vote



accepted










Consider the set of all subgraphs of $G$ that have four vertices. There are $36choose 4$ such graphs. For each such subgraph $H$, count the number of edges $e(H)$ in it. Then calculate $sum_H e(H)$ in two ways. One way is to note that every edge appears $34 choose 2$ many times. So $sum_H e(H)=e(G) times 34 choose 2$. On the other hand, each subgraph $H$ has at least one edge, so $sum_H e(H) geq 36 choose 4$. In other words,



$$e(G) times 34 choose 2 geq 36 choose 4.$$



Simplifying both sides gives $e(G) geq 105$.






share|cite|improve this answer




















  • Why does every edge appear $binom342$ times and not $binom362$?
    – Archetype2142
    Aug 27 at 7:08






  • 1




    Because that edge already has two vertices and to make a subgraph with four vertices we need two other vertices out of the remaining 34.
    – Marco
    Aug 27 at 10:54












up vote
1
down vote



accepted







up vote
1
down vote



accepted






Consider the set of all subgraphs of $G$ that have four vertices. There are $36choose 4$ such graphs. For each such subgraph $H$, count the number of edges $e(H)$ in it. Then calculate $sum_H e(H)$ in two ways. One way is to note that every edge appears $34 choose 2$ many times. So $sum_H e(H)=e(G) times 34 choose 2$. On the other hand, each subgraph $H$ has at least one edge, so $sum_H e(H) geq 36 choose 4$. In other words,



$$e(G) times 34 choose 2 geq 36 choose 4.$$



Simplifying both sides gives $e(G) geq 105$.






share|cite|improve this answer












Consider the set of all subgraphs of $G$ that have four vertices. There are $36choose 4$ such graphs. For each such subgraph $H$, count the number of edges $e(H)$ in it. Then calculate $sum_H e(H)$ in two ways. One way is to note that every edge appears $34 choose 2$ many times. So $sum_H e(H)=e(G) times 34 choose 2$. On the other hand, each subgraph $H$ has at least one edge, so $sum_H e(H) geq 36 choose 4$. In other words,



$$e(G) times 34 choose 2 geq 36 choose 4.$$



Simplifying both sides gives $e(G) geq 105$.







share|cite|improve this answer












share|cite|improve this answer



share|cite|improve this answer










answered Aug 26 at 22:16









Marco

1,55917




1,55917











  • Why does every edge appear $binom342$ times and not $binom362$?
    – Archetype2142
    Aug 27 at 7:08






  • 1




    Because that edge already has two vertices and to make a subgraph with four vertices we need two other vertices out of the remaining 34.
    – Marco
    Aug 27 at 10:54
















  • Why does every edge appear $binom342$ times and not $binom362$?
    – Archetype2142
    Aug 27 at 7:08






  • 1




    Because that edge already has two vertices and to make a subgraph with four vertices we need two other vertices out of the remaining 34.
    – Marco
    Aug 27 at 10:54















Why does every edge appear $binom342$ times and not $binom362$?
– Archetype2142
Aug 27 at 7:08




Why does every edge appear $binom342$ times and not $binom362$?
– Archetype2142
Aug 27 at 7:08




1




1




Because that edge already has two vertices and to make a subgraph with four vertices we need two other vertices out of the remaining 34.
– Marco
Aug 27 at 10:54




Because that edge already has two vertices and to make a subgraph with four vertices we need two other vertices out of the remaining 34.
– Marco
Aug 27 at 10:54

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2895545%2fcalculating-number-of-edges-in-a-graph%23new-answer', 'question_page');

);

Post as a guest













































































這個網誌中的熱門文章

How to combine Bézier curves to a surface?

Why am i infinitely getting the same tweet with the Twitter Search API?

Carbon dioxide