...Find Integers x, y Given 2xy+x+3y = 4**
Given the equation 2xy+x+3y = 4, we can find integers x and y by solving the following system of equations:
```
2xy+x+3y = 4
y = -(x+2)/3
```
To solve the first equation, we can use the substitution method. Substituting the expression for y into the...