Clarification: the word "important" is ambiguous. Here, I use "important" to mean that we want to know the value of a quantity accurately.
For many optimisation problems, it looks as if we are more interested in finding the minimum value, rather than finding the argmin. For instance, in machine learning models, we care about how well the model can predict, and we do not care about the internal argmin inside the black box that makes this possible. For a linear programming problem, say, for an airport, we do not really care about the exact way to schedule flights to get the maximum efficiency. We just want to come up with a plan which can be completely different from the optimal one, but have similar efficiency in terms of saving time. This is due to the existence of many equally good solutions.
Note: one might argue that we do need to know a solution. Of course we do. But we don't care which solution we get, as long as it is a good solution. So it is unimportant to know the solution itself accurately; only the objective value is important.
Nevertheless, argmin is discussed a lot in literature (like parameter estimation in statistics). However, I have not seen anywhere why this is useful. Could anyone give an example application where the argmin is more important than the min?