3. Given that n is a positive even number, graph G has n vertices and 4n2
edges, and there are no loops or multiple edges (any two vertices are either connected by an edge or not connected). An unordered pair of distinct vertices (x,y) is called "friendly" if they are adjacent to the same vertex (there exists a vertex z such that xz and yz are both edges). Prove: Graph G contains at least 2C2n2 friendly unordered pairs.
This one wants a proof. Work it on paper, read the official solution, then mark
yourself honestly — the ladder only means something if the record is true.
Official solution
3. Let Nk(v) denote the set of points at a distance k from point v, and let S denote the set of points with non-zero degree. Let the number of friendly unordered point pairs be m.
Considering that for all v∈S,N2(v) contains point v. Thus, by counting twice we get 2m+∣S∣=∑v∈SN2(v)=∑v∈S∑u∈N(v)N(u)⩾∑v∈Su∈N(v)∣N(u)∣⩾∑v∈S∣N(v)∣1∑u∈N(v)∣N(u)∣ (average over all u∈N(v)) =uv∈E(G)∑(∣N(v)∣∣N(u)∣+∣N(u)∣∣N(v)∣)⩾2E(G),
where E(G) is the set of edges in G, and the last step uses the AM-GM inequality. Thus, m⩾E(G)−2∣S∣⩾4n2−2n=2C2π2.
Source: NuminaMath-1.5,
licensed Apache-2.0.
Statement and solution reproduced as published; topic, difficulty and ordering added
by this site.