In my project, I modeled my problem to a mathematical equation like below
AX + BY + CZ + DK = 160
X, Y, Z, K ∈ [8, 40, 48, 80, 88, 120]
A, B, C, D are coefficients
The goal is to find the combination of (X, Y, Z, K) with their corresponding coefficient values. Is there any way to solve this problem ?
----------edit----------
All coefficients A, B, C, D > 0. The goal is to find X an A, Y and B, Z and C, K and D. The difference is that X, Y, Z, K are from the set [8, 40, 48, 80, 88, 120], and the A, B, C, D can be any value greater than zero.