Show that if $G$ is a graph with $n$ vertices, then no more than $n/2$ edges can be colored in the same color, in any edge coloring of $G$.
I know there are optimal cases satisfy the statement, e.g a circuit of $n$ vertices with an even $n$ .
However, I want the proof of above statement.
As we known, cases can only falsify a statement instead of verify it.
Let $G=(V,E)$ by some graph, with $n$ vertices, and let $c$ by some edge-coloring of $G$.
Denote by $i$ some color in the coloring, and define a set $A_i$ to be the set of all vertices with adjacent edge colored in $i$:
$$A_i:=\{v\in V\mid \exists u\in V \ \ s.t \ \ (v,u)\in E\ \land\ c(v,u)=i \}$$
Notice $A_i\subseteq V\implies\vert A_i\vert \leq n$.
Proof:
Define a function between every pair adjacent vertices $u,v\in A_i$, to $(u,v)\in B_i$.
This map is a bijection (otherwise $c$ would not be a proper coloring), and therefore there are at most $2$ vertices in $A_i$ for every edge in $B_i$.
This proves the inequality.
Remark: Proving this map is a bijection is not hard and is mostly the core of the proof.