Say I have two functions of the variable x, f and g. I would like to find a single value of x that gives me the largest value of f and smallest value of g. Is there a procedure to do this? Note: I'm not talking about the global maximum of f and global minimum of g, just some large value of f and some small value of g.
Can this be generalised to an arbitrary number of functions? E.g. I want to find the value of x such that I get the largest values possible of functions f and g, and smallest values possible of functions p, q, and r.
Also, I am not sure what to tag this post as aside from optimization.
Edit: So I might have just asked an XY problem. So here is the initial problem. There are two functions of "w", risk(w) and reward(w). Essentially I want to minimise risk while maximising the reward.