Returns all non-negative integer solutions `{x1, ..., xn}` of the linear
FrobeniusSolve[{a1, …, an}, b]
FrobeniusSolve[{a1, …, an}, b, m]
FrobeniusSolve[{2, 3, 4}, 10]
→ {{0, 2, 1}, {1, 0, 2}, {2, 2, 0}, {3, 0, 1}, {5, 0, 0}}FrobeniusSolve[{2, 4}, 7]
→ {}Length[FrobeniusSolve[{230, 306, 392, 410, 574, 780, 750, 850}, 10000]]
→ 4674FrobeniusSolve[{}, 5]
→
FrobeniusSolve::coef: The first argument {} of FrobeniusSolve should be a nonempty list of positive integers.
FrobeniusSolve[{}, 5]