So I was looking at graph algorithms and stumbled upon an interesting question: https://stackoverflow.com/questions/1190543/good-algorithm-for-finding-the-diameter-of-a-sparse-graph
Now, an answer to post made by Karoly Horvath, posted by Josep Valls caught my interest -
the author said:
"By definition, one of the two vertices that define the diameter is also the furthest vertex to half of the vertices in the graph."
If this is really true, that really makes the diameter problem easier, but I was unable to come up with a proof, neither was I able to find an answer in the Internet - Is this just an observation that works for most graphs, or maybe there is an elegant proof?
Of course I consider fully connected undirected graphs.
Edit
please consider this graph:
Now clearly, vertices 13 and 11 form the diameter:
Vertex 13 is the furhtest vertex for vertices 11, 10, 9
Vertex 11 is the furthest vertex for vertices 13, 1, 3, 4, 5, 2, 6, 7, 8
So for this graph the assumption holds, because wherever I start I am still going to get to the diameter endpoint.

Diameter is $2$, as for example witnessed by the top left and bottom right vertex. However, each vertex is furthest at most for one vertex. So as stated, the claim is false. However, the context was: if you start with any vertex $a$, then pick a vertex $b$ that is furthest from $a$, then pick a vertex $c$ that is furthest from $b$, it holds for this graph as well that $a,c$ form a diameter.