given the following statement: the sum of 2 numbers namely 'a' and 'b' is equal to 'm' times their difference, and the product of those 2 numbers is 'n' times their difference.
we get the system:
a+b=m(a-b)
a*b=n(a-b)
and I'm able to decompose it like:
a+b=ma-mb
a*b=na-nb
.........
a=m(a-b)-b
b=m(a-b)-a
a=n(a-b)/b
b=n(a-b)/a
now, I know the answer is of the form:
a = 2n/m-1 and b = 2n/m+1
how is the process to solve this system of equations?