Symbolically identifying solutions to max/min function
I feel like this may be a simple question to answer, but I'm having a hard time finding a solution on my own, so hopefully someone can help me with this.
I've been exploring symbolic/explicit calculation for a short while now, but keep running into a wall when I want to display the solution to a max or min function as the actual variable and not the numeric solution. What I keep getting is:
a:=1
b:=2
c:=3
min(a,b,c) -> min(a,b,c),
min(a,b,c) -> min(1,2,3), or
min(a,b,c) -> 1
What I would like to be able to see is:
min(a,b,c) -> a
If someone could point me in the right direction as to what keywords to use to achieve this, I'd really appreciate it.

