I have an optimization(optimisation) problem, I think it is travelling salesman, where I want to find an answer to the question:
"What is the best coffee shop for person x within a 50km radius?"
The variables for this question are dependent on:
- the persons self-assessed palate level (1, 2, 3);
- the rating of the coffee shop (1 - 10);
- and the distance of the coffee shop.
The need for a higher rated coffee shop increases with a higher palate level, however it also decreases the further away the coffee shop. So the minima needs to be determined based on all those variables.
My question is, is this a travelling salesman type problem? if yes, how do I frame it as so (or just a pointer in the direction of how to frame it would be helpful)?