Tagged Questions
8
votes
1answer
177 views
Efficient way to solve equal sums $x_1^k+x_2^k+\dots+x_5^k=y_1^k+y_2^k+\dots+y_5^k$ with Mathematica?
I need to solve the system of equations, call it $S_1$, in the integers
$$x_1x_2x_3x_4x_5 = y_1y_2y_3y_4y_5$$
$$x_1^k+x_2^k+\dots+x_5^k=y_1^k+y_2^k+\dots+y_5^k,\;\; k= 2,4,6$$
I used a very ...
1
vote
1answer
132 views
Using 'Reduce' to solve a set of inequalities, specified by a list
I have a two lists $LHS$ and $RHS$, both of size $n$. I want to solve a system of inequalities of the form:
$$LHS[1] \leq RHS[1]$$
$$LHS[2] \leq RHS[2]$$
$$LHS[3] \leq RHS[3]$$
$$\vdots$$
...
