I'm reading Data mining with decision trees by Rokach, and i've got to a chapter about ensemble methods (using multiple classifiers) and this is where I can't wrap my head around this concept of Plurality Voting (PV).
$$\operatorname{class}(x) = \operatorname{argmax} \left (\sum g(y_k(x), c_i) \right)$$
Where $$g(y_k(x), c_i) = \begin{cases}1 &\text{if } y = c\\ 0 &\text{if } y \neq c\end{cases}$$
Most of the other metrics in the chapter weight classifiers, yet this seems to just essentially pick the one which has the highest chance of returning the class you want. Which seems useless? If thats the case how would this be helpful?