I am looking for an algorithm that can find the best possible combination of inputs, in order to determine the optimum output

cs.stackexchange https://cs.stackexchange.com/questions/112548

Question

So as the title poorly implies, I'm looking for an algorithm that can accomplish the following task (as an example):

Given the inputs A(1:100), B(1:100), C(1:100), that can take on any value between 1 to 100.

Given the outputs X, Y, Z, which are determined by a combination of the inputs eg:

A=2, B=3,C=4, returns X=76, Y=87, Z=34

A=5,B=1,C=100 returns X=52, Y=45, Z=24 etc.

The problem is, I have no clue how the inputs affect the outputs and so id like to find an algorithm of some sort that can try out various combinations of inputs in a logical manner (not randomly) to find the optimal output or get as close as possible to said optimum output, which in my case is finding the highest possible valued combination of X,Y,Z so best case scenario is finding a set of inputs that return 100, 100, 100 as the XYZ values.

If anyone has any idea how I could approach this or if a question like this has already been answered, I appreciate any and all help.

Thank you!

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with cs.stackexchange
scroll top